diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2006-11-18 21:55:45 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2006-11-18 21:55:45 +0000 |
commit | 36d68e418d8d044964cf763daf49543d9052d55b (patch) | |
tree | 90a3a905598df7c0725caa7e2894a16c08604e5c /docs | |
parent | f3a70a6cd9841a824a186891cbe169919e4e9005 (diff) | |
download | external_llvm-36d68e418d8d044964cf763daf49543d9052d55b.zip external_llvm-36d68e418d8d044964cf763daf49543d9052d55b.tar.gz external_llvm-36d68e418d8d044964cf763daf49543d9052d55b.tar.bz2 |
Update a reference to the old setcc instruction.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@31860 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 5324c0e..d669688 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -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> <!-- _______________________________________________________________________ --> |