diff options
Diffstat (limited to 'test/CodeGen/alignment.c')
-rw-r--r-- | test/CodeGen/alignment.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/CodeGen/alignment.c b/test/CodeGen/alignment.c index 8882c91d03e1..98ea01be0920 100644 --- a/test/CodeGen/alignment.c +++ b/test/CodeGen/alignment.c @@ -43,7 +43,8 @@ void test3(packedfloat3 *p) { *p = (packedfloat3) { 3.2f, 2.3f, 0.1f }; } // CHECK: @test3( -// CHECK: store <3 x float> {{.*}}, align 4 +// CHECK: %{{.*}} = bitcast <3 x float>* %{{.*}} to <4 x float>* +// CHECK: store <4 x float> {{.*}}, align 4 // CHECK: ret void |