diff options
author | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2012-10-12 20:16:26 +0000 |
---|---|---|
committer | Bill Schmidt <wschmidt@linux.vnet.ibm.com> | 2012-10-12 20:16:26 +0000 |
commit | 7adee6f90ea78fefc8592a08d951b2a7b07c36ca (patch) | |
tree | c31c8bddf81b28caed5449964b1fbb5c9ce1f239 /clang/test/CodeGen/ppc64-struct-onefloat.c | |
parent | 2cf801ab9ebf30cc5adb12f642b5fb9fd2ed5f07 (diff) | |
download | bcm5719-llvm-7adee6f90ea78fefc8592a08d951b2a7b07c36ca.tar.gz bcm5719-llvm-7adee6f90ea78fefc8592a08d951b2a7b07c36ca.zip |
Remove XFAIL,fix test
llvm-svn: 165819
Diffstat (limited to 'clang/test/CodeGen/ppc64-struct-onefloat.c')
-rw-r--r-- | clang/test/CodeGen/ppc64-struct-onefloat.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/CodeGen/ppc64-struct-onefloat.c b/clang/test/CodeGen/ppc64-struct-onefloat.c index cd468277267..4f9e1949cea 100644 --- a/clang/test/CodeGen/ppc64-struct-onefloat.c +++ b/clang/test/CodeGen/ppc64-struct-onefloat.c @@ -1,6 +1,5 @@ // REQUIRES: ppc64-registered-target // RUN: %clang_cc1 -O0 -triple powerpc64-unknown-linux-gnu -emit-llvm -o - %s | FileCheck %s -// XFAIL: * typedef struct s1 { float f; } Sf; typedef struct s2 { double d; } Sd; @@ -41,7 +40,7 @@ void foo(void) // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s2* %p2, i32 0, i32 0 // CHECK: %{{[0-9]+}} = load double* %{{[a-zA-Z0-9.]+}}, align 1 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s4* %p4, i32 0, i32 0 -// CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s1* {{[a-zA-Z0-9.]+}}, i32 0, i32 0 +// CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s1* %{{[a-zA-Z0-9.]+}}, i32 0, i32 0 // CHECK: %{{[0-9]+}} = load float* %{{[a-zA-Z0-9.]+}}, align 1 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s5* %p5, i32 0, i32 0 // CHECK: %{{[a-zA-Z0-9.]+}} = getelementptr %struct.s2* %{{[a-zA-Z0-9.]+}}, i32 0, i32 0 |