Daniel Dunbar | d4510f2 | 2009-04-07 23:51:44 +0000 | [diff] [blame] | 1 | // RUN: clang -### -S -x c /dev/null -fblocks -fbuiltin -fmath-errno -fcommon -fpascal-strings -fno-blocks -fno-builtin -fno-math-errno -fno-common -fno-pascal-strings -fblocks -fbuiltin -fmath-errno -fcommon -fpascal-strings %s 2> %t && |
| 2 | // RUN: grep -F '"-fblocks"' %t && |
| 3 | // RUN: grep -F '"--fmath-errno=1"' %t && |
| 4 | // RUN: grep -F '"-fpascal-strings"' %t && |
John Thompson | ed4e295 | 2009-11-05 20:14:16 +0000 | [diff] [blame] | 5 | // RUN: clang -### -S -x c /dev/null -fblocks -fbuiltin -fmath-errno -fcommon -fpascal-strings -fno-blocks -fno-builtin -fno-math-errno -fno-common -fno-pascal-strings -fno-show-source-location -fshort-wchar %s 2> %t && |
Daniel Dunbar | d4510f2 | 2009-04-07 23:51:44 +0000 | [diff] [blame] | 6 | // RUN: grep -F '"-fblocks=0"' %t && |
| 7 | // RUN: grep -F '"-fbuiltin=0"' %t && |
| 8 | // RUN: grep -F '"-fno-common"' %t && |
| 9 | // RUN: grep -F '"--fmath-errno=0"' %t && |
Daniel Dunbar | db09702 | 2009-06-08 21:13:54 +0000 | [diff] [blame] | 10 | // RUN: grep -F '"-fno-show-source-location"' %t && |
John Thompson | ed4e295 | 2009-11-05 20:14:16 +0000 | [diff] [blame] | 11 | // RUN: grep -F '"-fshort-wchar"' %t && |
Daniel Dunbar | d4510f2 | 2009-04-07 23:51:44 +0000 | [diff] [blame] | 12 | // RUN: true |