diff options
-rw-r--r-- | docs/LangRef.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index 2e34afb6d2..f2d7d8d168 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -4071,6 +4071,10 @@ Otherwise, the result is an <tt>i1</tt>. <result> = icmp ule i16 -4, 5 <i>; yields: result=false</i> <result> = icmp sge i16 4, 5 <i>; yields: result=false</i> </pre> + +<p>Note that the code generator does not yet support vector types with + the <tt>icmp</tt> instruction.</p> + </div> <!-- _______________________________________________________________________ --> @@ -4163,6 +4167,10 @@ always yields an <a href="#t_primitive">i1</a> result, as follows:</p> <result> = fcmp olt float 4.0, 5.0 <i>; yields: result=true</i> <result> = fcmp ueq double 1.0, 2.0 <i>; yields: result=false</i> </pre> + +<p>Note that the code generator does not yet support vector types with + the <tt>fcmp</tt> instruction.</p> + </div> <!-- _______________________________________________________________________ --> @@ -4360,6 +4368,10 @@ by element. <pre> %X = select i1 true, i8 17, i8 42 <i>; yields i8:17</i> </pre> + +<p>Note that the code generator does not yet support conditions + with vector type.</p> + </div> |