summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2011-08-02 20:29:13 +0000
committerChris Lattner <sabre@nondot.org>2011-08-02 20:29:13 +0000
commit6445ecbdb9caea8269ecb62e8dce13fe25238247 (patch)
treed4068fd75c28a80bb7da3c4cd2ea8d694dc2854f /docs
parent49cb9b88867426d1a430f248550d3cc785a68fe4 (diff)
downloadllvm-6445ecbdb9caea8269ecb62e8dce13fe25238247.tar.gz
llvm-6445ecbdb9caea8269ecb62e8dce13fe25238247.tar.bz2
llvm-6445ecbdb9caea8269ecb62e8dce13fe25238247.tar.xz
no need to count the terminators.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136718 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 6e77b4ac90..dce39c5ac3 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -3026,15 +3026,15 @@ should not be exposed to source languages.</p>
control flow, not values (the one exception being the
'<a href="#i_invoke"><tt>invoke</tt></a>' instruction).</p>
-<p>There are eight different terminator instructions: the
- '<a href="#i_ret"><tt>ret</tt></a>' instruction, the
- '<a href="#i_br"><tt>br</tt></a>' instruction, the
- '<a href="#i_switch"><tt>switch</tt></a>' instruction, the
- '<a href="#i_indirectbr">'<tt>indirectbr</tt></a>' Instruction, the
- '<a href="#i_invoke"><tt>invoke</tt></a>' instruction, the
- '<a href="#i_unwind"><tt>unwind</tt></a>' instruction, the
- '<a href="#i_resume"><tt>resume</tt></a>' instruction, and the
- '<a href="#i_unreachable"><tt>unreachable</tt></a>' instruction.</p>
+<p>The terminator instructions are:
+ '<a href="#i_ret"><tt>ret</tt></a>',
+ '<a href="#i_br"><tt>br</tt></a>',
+ '<a href="#i_switch"><tt>switch</tt></a>',
+ '<a href="#i_indirectbr"><tt>indirectbr</tt></a>',
+ '<a href="#i_invoke"><tt>invoke</tt></a>',
+ '<a href="#i_unwind"><tt>unwind</tt></a>',
+ '<a href="#i_resume"><tt>resume</tt></a>', and
+ '<a href="#i_unreachable"><tt>unreachable</tt></a>'.</p>
<!-- _______________________________________________________________________ -->
<h4>