Daniel Dunbar | 5697aa0 | 2009-03-18 23:39:35 +0000 | [diff] [blame^] | 1 | // RUN: clang-driver -ccc-host-triple i386-unknown-unknown -### -S -Os %s -o %t.s &> %t.log |
| 2 | // RUN: grep '"-S"' %t.log && |
| 3 | // RUN: grep '"-disable-free"' %t.log && |
| 4 | // RUN: grep '"--relocation-model" "static"' %t.log && |
| 5 | // RUN: grep '"--disable-fp-elim"' %t.log && |
| 6 | // RUN: grep '"--unwind-tables=0"' %t.log && |
| 7 | // RUN: grep '"--fmath-errno=1"' %t.log && |
| 8 | // RUN: grep '"-Os"' %t.log && |
| 9 | // RUN: grep '"-arch" "i386"' %t.log && |
| 10 | // RUN: grep '"-o" .*clang-translation\.c\.out\.tmp\.s' %t.log && |
| 11 | // RUN: true |