[llvm-commits] [llvm] r71362 - /llvm/trunk/docs/LangRef.html
Chris Lattner
sabre at nondot.org
Sat May 9 11:11:50 PDT 2009
Author: lattner
Date: Sat May 9 13:11:50 2009
New Revision: 71362
URL: http://llvm.org/viewvc/llvm-project?rev=71362&view=rev
Log:
fix typo
Modified:
llvm/trunk/docs/LangRef.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=71362&r1=71361&r2=71362&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Sat May 9 13:11:50 2009
@@ -2240,7 +2240,7 @@
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>
<!-- _______________________________________________________________________ -->
More information about the llvm-commits
mailing list