diff options
author | Martell Malone <martellmalone@gmail.com> | 2017-11-21 08:09:59 +0000 |
---|---|---|
committer | Martell Malone <martellmalone@gmail.com> | 2017-11-21 08:09:59 +0000 |
commit | dca72fc4ea8121413b982c996850b2782d951835 (patch) | |
tree | 48b96d3304d057c4262bf4cb63702aa7125d9035 /clang/test | |
parent | 65385167fbb4d30fcdddf54102b08fcb1b497fed (diff) | |
download | bcm5719-llvm-dca72fc4ea8121413b982c996850b2782d951835.tar.gz bcm5719-llvm-dca72fc4ea8121413b982c996850b2782d951835.zip |
[MS] add an init test for thumbv7-windows-msvc
llvm-svn: 318736
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Preprocessor/init.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/test/Preprocessor/init.c b/clang/test/Preprocessor/init.c index 818cc2c82b2..5fc568eae58 100644 --- a/clang/test/Preprocessor/init.c +++ b/clang/test/Preprocessor/init.c @@ -1438,6 +1438,11 @@ // AARCH64-DARWIN: #define __WINT_WIDTH__ 32 // AARCH64-DARWIN: #define __aarch64__ 1 +// RUN: %clang_cc1 -E -dM -ffreestanding -triple=thumbv7-windows-msvc < /dev/null | FileCheck -match-full-lines -check-prefix ARM-MSVC %s +// +// ARM-MSVC: #define _M_ARM_NT 1 +// ARM-MSVC: #define _WIN32 1 + // RUN: %clang_cc1 -E -dM -ffreestanding -triple=aarch64-windows-msvc < /dev/null | FileCheck -match-full-lines -check-prefix AARCH64-MSVC %s // // AARCH64-MSVC: #define _INTEGRAL_MAX_BITS 64 |