diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-08-24 22:29:04 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-08-24 22:29:04 +0000 |
commit | 55a1846bf4b2f83423ce832d30718e20e48dcc12 (patch) | |
tree | 8fec9cada205055a579400e920945f9282522224 /test/Driver | |
parent | 0e2679d29be70186fc1197a1484948ed239922ba (diff) |
Add missing '&&'...
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@79950 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Driver')
-rw-r--r-- | test/Driver/darwin-as.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Driver/darwin-as.c b/test/Driver/darwin-as.c index 24c7cd2fd9..e33b937b75 100644 --- a/test/Driver/darwin-as.c +++ b/test/Driver/darwin-as.c @@ -1,5 +1,5 @@ // RUN: clang -ccc-host-triple i386-apple-darwin10 -### -x assembler -c %s -static -dynamic 2>%t && -// RUN: FileCheck -check-prefix=STATIC_AND_DYNAMIC-32 --input-file %t %s +// RUN: FileCheck -check-prefix=STATIC_AND_DYNAMIC-32 --input-file %t %s && // CHECK-STATIC_AND_DYNAMIC-32: as" "-arch" "i386" "-force_cpusubtype_ALL" "-static" "-o" |