aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-01-22 01:39:38 +0000
committerDan Gohman <gohman@apple.com>2009-01-22 01:39:38 +0000
commitc766f7234a96a6df712aafe72b57a0021a7a41fd (patch)
treee18e549abeb564e35df30e92e605b2349a34bd66
parent1271b9f071755eefcffce25d507cad43941cf566 (diff)
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
-rw-r--r--docs/LangRef.html12
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>.
&lt;result&gt; = icmp ule i16 -4, 5 <i>; yields: result=false</i>
&lt;result&gt; = 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>
&lt;result&gt; = fcmp olt float 4.0, 5.0 <i>; yields: result=true</i>
&lt;result&gt; = 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>