[llvm-commits] [llvm] r83895 - /llvm/trunk/test/FrontendC/2008-03-24-BitField-And-Alloca.c

Chris Lattner sabre at nondot.org
Mon Oct 12 13:42:36 PDT 2009


Author: lattner
Date: Mon Oct 12 15:42:35 2009
New Revision: 83895

URL: http://llvm.org/viewvc/llvm-project?rev=83895&view=rev
Log:
allow this testcase to pass with recent changes.  The test hasn't been
producing any stores at all for a long time, but ".store." was in some
IR instruction names until recently.  This removal caused the test to
start failing.  Just make it reject any stores.

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=83895&r1=83894&r2=83895&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 Mon Oct 12 15:42:35 2009
@@ -1,5 +1,5 @@
 // RUN: %llvmgcc -O2 -S %s -o - | not grep alloca
-// RUN: %llvmgcc -m32 -O2 -S %s -o - | grep store | not grep {align 8}
+// RUN: %llvmgcc -m32 -O2 -S %s -o - | not grep store 
 
 enum {
  PP_C,





More information about the llvm-commits mailing list