]> granicus.if.org Git - clang/commitdiff
PR9792: Make sure to use the right definition of wchar_t when the default
authorEli Friedman <eli.friedman@gmail.com>
Sat, 30 Apr 2011 19:24:24 +0000 (19:24 +0000)
committerEli Friedman <eli.friedman@gmail.com>
Sat, 30 Apr 2011 19:24:24 +0000 (19:24 +0000)
wchar_t is an unsigned type.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130620 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/ASTContext.cpp
test/SemaCXX/short-wchar-sign.cpp [new file with mode: 0644]

index 13c40f7ca1dc01678d24e08946ff51bce810b2f9..de8c26bd70c4aaee6d7e86e7181b07d56c3d48d0 100644 (file)
@@ -375,7 +375,7 @@ void ASTContext::InitBuiltinTypes() {
   InitBuiltinType(UnsignedInt128Ty,    BuiltinType::UInt128);
 
   if (LangOpts.CPlusPlus) { // C++ 3.9.1p5
-    if (!LangOpts.ShortWChar)
+    if (TargetInfo::isTypeSigned(Target.getWCharType()))
       InitBuiltinType(WCharTy,           BuiltinType::WChar_S);
     else  // -fshort-wchar makes wchar_t be unsigned.
       InitBuiltinType(WCharTy,           BuiltinType::WChar_U);
diff --git a/test/SemaCXX/short-wchar-sign.cpp b/test/SemaCXX/short-wchar-sign.cpp
new file mode 100644 (file)
index 0000000..9a177c0
--- /dev/null
@@ -0,0 +1,6 @@
+// RUN: %clang_cc1 -triple i386-mingw32 -fsyntax-only -pedantic -verify %s
+// RUN: %clang_cc1 -fshort-wchar -fsyntax-only -pedantic -verify %s
+// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -pedantic -verify %s
+
+// Check that short wchar_t is unsigned, and that regular wchar_t is not.
+int test[(wchar_t(-1)<wchar_t(0)) == (sizeof(wchar_t) == 4) ?1:-1];