aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNate Begeman <natebegeman@mac.com>2009-10-18 21:04:35 +0000
committerNate Begeman <natebegeman@mac.com>2009-10-18 21:04:35 +0000
commitbd339f71c7a5a3e2b883f4306689c8bc39077895 (patch)
treec9e0ca1468f62287dff23b7f93fc27959803aca1 /test
parent8dafd5fe87588f8abb0d4ba55dd1b232b9a1256f (diff)
Add test for OpenCL vector initializer codegen
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@84445 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r--test/CodeGen/ext-vector-shuffle.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/test/CodeGen/ext-vector-shuffle.c b/test/CodeGen/ext-vector-shuffle.c
index f53db945da..7655515964 100644
--- a/test/CodeGen/ext-vector-shuffle.c
+++ b/test/CodeGen/ext-vector-shuffle.c
@@ -1,6 +1,6 @@
-// RUN: clang-cc %s -emit-llvm -o - | not grep 'extractelement' &&
-// RUN: clang-cc %s -emit-llvm -o - | not grep 'insertelement' &&
-// RUN: clang-cc %s -emit-llvm -o - | grep 'shufflevector'
+// RUN: clang-cc %s -x cl -emit-llvm -o - | not grep 'extractelement' &&
+// RUN: clang-cc %s -x cl -emit-llvm -o - | not grep 'insertelement' &&
+// RUN: clang-cc %s -x cl -emit-llvm -o - | grep 'shufflevector'
typedef __attribute__(( ext_vector_type(2) )) float float2;
typedef __attribute__(( ext_vector_type(4) )) float float4;
@@ -13,3 +13,5 @@ float4 test2(float4 V) {
float2 W = V.ww;
return W.xyxy + W.yxyx;
}
+
+float4 test3(float4 V1, float4 V2) { return (float4)(V1.zw, V2.xy); }