diff options
author | Evan Cheng <evan.cheng@apple.com> | 2009-01-12 08:05:54 +0000 |
---|---|---|
committer | Evan Cheng <evan.cheng@apple.com> | 2009-01-12 08:05:54 +0000 |
commit | 28aad95d0227e65873ffa5dadf7aaaa329fec067 (patch) | |
tree | 6593a5123a5d7d7337de35dd8299626fce16a666 | |
parent | 4dd441bd48b3ae75a7ada3379a671e5f7460fb79 (diff) | |
download | external_llvm-28aad95d0227e65873ffa5dadf7aaaa329fec067.zip external_llvm-28aad95d0227e65873ffa5dadf7aaaa329fec067.tar.gz external_llvm-28aad95d0227e65873ffa5dadf7aaaa329fec067.tar.bz2 |
Second test is only valid in 32-bit mode.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62084 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/FrontendC/2008-03-24-BitField-And-Alloca.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/FrontendC/2008-03-24-BitField-And-Alloca.c b/test/FrontendC/2008-03-24-BitField-And-Alloca.c index 5708291..7963805 100644 --- a/test/FrontendC/2008-03-24-BitField-And-Alloca.c +++ b/test/FrontendC/2008-03-24-BitField-And-Alloca.c @@ -1,5 +1,5 @@ // RUN: %llvmgcc -O2 -S %s -o - | not grep alloca -// RUN: %llvmgcc -S %s -o - | grep store | not grep {align 8} +// RUN: %llvmgcc -m32 -S %s -o - | grep store | not grep {align 8} enum { PP_C, |