[cfe-commits] r162003 - in /cfe/trunk/test: CodeGen/alignment.c CodeGenOpenCL/vectorLoadStore.cl
Tanya Lattner
tonic at nondot.org
Wed Aug 15 17:22:16 PDT 2012
Author: tbrethou
Date: Wed Aug 15 19:22:16 2012
New Revision: 162003
URL: http://llvm.org/viewvc/llvm-project?rev=162003&view=rev
Log:
Remove names from the CHECK lines.
Modified:
cfe/trunk/test/CodeGen/alignment.c
cfe/trunk/test/CodeGenOpenCL/vectorLoadStore.cl
Modified: cfe/trunk/test/CodeGen/alignment.c
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGen/alignment.c?rev=162003&r1=162002&r2=162003&view=diff
==============================================================================
--- cfe/trunk/test/CodeGen/alignment.c (original)
+++ cfe/trunk/test/CodeGen/alignment.c Wed Aug 15 19:22:16 2012
@@ -43,7 +43,7 @@
*p = (packedfloat3) { 3.2f, 2.3f, 0.1f };
}
// CHECK: @test3(
-// CHECK: bitcast <3 x float>* %.compoundliteral to <4 x float>*
+// CHECK: %{{.*}} = bitcast <3 x float>* %{{.*}} to <4 x float>*
// CHECK: store <4 x float> {{.*}}, align 4
// CHECK: ret void
Modified: cfe/trunk/test/CodeGenOpenCL/vectorLoadStore.cl
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/CodeGenOpenCL/vectorLoadStore.cl?rev=162003&r1=162002&r2=162003&view=diff
==============================================================================
--- cfe/trunk/test/CodeGenOpenCL/vectorLoadStore.cl (original)
+++ cfe/trunk/test/CodeGenOpenCL/vectorLoadStore.cl Wed Aug 15 19:22:16 2012
@@ -5,5 +5,5 @@
// Check for optimized vec3 load/store which treats vec3 as vec4.
void foo(char3 *P, char3 *Q) {
*P = *Q;
- // CHECK: %extractVec = shufflevector <4 x i8> %loadVec4, <4 x i8> undef, <3 x i32> <i32 0, i32 1, i32 2>
+ // CHECK: %{{.*}} = shufflevector <4 x i8> %{{.*}}, <4 x i8> undef, <3 x i32> <i32 0, i32 1, i32 2>
}
More information about the cfe-commits
mailing list