diff options
author | George Rimar <grimar@accesssoftek.com> | 2017-07-26 09:10:17 +0000 |
---|---|---|
committer | George Rimar <grimar@accesssoftek.com> | 2017-07-26 09:10:17 +0000 |
commit | 5dbfa4e65b9eb907fbf1f25cf1ff8374171f414c (patch) | |
tree | 81375ffa514b56c8e7aedc8728eab6decce2c964 /clang/lib | |
parent | 4530dffbc7617b97b328550db373862e1d3a85c2 (diff) | |
download | bcm5719-llvm-5dbfa4e65b9eb907fbf1f25cf1ff8374171f414c.tar.gz bcm5719-llvm-5dbfa4e65b9eb907fbf1f25cf1ff8374171f414c.zip |
Update after LLVM change r309087
llvm-svn: 309088
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/Driver/Driver.cpp | 3 | ||||
-rw-r--r-- | clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index 361d45f90ad..b8cb16f2f66 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -1124,7 +1124,8 @@ void Driver::PrintHelp(bool ShowHidden) const { ExcludedFlagsBitmask |= HelpHidden; getOpts().PrintHelp(llvm::outs(), Name.c_str(), DriverTitle.c_str(), - IncludedFlagsBitmask, ExcludedFlagsBitmask); + IncludedFlagsBitmask, ExcludedFlagsBitmask, + /*ShowAllAliases=*/false); } void Driver::PrintVersion(const Compilation &C, raw_ostream &OS) const { diff --git a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp index 16663155880..f35769c965e 100644 --- a/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp +++ b/clang/lib/FrontendTool/ExecuteCompilerInvocation.cpp @@ -179,7 +179,8 @@ bool clang::ExecuteCompilerInvocation(CompilerInstance *Clang) { std::unique_ptr<OptTable> Opts = driver::createDriverOptTable(); Opts->PrintHelp(llvm::outs(), "clang -cc1", "LLVM 'Clang' Compiler: http://clang.llvm.org", - /*Include=*/ driver::options::CC1Option, /*Exclude=*/ 0); + /*Include=*/driver::options::CC1Option, + /*Exclude=*/0, /*ShowAllAliases=*/false); return true; } |