diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2012-03-10 22:52:10 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2012-03-10 22:52:10 +0000 |
commit | dc72dc806cfa48ae7dbe32eb811a8151feec982d (patch) | |
tree | df4b918a11077102e24c96606b162effd5e07e86 | |
parent | b017ea237ec655074f3e5494ba40ffc2f7bff242 (diff) |
Updated the test so that it checks for ms-compatibility in addition to ms-extensions.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@152516 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Preprocessor/predefined-macros.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Preprocessor/predefined-macros.c b/test/Preprocessor/predefined-macros.c index 8ec4d7ecf6..5c11c3b7b2 100644 --- a/test/Preprocessor/predefined-macros.c +++ b/test/Preprocessor/predefined-macros.c @@ -1,6 +1,6 @@ // This test verifies that the correct macros are predefined. // -// RUN: %clang_cc1 %s -E -dM -triple i686-pc-win32 -fms-extensions \ +// RUN: %clang_cc1 %s -E -dM -triple i686-pc-win32 -fms-extensions -fms-compatibility \ // RUN: -fmsc-version=1300 -o - | FileCheck %s --check-prefix=CHECK-MS // CHECK-MS: #define _INTEGRAL_MAX_BITS 64 // CHECK-MS: #define _MSC_EXTENSIONS 1 |