summaryrefslogtreecommitdiffstats
path: root/clang/lib/AST/ASTContext.cpp
diff options
context:
space:
mode:
authorEli Friedman <eli.friedman@gmail.com>2011-04-30 19:24:24 +0000
committerEli Friedman <eli.friedman@gmail.com>2011-04-30 19:24:24 +0000
commit786d087ebd8d6df6f2ca53b02fccd95a601d9e60 (patch)
tree1215c42f9b76a22d0e9a7c17a4dbb04305d689f9 /clang/lib/AST/ASTContext.cpp
parent38a0b94dceb6c8a4ae06961b42310ee1026b3192 (diff)
downloadbcm5719-llvm-786d087ebd8d6df6f2ca53b02fccd95a601d9e60.tar.gz
bcm5719-llvm-786d087ebd8d6df6f2ca53b02fccd95a601d9e60.zip
PR9792: Make sure to use the right definition of wchar_t when the default
wchar_t is an unsigned type. llvm-svn: 130620
Diffstat (limited to 'clang/lib/AST/ASTContext.cpp')
-rw-r--r--clang/lib/AST/ASTContext.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/AST/ASTContext.cpp b/clang/lib/AST/ASTContext.cpp
index 13c40f7ca1d..de8c26bd70c 100644
--- a/clang/lib/AST/ASTContext.cpp
+++ b/clang/lib/AST/ASTContext.cpp
@@ -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);
OpenPOWER on IntegriCloud