From 350f8aa72dd8640a455e2546ca7ebab67d457863 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Thu, 4 Jan 2007 05:19:58 +0000 Subject: [PATCH] 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 --- docs/LangRef.html | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index 7639649269a..3ebb1396f97 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:
  • slt: signed less than
  • sle: signed less or equal
  • -

    The remaining two arguments must be of integral, -pointer or a packed integral -type. They must have identical types.

    +

    The remaining two arguments must be integral or +pointer typed. They must also be identical types.

    Semantics:

    The 'icmp' compares var1 and var2 according to the condition code given as cond. The comparison performed always @@ -3220,9 +3219,9 @@ a value, just a keyword. The possibilities for the condition code are:

    In the preceding, ordered means that neither operand is a QNAN while unordered means that either operand may be a QNAN.

    -

    The val1 and val2 arguments must be of -floating point, or a packed -floating point type. They must have identical types.

    +

    The val1 and val2 arguments must be +floating point typed. They must have identical +types.

    In the foregoing, ordered means that neither operand is a QNAN and unordered means that either operand is a QNAN.

    Semantics:
    -- 2.34.1