diff options
author | Rong Xu <xur@google.com> | 2020-02-25 08:04:01 -0800 |
---|---|---|
committer | Hans Wennborg <hans@chromium.org> | 2020-02-26 11:55:29 +0100 |
commit | 6f4f4f2c8ce1ad17bdec9fe2071d3fe439eca9eb (patch) | |
tree | ac19e742ff9962077e4f53703ac7df846b93b610 /clang/lib/CodeGen/CodeGenAction.cpp | |
parent | 8b0df8e1ed6842095388fce08a0a5f761cd905ed (diff) | |
download | bcm5719-llvm-6f4f4f2c8ce1ad17bdec9fe2071d3fe439eca9eb.tar.gz bcm5719-llvm-6f4f4f2c8ce1ad17bdec9fe2071d3fe439eca9eb.zip |
[remark][diagnostics] [codegen] Fix PR44896
This patch fixes PR44896. For IR input files, option fdiscard-value-names
should be ignored as we need named values in loadModule().
Commit 60d3947922 sets this option after loadModule() where valued names
already created. This creates an inconsistent state in setNameImpl()
that leads to a seg fault.
This patch forces fdiscard-value-names to be false for IR input files.
This patch also emits a warning of "ignoring -fdiscard-value-names" if
option fdiscard-value-names is explictly enabled in the commandline for
IR input files.
Differential Revision: https://reviews.llvm.org/D74878
(cherry picked from commit 11857d49948b845dcfd7c7f78595095e3add012d)
Diffstat (limited to 'clang/lib/CodeGen/CodeGenAction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenAction.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/clang/lib/CodeGen/CodeGenAction.cpp b/clang/lib/CodeGen/CodeGenAction.cpp index 7065e78f19a..20ebaf3578d 100644 --- a/clang/lib/CodeGen/CodeGenAction.cpp +++ b/clang/lib/CodeGen/CodeGenAction.cpp @@ -1146,6 +1146,9 @@ void CodeGenAction::ExecuteAction() { CI.getTargetOpts(), CI.getLangOpts(), CI.getFrontendOpts().ShowTimers, std::move(LinkModules), *VMContext, nullptr); + // PR44896: Force DiscardValueNames as false. DiscardValueNames cannot be + // true here because the valued names are needed for reading textual IR. + Ctx.setDiscardValueNames(false); Ctx.setDiagnosticHandler( std::make_unique<ClangDiagnosticHandler>(CodeGenOpts, &Result)); |