if (!TargetInfo::isTypeSigned(TI.getWIntType()))
Builder.defineMacro("__WINT_UNSIGNED__");
- if (!TargetInfo::isTypeSigned(TI.getWCharType()))
- Builder.defineMacro("__WCHAR_UNSIGNED__");
-
// Define exact-width integer types for stdint.h
Builder.defineMacro("__INT" + Twine(TI.getCharWidth()) + "_TYPE__",
"char");
const bool swchar = (wchar_t)-1 > (wchar_t)0;
-#ifdef __WCHAR_UNSIGNED__
-int signed_test[!swchar];
-#else
-int signed_test[swchar];
-#endif
-
int max_test[WCHAR_MAX == (swchar ? -(WCHAR_MIN+1) : (wchar_t)-1)];
int min_test[WCHAR_MIN == (swchar ? 0 : -WCHAR_MAX-1)];