aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-05-09 18:11:50 +0000
committerChris Lattner <sabre@nondot.org>2009-05-09 18:11:50 +0000
commit60150a3dc498b78a10cfe9b467f08f1cdec9052d (patch)
tree4aa448dee4894b8ed47abff6043be03f2fbe7808
parent361e54d433e67db5d6b6455f7fd098de8c01f882 (diff)
fix typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@71362 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/LangRef.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 0ff7dd3338..36eae718e3 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -2240,7 +2240,7 @@ argument is evaluated. If the value is <tt>true</tt>, control flows
to the '<tt>iftrue</tt>' <tt>label</tt> argument. If "cond" is <tt>false</tt>,
control flows to the '<tt>iffalse</tt>' <tt>label</tt> argument.</p>
<h5>Example:</h5>
-<pre>Test:<br> %cond = <a href="#i_icmp">icmp</a> eq, i32 %a, %b<br> br i1 %cond, label %IfEqual, label %IfUnequal<br>IfEqual:<br> <a
+<pre>Test:<br> %cond = <a href="#i_icmp">icmp</a> eq i32 %a, %b<br> br i1 %cond, label %IfEqual, label %IfUnequal<br>IfEqual:<br> <a
href="#i_ret">ret</a> i32 1<br>IfUnequal:<br> <a href="#i_ret">ret</a> i32 0<br></pre>
</div>
<!-- _______________________________________________________________________ -->