aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorFariborz Jahanian <fjahanian@apple.com>2010-11-09 02:24:08 +0000
committerFariborz Jahanian <fjahanian@apple.com>2010-11-09 02:24:08 +0000
commitc8c62c4075688b206dc9ac2c5b24a362018b718b (patch)
tree41d009d8edc0db706493ce6f02512020423d5167 /lib
parent24fce281e3bc2f7ef78e8a57ff485a99954f81a7 (diff)
Reverse patch for // rdar://8632525. It might
has broken a build. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@118475 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/AST/ASTContext.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/AST/ASTContext.cpp b/lib/AST/ASTContext.cpp
index 26e53ca57a..b2451a2d86 100644
--- a/lib/AST/ASTContext.cpp
+++ b/lib/AST/ASTContext.cpp
@@ -5384,12 +5384,6 @@ static QualType DecodeTypeFromStr(const char *&Str, ASTContext &Context,
case 'F':
Type = Context.getCFConstantStringType();
break;
- case 'G':
- Type = Context.getObjCIdType();
- break;
- case 'H':
- Type = Context.getObjCSelType();
- break;
case 'a':
Type = Context.getBuiltinVaListType();
assert(!Type.isNull() && "builtin va list type not initialized!");