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 | 5507159245117270229b66dfa018afbab446be4e (patch) | |
| tree | c45061907762c1378d63c069a751e335d20af42b /clang/lib/Frontend | |
| parent | 9cb1fc034bcb1fc88c5ec65eb1fa9644b38eae7d (diff) | |
| download | bcm5719-llvm-5507159245117270229b66dfa018afbab446be4e.tar.gz bcm5719-llvm-5507159245117270229b66dfa018afbab446be4e.zip  | |
Remove __WCHAR_UNSIGNED__ and anything that used it.
llvm-svn: 140155
Diffstat (limited to 'clang/lib/Frontend')
| -rw-r--r-- | clang/lib/Frontend/InitPreprocessor.cpp | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/clang/lib/Frontend/InitPreprocessor.cpp b/clang/lib/Frontend/InitPreprocessor.cpp index 0f6e40ad28c..ae3152a5b06 100644 --- a/clang/lib/Frontend/InitPreprocessor.cpp +++ b/clang/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");  | 

