diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2007-01-19 17:11:12 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2007-01-19 17:11:12 +0000 |
commit | 49c6e09c7cad8e95beccf51b906e44498d1d0919 (patch) | |
tree | 083f501a7d2a3fc7a78441047674514d2af444cc | |
parent | ee187be5cac70bace7da8624c93adcce26dc92bb (diff) | |
download | bcm5719-llvm-49c6e09c7cad8e95beccf51b906e44498d1d0919.tar.gz bcm5719-llvm-49c6e09c7cad8e95beccf51b906e44498d1d0919.zip |
icmp doesn't support comparison of packed types.
llvm-svn: 33357
-rw-r--r-- | llvm/docs/LangRef.html | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 9bd69137156..c423c0b5745 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/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> <result> = icmp eq i32 4, 5 <i>; yields: result=false</i> |