diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-08 18:24:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-08 18:24:34 +0000 |
commit | b8e240ed8b8f58c7b7fe82776bd6147b437f5d53 (patch) | |
tree | a4e1a73dfe2a2a3531ad86e960e52f4d4c483995 /lib/Basic/IdentifierTable.cpp | |
parent | 3bbc75302fd43cf13d868b46c94ff8794b302e43 (diff) |
Add initial support for -imacros. Right now it has the same semantics as
-include, but that will be fixed soon.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68625 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Basic/IdentifierTable.cpp')
-rw-r--r-- | lib/Basic/IdentifierTable.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Basic/IdentifierTable.cpp b/lib/Basic/IdentifierTable.cpp index c002b3f110..78758d7188 100644 --- a/lib/Basic/IdentifierTable.cpp +++ b/lib/Basic/IdentifierTable.cpp @@ -207,6 +207,8 @@ tok::PPKeywordKind IdentifierInfo::getPPKeywordID() const { CASE( 8, 'u', 'a', unassert); CASE(12, 'i', 'c', include_next); + + CASE(16, '_', 'i', __include_macros); #undef CASE #undef HASH } |