diff options
author | Chris Lattner <sabre@nondot.org> | 2009-01-09 05:46:19 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-01-09 05:46:19 +0000 |
commit | 069c59c7d17a50b0497bf7c45b31c483e23a8efe (patch) | |
tree | 16e4115e0d1355a2b4070e3b4872bc8fce01b3c9 | |
parent | 46cd5a13e575d7f7152d822f3af148fa8e66614d (diff) |
PR3290 is now fixed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61981 91177308-0d34-0410-b5e6-96231b3b80d8
-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) && |