diff options
author | Chris Lattner <sabre@nondot.org> | 2009-10-21 04:59:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-10-21 04:59:34 +0000 |
commit | 6720492c394bb1f53e2298ec7f3e4d52aece945f (patch) | |
tree | b21c922cf1a40743942e271c6706e6baf5d1e4fc /clang/lib/Basic | |
parent | 8ed7bef4096ac58a9bbd534d13b93b15f73e94fb (diff) | |
download | bcm5719-llvm-6720492c394bb1f53e2298ec7f3e4d52aece945f.tar.gz bcm5719-llvm-6720492c394bb1f53e2298ec7f3e4d52aece945f.zip |
hookize wint_t's definition, patch by Edward O'Callaghan (from PR5233).
llvm-svn: 84740
Diffstat (limited to 'clang/lib/Basic')
-rw-r--r-- | clang/lib/Basic/TargetInfo.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Basic/TargetInfo.cpp b/clang/lib/Basic/TargetInfo.cpp index 9cd12493e7a..f9e789c36d5 100644 --- a/clang/lib/Basic/TargetInfo.cpp +++ b/clang/lib/Basic/TargetInfo.cpp @@ -43,6 +43,7 @@ TargetInfo::TargetInfo(const std::string &T) : Triple(T) { UIntMaxType = UnsignedLongLong; IntPtrType = SignedLong; WCharType = SignedInt; + WIntType = SignedInt; Char16Type = UnsignedShort; Char32Type = UnsignedInt; Int64Type = SignedLongLong; |