diff options
Diffstat (limited to 'clang/test/CodeGen/volatile-complex.c')
-rw-r--r-- | clang/test/CodeGen/volatile-complex.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/clang/test/CodeGen/volatile-complex.c b/clang/test/CodeGen/volatile-complex.c index b47f6369625..fd5e52b8d7e 100644 --- a/clang/test/CodeGen/volatile-complex.c +++ b/clang/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 |