diff options
author | Douglas Gregor <dgregor@apple.com> | 2011-11-29 22:42:06 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2011-11-29 22:42:06 +0000 |
commit | 6649014b792f8a4b1bc1e8be8f844a72220af508 (patch) | |
tree | 97d6d7a51fa9ed2702193fe919d602942487c266 /lib/Frontend/CompilerInvocation.cpp | |
parent | 36ef7029ea437c216f0bde2a0d4817d8b15e47b2 (diff) |
Eliminate the -emit-module option, which emitted a module by parsing a
source file (e.g., a header). Immediately steal this useful option
name for building modules from a module map file.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@145444 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | lib/Frontend/CompilerInvocation.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Frontend/CompilerInvocation.cpp b/lib/Frontend/CompilerInvocation.cpp index 4977b4f30a..6b5c8cf5b5 100644 --- a/lib/Frontend/CompilerInvocation.cpp +++ b/lib/Frontend/CompilerInvocation.cpp @@ -409,7 +409,6 @@ static const char *getActionName(frontend::ActionKind Kind) { case frontend::EmitObj: return "-emit-obj"; case frontend::FixIt: return "-fixit"; case frontend::GenerateModule: return "-emit-module"; - case frontend::GenerateModuleFromMap: return "-emit-module-from-map"; case frontend::GeneratePCH: return "-emit-pch"; case frontend::GeneratePTH: return "-emit-pth"; case frontend::InitOnly: return "-init-only"; @@ -1274,8 +1273,6 @@ static InputKind ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args, Opts.ProgramAction = frontend::FixIt; break; case OPT_emit_module: Opts.ProgramAction = frontend::GenerateModule; break; - case OPT_emit_module_from_map: - Opts.ProgramAction = frontend::GenerateModuleFromMap; break; case OPT_emit_pch: Opts.ProgramAction = frontend::GeneratePCH; break; case OPT_emit_pth: |