diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2014-01-11 21:22:35 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2014-01-11 21:22:35 +0000 |
commit | 38d04e30982c937c3aba31d18e1e6d06b8688a31 (patch) | |
tree | 670e72a0a8a1700907a8c664fd55c1804fb2460e /test/CodeGen/volatile-complex.c | |
parent | 3180f2be09a954580daf8ce537b8bd0b755e70b6 (diff) | |
download | clang-38d04e30982c937c3aba31d18e1e6d06b8688a31.tar.gz |
test case hygiene.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@199017 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGen/volatile-complex.c')
-rw-r--r-- | test/CodeGen/volatile-complex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test/CodeGen/volatile-complex.c b/test/CodeGen/volatile-complex.c index b47f636962..fd5e52b8d7 100644 --- a/test/CodeGen/volatile-complex.c +++ b/test/CodeGen/volatile-complex.c @@ -12,7 +12,7 @@ volatile _Complex double cd; volatile _Complex float cf32 __attribute__((aligned(32))); volatile _Complex double cd32 __attribute__((aligned(32))); -// CHECK-LABEL-LABEL: define void @test_cf() +// CHECK-LABEL: define void @test_cf() void test_cf() { // CHECK: load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 0), align 4 // CHECK-NEXT: load volatile float* getelementptr inbounds ({ float, float }* @cf, i32 0, i32 1), align 4 @@ -25,7 +25,7 @@ void test_cf() { // CHECK-NEXT: ret void } -// CHECK-LABEL-LABEL: define void @test_cd() +// CHECK-LABEL: define void @test_cd() void test_cd() { // CHECK: load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 0), align 8 // CHECK-NEXT: load volatile double* getelementptr inbounds ({ double, double }* @cd, i32 0, i32 1), align 8 @@ -38,7 +38,7 @@ void test_cd() { // CHECK-NEXT: ret void } -// CHECK-LABEL-LABEL: define void @test_cf32() +// CHECK-LABEL: define void @test_cf32() void test_cf32() { // CHECK: load volatile float* getelementptr inbounds ({ float, float }* @cf32, i32 0, i32 0), align 32 // CHECK-NEXT: load volatile float* getelementptr inbounds ({ float, float }* @cf32, i32 0, i32 1), align 4 @@ -51,7 +51,7 @@ void test_cf32() { // CHECK-NEXT: ret void } -// CHECK-LABEL-LABEL: define void @test_cd32() +// CHECK-LABEL: define void @test_cd32() void test_cd32() { // CHECK: load volatile double* getelementptr inbounds ({ double, double }* @cd32, i32 0, i32 0), align 32 // CHECK-NEXT: load volatile double* getelementptr inbounds ({ double, double }* @cd32, i32 0, i32 1), align 8 |