aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-04 05:19:58 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-04 05:19:58 +0000
commit350f8aa72dd8640a455e2546ca7ebab67d457863 (patch)
tree7720c0ccdfbd9969973913de552a217a4f0f5e98
parent1b7a880c98bc64ac51f67763fe12c7b7ab075a7f (diff)
icmp and fcmp do not take packed type operands.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32864 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/LangRef.html11
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 7639649269..3ebb1396f9 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -3139,9 +3139,8 @@ a value, just a keyword. The possibilities for the condition code are:
<li><tt>slt</tt>: signed less than</li>
<li><tt>sle</tt>: signed less or equal</li>
</ol>
-<p>The remaining two arguments must be of <a href="#t_integral">integral</a>,
-<a href="#t_pointer">pointer</a> or a <a href="#t_packed">packed</a> integral
-type. They must have identical types.</p>
+<p>The remaining two arguments must be <a href="#t_integral">integral</a> or
+<a href="#t_pointer">pointer</a> typed. They must also be identical types.</p>
<h5>Semantics:</h5>
<p>The '<tt>icmp</tt>' compares <tt>var1</tt> and <tt>var2</tt> according to
the condition code given as <tt>cond</tt>. The comparison performed always
@@ -3220,9 +3219,9 @@ a value, just a keyword. The possibilities for the condition code are:
</ol>
<p>In the preceding, <i>ordered</i> means that neither operand is a QNAN while
<i>unordered</i> means that either operand may be a QNAN.</p>
-<p>The <tt>val1</tt> and <tt>val2</tt> arguments must be of
-<a href="#t_floating">floating point</a>, or a <a href="#t_packed">packed</a>
-floating point type. They must have identical types.</p>
+<p>The <tt>val1</tt> and <tt>val2</tt> arguments must be
+<a href="#t_floating">floating point</a> typed. They must have identical
+types.</p>
<p>In the foregoing, <i>ordered</i> means that neither operand is a QNAN and
<i>unordered</i> means that either operand is a QNAN.</p>
<h5>Semantics:</h5>