diff options
author | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-16 18:17:11 +0000 |
---|---|---|
committer | Sebastian Redl <sebastian.redl@getdesigned.at> | 2010-08-16 18:17:11 +0000 |
commit | 6ebb51a41d47e8743a5eae47e7fdf23aa34068aa (patch) | |
tree | 758e3da0718052eda4af91ae62695896a622a46a /clang/lib/Frontend/ExecuteCompilerInvocation.cpp | |
parent | b61c07aca03841b461bc8f9b44c93be9abc0c640 (diff) | |
download | llvm-6ebb51a41d47e8743a5eae47e7fdf23aa34068aa.zip llvm-6ebb51a41d47e8743a5eae47e7fdf23aa34068aa.tar.gz llvm-6ebb51a41d47e8743a5eae47e7fdf23aa34068aa.tar.bz2 |
Add two options for playing with modules.
llvm-svn: 111166
Diffstat (limited to 'clang/lib/Frontend/ExecuteCompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/ExecuteCompilerInvocation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/clang/lib/Frontend/ExecuteCompilerInvocation.cpp b/clang/lib/Frontend/ExecuteCompilerInvocation.cpp index c69d844..b432e8f 100644 --- a/clang/lib/Frontend/ExecuteCompilerInvocation.cpp +++ b/clang/lib/Frontend/ExecuteCompilerInvocation.cpp @@ -39,6 +39,7 @@ static FrontendAction *CreateFrontendBaseAction(CompilerInstance &CI) { case ASTPrintXML: return new ASTPrintXMLAction(); case ASTView: return new ASTViewAction(); case BoostCon: return new BoostConAction(); + case CreateModule: return 0; case DumpRawTokens: return new DumpRawTokensAction(); case DumpTokens: return new DumpTokensAction(); case EmitAssembly: return new EmitAssemblyAction(); |