On Oct 18, 2009, at 2:04 PM, Nate Begeman wrote: > Author: sampo > Date: Sun Oct 18 16:04:35 2009 > New Revision: 84445 > > URL: http://llvm.org/viewvc/llvm-project?rev=84445&view=rev > Log: > Add test for OpenCL vector initializer codegen
How'd you know I was going to request this? :) Please convert this to filecheck when you have a chance, thanks Nate! -Chris > > Modified: > cfe/trunk/test/CodeGen/ext-vector-shuffle.c > > Modified: cfe/trunk/test/CodeGen/ext-vector-shuffle.c > URL: > http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/ext-vector-shuffle.c?rev=84445&r1=84444&r2=84445&view=diff > > = > = > = > = > = > = > = > = > ====================================================================== > --- cfe/trunk/test/CodeGen/ext-vector-shuffle.c (original) > +++ cfe/trunk/test/CodeGen/ext-vector-shuffle.c Sun Oct 18 16:04:35 > 2009 > @@ -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 @@ > float2 W = V.ww; > return W.xyxy + W.yxyx; > } > + > +float4 test3(float4 V1, float4 V2) { return (float4)(V1.zw, V2.xy); } > > > _______________________________________________ > cfe-commits mailing list > [email protected] > http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits _______________________________________________ cfe-commits mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits
