diff options
-rw-r--r-- | test/FrontendC/2008-03-24-BitField-And-Alloca.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/test/FrontendC/2008-03-24-BitField-And-Alloca.c b/test/FrontendC/2008-03-24-BitField-And-Alloca.c index b76c75793d..8d77955ca0 100644 --- a/test/FrontendC/2008-03-24-BitField-And-Alloca.c +++ b/test/FrontendC/2008-03-24-BitField-And-Alloca.c @@ -1,9 +1,5 @@ -// RUN: %llvmgcc -S --emit-llvm %s -o - | not grep "\{ i8, .7 x i8. \}" // RUN: %llvmgcc -O2 -S %s -o - | not grep alloca -// FIXME: This fails due to r61493. -// XFAIL: * - enum { PP_C, PP_D, @@ -65,7 +61,7 @@ typedef union _Key { unsigned long long lkey; } Key; -static inline __attribute__ ((always_inline)) void foo(const Key iospec, int* ret) +static /*inline __attribute__ ((always_inline))*/ void foo(const Key iospec, int* ret) { *ret=0; if(((iospec.key_io.lod == G_B) && |