You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary: This fixes a variety of typos in docs, code and headers.
Subscribers: jholewinski, sanjoy, arsenm, llvm-commits
Differential Revision: http://reviews.llvm.org/D12626
llvm-svn: 247495
Copy file name to clipboardexpand all lines: llvm/docs/LangRef.rst
+5-5
Original file line number
Diff line number
Diff line change
@@ -3875,7 +3875,7 @@ DILexicalBlock
3875
3875
""""""""""""""
3876
3876
3877
3877
``DILexicalBlock`` nodes describe nested blocks within a :ref:`subprogram
3878
-
<DISubprogram>`. The line number and column numbers are used to dinstinguish
3878
+
<DISubprogram>`. The line number and column numbers are used to distinguish
3879
3879
two lexical blocks at same depth. They are valid targets for ``scope:``
3880
3880
fields.
3881
3881
@@ -4060,13 +4060,13 @@ alias.
4060
4060
4061
4061
The metadata identifying each domain is itself a list containing one or two
4062
4062
entries. The first entry is the name of the domain. Note that if the name is a
4063
-
string then it can be combined accross functions and translation units. A
4063
+
string then it can be combined across functions and translation units. A
4064
4064
self-reference can be used to create globally unique domain names. A
4065
4065
descriptive string may optionally be provided as a second list entry.
4066
4066
4067
4067
The metadata identifying each scope is also itself a list containing two or
4068
4068
three entries. The first entry is the name of the scope. Note that if the name
4069
-
is a string then it can be combined accross functions and translation units. A
4069
+
is a string then it can be combined across functions and translation units. A
4070
4070
self-reference can be used to create globally unique scope names. A metadata
4071
4071
reference to the scope's domain is the second entry. A descriptive string may
4072
4072
optionally be provided as a third list entry.
@@ -5161,7 +5161,7 @@ is a catch block --- one where a personality routine attempts to transfer
5161
5161
control to catch an exception.
5162
5162
The ``args`` correspond to whatever information the personality
5163
5163
routine requires to know if this is an appropriate place to catch the
5164
-
exception. Control is tranfered to the ``exception`` label if the
5164
+
exception. Control is transfered to the ``exception`` label if the
5165
5165
``catchpad`` is not an appropriate handler for the in-flight exception.
5166
5166
The ``normal`` label should contain the code found in the ``catch``
5167
5167
portion of a ``try``/``catch`` sequence. The ``resultval`` has the type
@@ -11311,7 +11311,7 @@ The first operand is a vector value to be written to memory. The second operand
11311
11311
Semantics:
11312
11312
""""""""""
11313
11313
11314
-
The '``llvm.masked.scatter``' intrinsics is designed for writing selected vector elements to arbitrary memory addresses in a single IR operation. The operation may be conditional, when not all bits in the mask are switched on. It is useful for targets that support vector masked scatter and allows vectorizing basic blocks with data and control divergency. Other targets may support this intrinsic differently, for example by lowering it into a sequence of branches that guard scalar store operations.
11314
+
The '``llvm.masked.scatter``' intrinsics is designed for writing selected vector elements to arbitrary memory addresses in a single IR operation. The operation may be conditional, when not all bits in the mask are switched on. It is useful for targets that support vector masked scatter and allows vectorizing basic blocks with data and control divergence. Other targets may support this intrinsic differently, for example by lowering it into a sequence of branches that guard scalar store operations.
0 commit comments