mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 07:11:49 +00:00
Grammar and punctuation fixes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14409 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2bf183c092
commit
8411475105
@ -831,16 +831,16 @@ table is not allowed to contain duplicate constant entries.</p>
|
||||
|
||||
<p>The <tt>switch</tt> instruction specifies a table of values and
|
||||
destinations. When the '<tt>switch</tt>' instruction is executed, this
|
||||
table is searched for the given value. If the value is found, the
|
||||
corresponding destination is branched to, otherwise the default value
|
||||
it transfered to.</p>
|
||||
table is searched for the given value. If the value is found, control flow is
|
||||
transfered to the corresponding destination; otherwise, control flow is
|
||||
transfered to the default destination.</p>
|
||||
|
||||
<h5>Implementation:</h5>
|
||||
|
||||
<p>Depending on properties of the target machine and the particular
|
||||
<tt>switch</tt> instruction, this instruction may be code generated in different
|
||||
ways, for example as a series of chained conditional branches, or with a lookup
|
||||
table.</p>
|
||||
ways. For example, it could be generated as a series of chained conditional
|
||||
branches or with a lookup table.</p>
|
||||
|
||||
<h5>Example:</h5>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user