File tree 9 files changed +10
-10
lines changed
9 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -1631,7 +1631,7 @@ Loaded Code Object Path Uniform Resource Identifier (URI)
1631
1631
---------------------------------------------------------
1632
1632
1633
1633
The AMD GPU code object loader represents the path of the ELF shared object from
1634
- which the code object was loaded as a textual Unifom Resource Identifier (URI).
1634
+ which the code object was loaded as a textual Uniform Resource Identifier (URI).
1635
1635
Note that the code object is the in memory loaded relocated form of the ELF
1636
1636
shared object. Multiple code objects may be loaded at different memory
1637
1637
addresses in the same process from the same ELF shared object.
Original file line number Diff line number Diff line change @@ -150,7 +150,7 @@ OPTIONS
150
150
151
151
* ``reg-names-std ``: ARM only (default). Print in ARM 's instruction set documentation, with r13/r14/r15 replaced by sp/lr/pc.
152
152
* ``reg-names-raw ``: ARM only. Use r followed by the register number.
153
- * ``no-aliases ``: AArch64 and RISC-V only. Print raw instruction mnemonic instead of pesudo instruction mnemonic.
153
+ * ``no-aliases ``: AArch64 and RISC-V only. Print raw instruction mnemonic instead of pseudo instruction mnemonic.
154
154
* ``numeric ``: RISC-V only. Print raw register names instead of ABI mnemonic. (e.g. print x1 instead of ra)
155
155
* ``att ``: x86 only (default). Print in the AT&T syntax.
156
156
* ``intel ``: x86 only. Print in the intel syntax.
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ OPTIONS
69
69
70
70
.. option :: -l
71
71
72
- Print load commnads .
72
+ Print load commands .
73
73
74
74
.. option :: -mcpu= <value >
75
75
Original file line number Diff line number Diff line change @@ -816,7 +816,7 @@ layout:
816
816
817
817
``llvm/cmake ``
818
818
--------------
819
- Genereates system build files.
819
+ Generates system build files.
820
820
821
821
``llvm/cmake/modules ``
822
822
Build configuration for llvm user defined options. Checks compiler version and
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ These each perform their respective integer arithmetic on a scalar.
292
292
293
293
%dst:_(s32) = G_ADD %src0:_(s32), %src1:_(s32)
294
294
295
- The above exmaple adds %src1 to %src0 and stores the result in %dst.
295
+ The above example adds %src1 to %src0 and stores the result in %dst.
296
296
297
297
G_SDIVREM, G_UDIVREM
298
298
^^^^^^^^^^^^^^^^^^^^
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ Tell the libc++ headers that the Itanium C++ ABI is being used.
97
97
* ``-DCMAKE_C_FLAGS="-lmsvcrt -llegacy_stdio_definitions -D_NO_CRT_STDIO_INLINE" ``
98
98
99
99
Supply CRT definitions including stdio definitions that have been removed from the MS VS CRT.
100
- We don't want the stdio functions decalred inline as they will casuse multiple defintiion
100
+ We don't want the stdio functions declared inline as they will cause multiple definition
101
101
errors when the same symbols are pulled in from legacy_stdio_definitions.ib.
102
102
103
103
* ``-DCMAKE_INSTALL_PREFIX=<install path> ``
Original file line number Diff line number Diff line change @@ -1014,7 +1014,7 @@ with:
1014
1014
The ``-harness `` option may be of interest to people who want to perform some
1015
1015
very late testing on build products to verify that compiled code behaves as
1016
1016
expected. On basic C test cases this is relatively straightforward. Mocks for
1017
- more complicated languages (e.g. C++) are much tricker : Any code involving
1017
+ more complicated languages (e.g. C++) are much trickier : Any code involving
1018
1018
classes tends to have a lot of non-trivial surface area (e.g. vtables) that
1019
1019
would require great care to mock.
1020
1020
Original file line number Diff line number Diff line change @@ -22412,7 +22412,7 @@ Overview:
22412
22412
"""""""""
22413
22413
22414
22414
The purpose of the ``llvm.arithmetic.fence`` intrinsic
22415
- is to prevent the optimizer from performaing fast-math optimizations,
22415
+ is to prevent the optimizer from performing fast-math optimizations,
22416
22416
particularly reassociation,
22417
22417
between the argument and the expression that contains the argument.
22418
22418
It can be used to preserve the parentheses in the source language.
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ The allocator combines several components that serve distinct purposes:
45
45
time options.
46
46
47
47
- the thread specific data Registry: defines how local caches operate for each
48
- thread. There are currently two models implemented: the exlusive model where
48
+ thread. There are currently two models implemented: the exclusive model where
49
49
each thread holds its own caches (using the ELF TLS); or the shared model
50
50
where threads share a fixed size pool of caches.
51
51
@@ -262,7 +262,7 @@ The following "mallopt" options are available (options are defined in
262
262
+---------------------------+-------------------------------------------------------+
263
263
| M_DECAY_TIME | Sets the release interval option to the specified |
264
264
| | value (Android only allows 0 or 1 to respectively set |
265
- | | the interval to the mininum and maximum value as |
265
+ | | the interval to the minimum and maximum value as |
266
266
| | specified at compile time). |
267
267
+---------------------------+-------------------------------------------------------+
268
268
| M_PURGE | Forces immediate memory reclaiming (value is unused). |
You can’t perform that action at this time.
0 commit comments