diff options
author | Chris Lattner <sabre@nondot.org> | 2008-11-20 05:41:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2008-11-20 05:41:43 +0000 |
commit | 2bac0f6b3724734d7bb7bf8231bd8511cb49570f (patch) | |
tree | 2ca9c5e8c5c474acd2b63537f3357d6862cfb749 /lib/Sema/Sema.cpp | |
parent | 8469265156c6344fa1100a6a7bf6349acc187d9f (diff) |
remove some other identifiers that are looked up really early and only
used in one cold place.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@59709 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Sema/Sema.cpp')
-rw-r--r-- | lib/Sema/Sema.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/Sema/Sema.cpp b/lib/Sema/Sema.cpp index dcb3af31b0..2b33bf4046 100644 --- a/lib/Sema/Sema.cpp +++ b/lib/Sema/Sema.cpp @@ -103,12 +103,6 @@ Sema::Sema(Preprocessor &pp, ASTContext &ctxt, ASTConsumer &consumer) KnownFunctionIDs[id_vsnprintf_chk] = &IT.get("__builtin___vsnprintf_chk"); KnownFunctionIDs[id_vprintf] = &IT.get("vprintf"); - // ObjC builtin typedef names. - Ident_id = &IT.get("id"); - Ident_Class = &IT.get("Class"); - Ident_SEL = &IT.get("SEL"); - Ident_Protocol = &IT.get("Protocol"); - Ident_StdNs = &IT.get("std"); Ident_TypeInfo = 0; StdNamespace = 0; |