Update a reference to the old setcc instruction.
authorReid Spencer <rspencer@reidspencer.com>
Sat, 18 Nov 2006 21:55:45 +0000 (21:55 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Sat, 18 Nov 2006 21:55:45 +0000 (21:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31860 91177308-0d34-0410-b5e6-96231b3b80d8

docs/LangRef.html

index 5324c0ef294c10908968e711419ec8458e58ed75..d6696884e4a0eb85d076054b5d9ec4b8a17d9a18 100644 (file)
@@ -1426,7 +1426,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_setcc">seteq</a> int %a, %b<br>  br bool %cond, label %IfEqual, label %IfUnequal<br>IfEqual:<br>  <a
+<pre>Test:<br>  %cond = <a href="#i_icmp">icmp</a> eq, int %a, %b<br>  br bool %cond, label %IfEqual, label %IfUnequal<br>IfEqual:<br>  <a
  href="#i_ret">ret</a> int 1<br>IfUnequal:<br>  <a href="#i_ret">ret</a> int 0<br></pre>
 </div>
 <!-- _______________________________________________________________________ -->