[llvm-commits] [llvm] r61981 - /llvm/trunk/test/FrontendC/2008-03-24-BitField-And-Alloca.c
Chris Lattner
sabre at nondot.org
Thu Jan 8 21:46:19 PST 2009
Author: lattner
Date: Thu Jan 8 23:46:19 2009
New Revision: 61981
URL: http://llvm.org/viewvc/llvm-project?rev=61981&view=rev
Log:
PR3290 is now fixed.
Modified:
llvm/trunk/test/FrontendC/2008-03-24-BitField-And-Alloca.c
Modified: llvm/trunk/test/FrontendC/2008-03-24-BitField-And-Alloca.c
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/FrontendC/2008-03-24-BitField-And-Alloca.c?rev=61981&r1=61980&r2=61981&view=diff
==============================================================================
--- llvm/trunk/test/FrontendC/2008-03-24-BitField-And-Alloca.c (original)
+++ llvm/trunk/test/FrontendC/2008-03-24-BitField-And-Alloca.c Thu Jan 8 23:46:19 2009
@@ -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 @@
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) &&
More information about the llvm-commits
mailing list