diff options
author | Eric Christopher <echristo@apple.com> | 2011-09-20 18:05:01 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-09-20 18:05:01 +0000 |
commit | 47fcd293a526e898437b8fe1696310ccf92dd8e5 (patch) | |
tree | 64e411574ca88a4d23d1383d69514d2388762de4 /lib/Frontend/InitPreprocessor.cpp | |
parent | 9859ea07b55727557a201e730caf01bcd6a7566a (diff) |
Remove __WCHAR_UNSIGNED__ and anything that used it.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@140155 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/InitPreprocessor.cpp')
-rw-r--r-- | lib/Frontend/InitPreprocessor.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Frontend/InitPreprocessor.cpp b/lib/Frontend/InitPreprocessor.cpp index 0f6e40ad28..ae3152a5b0 100644 --- a/lib/Frontend/InitPreprocessor.cpp +++ b/lib/Frontend/InitPreprocessor.cpp @@ -556,9 +556,6 @@ static void InitializePredefinedMacros(const TargetInfo &TI, 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"); |