From: Dan Gohman Date: Thu, 22 Jan 2009 01:39:38 +0000 (+0000) Subject: Add a few more notes about LLVM IR features that codegen doesn't X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c766f7234a96a6df712aafe72b57a0021a7a41fd;p=oota-llvm.git Add a few more notes about LLVM IR features that codegen doesn't yet support. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62739 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LangRef.html b/docs/LangRef.html index 2e34afb6d22..f2d7d8d1680 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -4071,6 +4071,10 @@ Otherwise, the result is an i1. <result> = icmp ule i16 -4, 5 ; yields: result=false <result> = icmp sge i16 4, 5 ; yields: result=false + +

Note that the code generator does not yet support vector types with + the icmp instruction.

+ @@ -4163,6 +4167,10 @@ always yields an i1 result, as follows:

<result> = fcmp olt float 4.0, 5.0 ; yields: result=true <result> = fcmp ueq double 1.0, 2.0 ; yields: result=false + +

Note that the code generator does not yet support vector types with + the fcmp instruction.

+ @@ -4360,6 +4368,10 @@ by element.
   %X = select i1 true, i8 17, i8 42          ; yields i8:17
 
+ +

Note that the code generator does not yet support conditions + with vector type.

+