diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index 2e34afb6d227..f2d7d8d1680c 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/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.

+