diff options
author | Roman Divacky <rdivacky@FreeBSD.org> | 2009-11-19 09:00:00 +0000 |
---|---|---|
committer | Roman Divacky <rdivacky@FreeBSD.org> | 2009-11-19 09:00:00 +0000 |
commit | f5bd02d290ff15268853e0456c130a1afa15e907 (patch) | |
tree | c7f5a7b6fd212399d821b83b22c1e6a42e8c4a0d /test/Driver | |
parent | b3d5a323a5ca92ea73443499cee2f15db1ff0fb3 (diff) | |
download | src-test2-f5bd02d290ff15268853e0456c130a1afa15e907.tar.gz src-test2-f5bd02d290ff15268853e0456c130a1afa15e907.zip |
Notes
Diffstat (limited to 'test/Driver')
-rw-r--r-- | test/Driver/analyze.c | 2 | ||||
-rw-r--r-- | test/Driver/clang-translation.c | 1 | ||||
-rw-r--r-- | test/Driver/clang_f_opts.c | 5 |
3 files changed, 3 insertions, 5 deletions
diff --git a/test/Driver/analyze.c b/test/Driver/analyze.c index ff35cc57f1c0..bdbfbbfd88dd 100644 --- a/test/Driver/analyze.c +++ b/test/Driver/analyze.c @@ -6,4 +6,4 @@ // CHECK: "-analyze" // CHECK: "-target-feature" "+sse" -// CHECK: "--fmath-errno=0" +// CHECK: "-fno-math-errno" diff --git a/test/Driver/clang-translation.c b/test/Driver/clang-translation.c index c57a2b76246f..fe351843825f 100644 --- a/test/Driver/clang-translation.c +++ b/test/Driver/clang-translation.c @@ -5,7 +5,6 @@ // RUN: grep '"--relocation-model" "static"' %t.log // RUN: grep '"--disable-fp-elim"' %t.log // RUN: grep '"--unwind-tables=0"' %t.log -// RUN: grep '"--fmath-errno=1"' %t.log // RUN: grep '"-Os"' %t.log // RUN: grep '"-o" .*clang-translation.*' %t.log // RUN: grep '"--asm-verbose"' %t.log diff --git a/test/Driver/clang_f_opts.c b/test/Driver/clang_f_opts.c index b18f14758db1..3756a2f4d163 100644 --- a/test/Driver/clang_f_opts.c +++ b/test/Driver/clang_f_opts.c @@ -1,10 +1,9 @@ // 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 // RUN: grep -F '"-fblocks"' %t -// RUN: grep -F '"--fmath-errno=1"' %t // RUN: grep -F '"-fpascal-strings"' %t // 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 -// RUN: grep -F '"-fbuiltin=0"' %t +// RUN: grep -F '"-fno-builtin"' %t // RUN: grep -F '"-fno-common"' %t -// RUN: grep -F '"--fmath-errno=0"' %t +// RUN: grep -F '"-fno-math-errno"' %t // RUN: grep -F '"-fno-show-source-location"' %t // RUN: grep -F '"-fshort-wchar"' %t |