diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-01-13 21:11:28 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-01-13 21:11:28 +0000 |
commit | 3bd391b569e38c6ef7a6155641d4d3622b5616be (patch) | |
tree | 9fa3d4b08b9aa9930e355232d4928a6040ef009c | |
parent | 5cd9d6daf3acd4cc87fecebd81d9495b9e4ba9cd (diff) |
ccc: Fix a test case.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@62183 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | tools/ccc/test/ccc/Xarch.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ccc/test/ccc/Xarch.c b/tools/ccc/test/ccc/Xarch.c index 9c0ebde2db..0c0eee0121 100644 --- a/tools/ccc/test/ccc/Xarch.c +++ b/tools/ccc/test/ccc/Xarch.c @@ -1,8 +1,8 @@ // RUN: xcc -### -fsyntax-only -Xarch_i386 -Wall -Xarch_ppc -Wunused -arch i386 -arch ppc %s &> %t && // RUN: grep '"-Xarch"' %t | count 0 && // RUN: grep '"-Wall"' %t | count 1 && -// RUN: grep 'i686-apple' %t | grep '"-m32"' | count 1 && -// RUN: grep '"-Wall"' %t | grep 'i686-apple' | grep '"-m32"' | count 1 && +// RUN: grep 'i686-apple' %t | grep -v '"-m64"' | count 1 && +// RUN: grep '"-Wall"' %t | grep 'i686-apple' | grep -v '"-m64"' | count 1 && // RUN: grep '"-Wunused"' %t | count 1 && // RUN: grep '"-arch" "ppc"' %t | count 1 && // RUN: grep '"-Wunused"' %t | grep '"-arch" "ppc"' | count 1 |