blob: 4071d17c79708a8a5de2984d20a6c0006badc077 [file] [log] [blame]
Eric Christopherb0257342011-07-26 21:42:32 +00001// RUN: %clang_cc1 -emit-llvm %s -o /dev/null
2
3// This bit is taken from Sema/wchar.c so we can avoid the wchar.h include.
4typedef __WCHAR_TYPE__ wchar_t;
5#if defined(_WIN32) || defined(_M_IX86) || defined(__CYGWIN__) \
6 || defined(_M_X64) || defined(SHORT_WCHAR)
7 #define WCHAR_T_TYPE unsigned short
8#elif defined(__sun) || defined(__AuroraUX__)
9 #define WCHAR_T_TYPE long
10#else /* Solaris or AuroraUX. */
11 #define WCHAR_T_TYPE int
12#endif
13
14struct {
15 wchar_t *name;
16} syms = { L"NUL" };