aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanya Lattner <tonic@nondot.org>2012-08-16 00:22:16 +0000
committerTanya Lattner <tonic@nondot.org>2012-08-16 00:22:16 +0000
commitbd837a8bdead616086907cb098f41975faa47f32 (patch)
tree14e24f856153728e71189c302e45abb785962cf6
parenta9dd49fe5b327babb9cd8128cd91ce198767fe71 (diff)
downloadllvm-bd837a8bdead616086907cb098f41975faa47f32.zip
llvm-bd837a8bdead616086907cb098f41975faa47f32.tar.gz
llvm-bd837a8bdead616086907cb098f41975faa47f32.tar.bz2
Remove names from the CHECK lines.
llvm-svn: 162003
-rw-r--r--clang/test/CodeGen/alignment.c2
-rw-r--r--clang/test/CodeGenOpenCL/vectorLoadStore.cl2
2 files changed, 2 insertions, 2 deletions
diff --git a/clang/test/CodeGen/alignment.c b/clang/test/CodeGen/alignment.c
index 5051a98..98ea01b 100644
--- a/clang/test/CodeGen/alignment.c
+++ b/clang/test/CodeGen/alignment.c
@@ -43,7 +43,7 @@ void test3(packedfloat3 *p) {
*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
diff --git a/clang/test/CodeGenOpenCL/vectorLoadStore.cl b/clang/test/CodeGenOpenCL/vectorLoadStore.cl
index ba0405d..44bc7bd 100644
--- a/clang/test/CodeGenOpenCL/vectorLoadStore.cl
+++ b/clang/test/CodeGenOpenCL/vectorLoadStore.cl
@@ -5,5 +5,5 @@ typedef char char3 __attribute((ext_vector_type(3)));;
// 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>
}