summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2007-01-19 17:11:12 +0000
committerReid Spencer <rspencer@reidspencer.com>2007-01-19 17:11:12 +0000
commit03c056a6176bd43f65ece71c7eca4de1738287d2 (patch)
tree695b74ee0e7ba8aeb76f0da724cb67f08113df91 /docs
parent9160a841ac8653f7e8549f06705e8572ef8e1db4 (diff)
downloadllvm-03c056a6176bd43f65ece71c7eca4de1738287d2.tar.gz
llvm-03c056a6176bd43f65ece71c7eca4de1738287d2.tar.bz2
llvm-03c056a6176bd43f65ece71c7eca4de1738287d2.tar.xz
icmp doesn't support comparison of packed types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33357 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/LangRef.html3
1 files changed, 0 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index 9bd6913715..c423c0b574 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -3185,9 +3185,6 @@ yields a <a href="#t_primitive">i1</a> result, as follows:
</ol>
<p>If the operands are <a href="#t_pointer">pointer</a> typed, the pointer
values are treated as integers and then compared.</p>
-<p>If the operands are <a href="#t_packed">packed</a> typed, the elements of
-the vector are compared in turn and the predicate must hold for all
-elements.</p>
<h5>Example:</h5>
<pre> &lt;result&gt; = icmp eq i32 4, 5 <i>; yields: result=false</i>