Daniel Dunbar | 4e7e9cf | 2009-03-25 06:12:34 +0000 | [diff] [blame] | 1 | // RUN: clang -ccc-host-triple i386-apple-darwin9 -m32 -Xarch_i386 -O2 %s -S -### 2> %t.log && |
| 2 | // RUN: grep ' "-O2" ' %t.log | count 1 && |
| 3 | // RUN: clang -ccc-host-triple i386-apple-darwin9 -m64 -Xarch_i386 -O2 %s -S -### 2> %t.log && |
| 4 | // RUN: grep ' "-O2" ' %t.log | count 0 && |
| 5 | // RUN: grep "argument unused during compilation: '-Xarch_i386 -O2'" %t.log && |
| 6 | // RUN: not clang -ccc-host-triple i386-apple-darwin9 -m32 -Xarch_i386 -o -Xarch_i386 -S %s -S -Xarch_i386 -o 2> %t.log && |
| 7 | // RUN: grep "error: invalid Xarch argument: '-Xarch_i386 -o'" %t.log | count 2 && |
| 8 | // RUN: grep "error: invalid Xarch argument: '-Xarch_i386 -S'" %t.log && |
| 9 | // RUN: true |
| 10 | |