forked from OSchip/llvm-project
Add AArch64 wchar definition to test
This should allow it to pass if the default triple is AArch64 llvm-svn: 174620
This commit is contained in:
parent
7df5c0df3b
commit
570b7478fa
|
@ -6,7 +6,7 @@ typedef __WCHAR_TYPE__ wchar_t;
|
|||
#if defined(_WIN32) || defined(_M_IX86) || defined(__CYGWIN__) \
|
||||
|| defined(_M_X64) || defined(SHORT_WCHAR)
|
||||
#define WCHAR_T_TYPE unsigned short
|
||||
#elif defined(__arm)
|
||||
#elif defined(__arm) || defined(__aarch64__)
|
||||
#define WCHAR_T_TYPE unsigned int
|
||||
#elif defined(__sun) || defined(__AuroraUX__)
|
||||
#define WCHAR_T_TYPE long
|
||||
|
|
Loading…
Reference in New Issue