aboutsummaryrefslogtreecommitdiff
path: root/test/Preprocessor/init.c
diff options
context:
space:
mode:
authorJohn Thompson <John.Thompson.JTSoftware@gmail.com>2009-11-03 02:36:47 +0000
committerJohn Thompson <John.Thompson.JTSoftware@gmail.com>2009-11-03 02:36:47 +0000
commit9617a7867bbe64f404c5085e39f580282e63f23d (patch)
treef78e743f2160b80a02bf148736d4b2951f40b849 /test/Preprocessor/init.c
parent736529e7b6fa4aa8331b88c2e89b6a81120731e5 (diff)
Fixed for running on Windows.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@85854 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Preprocessor/init.c')
-rw-r--r--test/Preprocessor/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Preprocessor/init.c b/test/Preprocessor/init.c
index 907d3dd217..800b7506f4 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 < /dev/null | FileCheck -check-prefix COMMON %s &&
+// RUN: clang-cc -E -dM -fms-extensions=0 < /dev/null | FileCheck -check-prefix COMMON %s &&
//
// COMMON:#define __CONSTANT_CFSTRINGS__ 1
// COMMON:#define __FINITE_MATH_ONLY__ 0
@@ -112,7 +112,7 @@
// PASCAL:#define __PASCAL_STRINGS__ 1
//
//
-// RUN: clang-cc -fsigned-char -E -dM < /dev/null | FileCheck -check-prefix SCHAR %s &&
+// RUN: clang-cc -fsigned-char -E -dM -fms-extensions=0 < /dev/null | FileCheck -check-prefix SCHAR %s &&
//
// SCHAR:#define __STDC__ 1
// SCHAR-NOT:#define __UNSIGNED_CHAR__