diff options
author | Ben Langmuir <blangmuir@apple.com> | 2014-02-05 22:21:15 +0000 |
---|---|---|
committer | Ben Langmuir <blangmuir@apple.com> | 2014-02-05 22:21:15 +0000 |
commit | 2cb4a78f9394359e3bb74060774e2245bcb9f4b7 (patch) | |
tree | 712d0ddca4e53867a288b5597be5efec6029a1bf /clang/lib/Frontend/CompilerInvocation.cpp | |
parent | 87769713cf385f373f3bc1c28913045f49277d7f (diff) | |
download | bcm5719-llvm-2cb4a78f9394359e3bb74060774e2245bcb9f4b7.tar.gz bcm5719-llvm-2cb4a78f9394359e3bb74060774e2245bcb9f4b7.zip |
Add a CC1 option -verify-pch
This option will:
- load the given pch file
- verify it is not out of date by stat'ing dependencies, and
- return 0 on success and non-zero on error
llvm-svn: 200884
Diffstat (limited to 'clang/lib/Frontend/CompilerInvocation.cpp')
-rw-r--r-- | clang/lib/Frontend/CompilerInvocation.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/Frontend/CompilerInvocation.cpp b/clang/lib/Frontend/CompilerInvocation.cpp index 92202b7ee20..da58a0386e6 100644 --- a/clang/lib/Frontend/CompilerInvocation.cpp +++ b/clang/lib/Frontend/CompilerInvocation.cpp @@ -700,6 +700,8 @@ static InputKind ParseFrontendArgs(FrontendOptions &Opts, ArgList &Args, Opts.ProgramAction = frontend::ParseSyntaxOnly; break; case OPT_module_file_info: Opts.ProgramAction = frontend::ModuleFileInfo; break; + case OPT_verify_pch: + Opts.ProgramAction = frontend::VerifyPCH; break; case OPT_print_decl_contexts: Opts.ProgramAction = frontend::PrintDeclContext; break; case OPT_print_preamble: @@ -1585,6 +1587,7 @@ static void ParsePreprocessorOutputArgs(PreprocessorOutputOptions &Opts, case frontend::GeneratePTH: case frontend::ParseSyntaxOnly: case frontend::ModuleFileInfo: + case frontend::VerifyPCH: case frontend::PluginAction: case frontend::PrintDeclContext: case frontend::RewriteObjC: |