diff options
author | Ken Dyck <ken.dyck@onsemi.com> | 2009-11-19 12:15:31 +0000 |
---|---|---|
committer | Ken Dyck <ken.dyck@onsemi.com> | 2009-11-19 12:15:31 +0000 |
commit | cc11129fda92d160872b137a5ccda873063dd50c (patch) | |
tree | 4ef886e3cea5b280cba1cbb03a2c34e74820d4f9 /clang/lib/Frontend/InitPreprocessor.cpp | |
parent | ba993b8add3ec6b6292ebbd26bf6947750d6098a (diff) | |
download | bcm5719-llvm-cc11129fda92d160872b137a5ccda873063dd50c.tar.gz bcm5719-llvm-cc11129fda92d160872b137a5ccda873063dd50c.zip |
Remove __INTPTR_TYPE__ as it is no longer needed by stdint.h, which uses
__INTPTR_WIDTH__ instead.
llvm-svn: 89340
Diffstat (limited to 'clang/lib/Frontend/InitPreprocessor.cpp')
-rw-r--r-- | clang/lib/Frontend/InitPreprocessor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/clang/lib/Frontend/InitPreprocessor.cpp b/clang/lib/Frontend/InitPreprocessor.cpp index b77c24093f5..03d3a0039eb 100644 --- a/clang/lib/Frontend/InitPreprocessor.cpp +++ b/clang/lib/Frontend/InitPreprocessor.cpp @@ -390,7 +390,6 @@ static void InitializePredefinedMacros(const TargetInfo &TI, DefineTypeWidth("__INTMAX_WIDTH__", TI.getIntMaxType(), TI, Buf); DefineType("__PTRDIFF_TYPE__", TI.getPtrDiffType(0), Buf); - DefineType("__INTPTR_TYPE__", TI.getIntPtrType(), Buf); DefineTypeWidth("__INTPTR_WIDTH__", TI.getIntPtrType(), TI, Buf); DefineType("__SIZE_TYPE__", TI.getSizeType(), Buf); DefineType("__WCHAR_TYPE__", TI.getWCharType(), Buf); |