[llvm-commits] [llvm] r62739 - /llvm/trunk/docs/LangRef.html
Dan Gohman
gohman at apple.com
Wed Jan 21 17:39:56 PST 2009
Author: djg
Date: Wed Jan 21 19:39:38 2009
New Revision: 62739
URL: http://llvm.org/viewvc/llvm-project?rev=62739&view=rev
Log:
Add a few more notes about LLVM IR features that codegen doesn't
yet support.
Modified:
llvm/trunk/docs/LangRef.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=62739&r1=62738&r2=62739&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Wed Jan 21 19:39:38 2009
@@ -4071,6 +4071,10 @@
<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 @@
<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 @@
<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>
More information about the llvm-commits
mailing list