From 3f9d24dca8bf6384ab2785789a0b0c4e82862563 Mon Sep 17 00:00:00 2001
From: Dan Gohman
Date: Thu, 22 Jan 2009 01:39:38 +0000
Subject: [PATCH] Add a few more notes about LLVM IR features that codegen
doesn't yet support.
llvm-svn: 62739
---
docs/LangRef.html | 12 ++++++++++++
1 file changed, 12 insertions(+)
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.
+