diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-11-29 09:31:53 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-11-29 09:31:53 +0000 |
commit | a75a92dfffee2b34a43f1d0e9f8d1949feb190ad (patch) | |
tree | 648d332bdf556808563f80fcebd0ea0a450d0a6c /test/Preprocessor/init.c | |
parent | 3e518bda00d710754ca077cf9be8dd821e16a854 (diff) |
Remove unnecessary -fms-extensions=0 from tests (this command line syntax is going away).
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@90066 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/init.c')
-rw-r--r-- | test/Preprocessor/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Preprocessor/init.c b/test/Preprocessor/init.c index eaaa574305..22e2eaeebe 100644 --- a/test/Preprocessor/init.c +++ b/test/Preprocessor/init.c @@ -36,7 +36,7 @@ // C99:#define __STRICT_ANSI__ 1 // // -// RUN: clang-cc -E -dM -fms-extensions=0 < /dev/null | FileCheck -check-prefix COMMON %s +// RUN: clang-cc -E -dM < /dev/null | FileCheck -check-prefix COMMON %s // // COMMON:#define __CONSTANT_CFSTRINGS__ 1 // COMMON:#define __FINITE_MATH_ONLY__ 0 @@ -108,7 +108,7 @@ // PASCAL:#define __PASCAL_STRINGS__ 1 // // -// RUN: clang-cc -E -dM -fms-extensions=0 < /dev/null | FileCheck -check-prefix SCHAR %s +// RUN: clang-cc -E -dM < /dev/null | FileCheck -check-prefix SCHAR %s // // SCHAR:#define __STDC__ 1 // SCHAR-NOT:#define __UNSIGNED_CHAR__ |