diff options
author | Chris Lattner <sabre@nondot.org> | 2009-04-08 20:57:44 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-04-08 20:57:44 +0000 |
commit | 9b2ce37922ef34061cf0c193af7ce295a77d9298 (patch) | |
tree | a49a84cf6ec34ca291993e8a51acaa366ea09914 | |
parent | fd10511b3e686c5b045f8324b0632f3624d9ef05 (diff) |
implement -imacros support in driver.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68641 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/clang/Driver/Options.def | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clang/Driver/Options.def b/include/clang/Driver/Options.def index 1421b6e1f0..36bbfbc6f5 100644 --- a/include/clang/Driver/Options.def +++ b/include/clang/Driver/Options.def @@ -519,7 +519,7 @@ OPTION("-g", g_Flag, Flag, g_Group, INVALID, "", 0, 0, 0) OPTION("-g", g_Joined, Joined, g_Group, INVALID, "", 0, 0, 0) OPTION("-headerpad_max_install_names", headerpad__max__install__names, Joined, INVALID, INVALID, "", 0, 0, 0) OPTION("-idirafter", idirafter, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0) -OPTION("-imacros", imacros, JoinedOrSeparate, i_Group, INVALID, "", 0, 0, 0) +OPTION("-imacros", imacros, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0) OPTION("-image_base", image__base, Separate, INVALID, INVALID, "", 0, 0, 0) OPTION("-include", include, JoinedOrSeparate, clang_i_Group, INVALID, "", 0, 0, 0) OPTION("-init", init, Separate, INVALID, INVALID, "", 0, 0, 0) |