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
diff --git a/lib/Basic/IdentifierTable.cpp b/lib/Basic/IdentifierTable.cpp
index c002b3f..78758d7 100644
--- a/lib/Basic/IdentifierTable.cpp
+++ b/lib/Basic/IdentifierTable.cpp
@@ -207,6 +207,8 @@
CASE( 8, 'u', 'a', unassert);
CASE(12, 'i', 'c', include_next);
+
+ CASE(16, '_', 'i', __include_macros);
#undef CASE
#undef HASH
}