mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 23:31:37 +00:00
Clean up some grammaro's.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18705 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
200d93b129
commit
cc16dc3249
@ -238,8 +238,8 @@ purposes:</p>
|
|||||||
<li>Unnamed values are represented as an unsigned numeric value with a '%'
|
<li>Unnamed values are represented as an unsigned numeric value with a '%'
|
||||||
prefix. For example, %12, %2, %44.</li>
|
prefix. For example, %12, %2, %44.</li>
|
||||||
|
|
||||||
<li>Constants, which are described in <a href="#constants">section about
|
<li>Constants, which are described in a <a href="#constants">section about
|
||||||
constants</a></li>
|
constants</a>, below.</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|
||||||
<p>LLVM requires that values start with a '%' sign for two reasons: Compilers
|
<p>LLVM requires that values start with a '%' sign for two reasons: Compilers
|
||||||
@ -778,8 +778,7 @@ them all and their syntax.</p>
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- ======================================================================= -->
|
<!-- ======================================================================= -->
|
||||||
<div class="doc_subsection"> <a name="simpleconstants">Simple Constants</a>
|
<div class="doc_subsection"><a name="simpleconstants">Simple Constants</a></div>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="doc_text">
|
<div class="doc_text">
|
||||||
|
|
||||||
@ -792,7 +791,7 @@ them all and their syntax.</p>
|
|||||||
|
|
||||||
<dt><b>Integer constants</b></dt>
|
<dt><b>Integer constants</b></dt>
|
||||||
|
|
||||||
<dd>Standard integers (such as '4') are constants of <a
|
<dd>Standard integers (such as '4') are constants of the <a
|
||||||
href="#t_integer">integer</a> type. Negative numbers may be used with signed
|
href="#t_integer">integer</a> type. Negative numbers may be used with signed
|
||||||
integer types.
|
integer types.
|
||||||
</dd>
|
</dd>
|
||||||
@ -801,7 +800,7 @@ them all and their syntax.</p>
|
|||||||
|
|
||||||
<dd>Floating point constants use standard decimal notation (e.g. 123.421),
|
<dd>Floating point constants use standard decimal notation (e.g. 123.421),
|
||||||
exponential notation (e.g. 1.23421e+2), or a more precise hexadecimal
|
exponential notation (e.g. 1.23421e+2), or a more precise hexadecimal
|
||||||
notation. etc. Floating point constants have an optional hexadecimal
|
notation. Floating point constants have an optional hexadecimal
|
||||||
notation (see below). Floating point constants must have a <a
|
notation (see below). Floating point constants must have a <a
|
||||||
href="#t_floating">floating point</a> type. </dd>
|
href="#t_floating">floating point</a> type. </dd>
|
||||||
|
|
||||||
@ -816,11 +815,11 @@ them all and their syntax.</p>
|
|||||||
of floating point constants. For example, the form '<tt>double
|
of floating point constants. For example, the form '<tt>double
|
||||||
0x432ff973cafa8000</tt>' is equivalent to (but harder to read than) '<tt>double
|
0x432ff973cafa8000</tt>' is equivalent to (but harder to read than) '<tt>double
|
||||||
4.5e+15</tt>'. The only time hexadecimal floating point constants are required
|
4.5e+15</tt>'. The only time hexadecimal floating point constants are required
|
||||||
(and the only time that they are generated by the disassembler) is when an FP
|
(and the only time that they are generated by the disassembler) is when a
|
||||||
constant has to be emitted that is not representable as a decimal floating point
|
floating point constant must be emitted but it cannot be represented as a
|
||||||
number exactly. For example, NaN's, infinities, and other special cases are
|
decimal floating point number. For example, NaN's, infinities, and other
|
||||||
represented in their IEEE hexadecimal format so that assembly and disassembly do
|
special values are represented in their IEEE hexadecimal format so that
|
||||||
not cause any bits to change in the constants.</p>
|
assembly and disassembly do not cause any bits to change in the constants.</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user