diff options
Diffstat (limited to 'test/CodeGen/volatile-complex.c')
-rw-r--r-- | test/CodeGen/volatile-complex.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/test/CodeGen/volatile-complex.c b/test/CodeGen/volatile-complex.c index 71e5db6..fd5e52b 100644 --- a/test/CodeGen/volatile-complex.c +++ b/test/CodeGen/volatile-complex.c @@ -5,16 +5,14 @@ // // This test assumes that floats are 32-bit aligned and doubles are // 64-bit aligned, and uses x86-64 as a target that should have this -// datalayout. - -// CHECK: target datalayout = "{{.*}}f32:32:32-f64:64:64{{.*}}" +// property. volatile _Complex float cf; 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 @@ -27,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 @@ -40,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 @@ -53,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 |