Skip to content
Snippets Groups Projects
Commit bd837a8b authored by Tanya Lattner's avatar Tanya Lattner
Browse files

Remove names from the CHECK lines.

llvm-svn: 162003
parent a9dd49fe
No related branches found
No related tags found
No related merge requests found
...@@ -43,7 +43,7 @@ void test3(packedfloat3 *p) { ...@@ -43,7 +43,7 @@ void test3(packedfloat3 *p) {
*p = (packedfloat3) { 3.2f, 2.3f, 0.1f }; *p = (packedfloat3) { 3.2f, 2.3f, 0.1f };
} }
// CHECK: @test3( // 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: store <4 x float> {{.*}}, align 4
// CHECK: ret void // CHECK: ret void
......
...@@ -5,5 +5,5 @@ typedef char char3 __attribute((ext_vector_type(3)));; ...@@ -5,5 +5,5 @@ typedef char char3 __attribute((ext_vector_type(3)));;
// Check for optimized vec3 load/store which treats vec3 as vec4. // Check for optimized vec3 load/store which treats vec3 as vec4.
void foo(char3 *P, char3 *Q) { void foo(char3 *P, char3 *Q) {
*P = *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>
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment