diff options
author | Duncan Sands <baldrick@free.fr> | 2010-11-25 21:24:35 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2010-11-25 21:24:35 +0000 |
commit | b32d19de6ac85560267e40a65b12f6ccea26f3b3 (patch) | |
tree | 7bad54096c3da4f4edf7b89ffa4dbbd8d8cd5648 /llvm/test/FrontendC/2007-05-07-PaddingElements.c | |
parent | 2b5243d096ce2b7763cfd3a1c72f75a0443a50e6 (diff) | |
download | bcm5719-llvm-b32d19de6ac85560267e40a65b12f6ccea26f3b3.tar.gz bcm5719-llvm-b32d19de6ac85560267e40a65b12f6ccea26f3b3.zip |
Remove explicit uses of -emit-llvm, the test infrastructure adds it
automatically. Use -S with llvm-gcc rather than -c, so tests can
work when llvm-gcc is really dragonegg (which can output IR with -S
but not -c).
llvm-svn: 120158
Diffstat (limited to 'llvm/test/FrontendC/2007-05-07-PaddingElements.c')
-rw-r--r-- | llvm/test/FrontendC/2007-05-07-PaddingElements.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/test/FrontendC/2007-05-07-PaddingElements.c b/llvm/test/FrontendC/2007-05-07-PaddingElements.c index 9be8850895a..1e4f4d0a751 100644 --- a/llvm/test/FrontendC/2007-05-07-PaddingElements.c +++ b/llvm/test/FrontendC/2007-05-07-PaddingElements.c @@ -1,6 +1,6 @@ // PR 1278 -// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | grep {struct.s} | not grep "4 x i8] zeroinitializer" -// RUN: %llvmgcc %s -S -emit-llvm -O0 -o - | not grep "i32 0, i32 2" +// RUN: %llvmgcc %s -S -O0 -o - | grep {struct.s} | not grep "4 x i8] zeroinitializer" +// RUN: %llvmgcc %s -S -O0 -o - | not grep "i32 0, i32 2" struct s { double d1; int s1; |