mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-05 04:38:37 +00:00
6323a2d63c
Windows on ARM uses AAPCS, but has some deviations. wchar_t remains an unsigned short on WoA, which does not conform to AAPCS. Ensure that wchar_t is defined accordingly. llvm-svn: 207929
6 lines
199 B
C
6 lines
199 B
C
// RUN: %clang_cc1 -dM -triple armv7-windows -E %s | FileCheck %s
|
|
// RUN: %clang_cc1 -dM -fno-signed-char -triple armv7-windows -E %s | FileCheck %s
|
|
|
|
// CHECK: #define __WCHAR_TYPE__ unsigned short
|
|
|