diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2020-02-20 13:43:01 +0100 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2020-02-20 14:41:39 +0100 |
commit | 2f215cf36adced6bf1abda4bdbbc6422c1369353 (patch) | |
tree | 5f62316a1d2e97a89a68e9f6a51a31309672bbf9 /llvm/lib/CodeGen/LiveDebugValues.cpp | |
parent | 9ea5d17cc9544838c73e593de4ef224d54fa1cff (diff) | |
download | llvm-2f215cf36adced6bf1abda4bdbbc6422c1369353.zip llvm-2f215cf36adced6bf1abda4bdbbc6422c1369353.tar.gz llvm-2f215cf36adced6bf1abda4bdbbc6422c1369353.tar.bz2 |
Revert "Reland "[DebugInfo] Enable the debug entry values feature by default""
This reverts commit rGfaff707db82d.
A failure found on an ARM 2-stage buildbot.
The investigation is needed.
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugValues.cpp')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugValues.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugValues.cpp b/llvm/lib/CodeGen/LiveDebugValues.cpp index 23a6369..259604a 100644 --- a/llvm/lib/CodeGen/LiveDebugValues.cpp +++ b/llvm/lib/CodeGen/LiveDebugValues.cpp @@ -984,7 +984,7 @@ void LiveDebugValues::transferRegisterDef( if (auto *TPC = getAnalysisIfAvailable<TargetPassConfig>()) { auto &TM = TPC->getTM<TargetMachine>(); - if (TM.Options.ShouldEmitDebugEntryValues()) + if (TM.Options.EnableDebugEntryValues) emitEntryValues(MI, OpenRanges, VarLocIDs, Transfers, KillSet); } } @@ -1484,7 +1484,7 @@ void LiveDebugValues::recordEntryValue(const MachineInstr &MI, VarLocMap &VarLocIDs) { if (auto *TPC = getAnalysisIfAvailable<TargetPassConfig>()) { auto &TM = TPC->getTM<TargetMachine>(); - if (!TM.Options.ShouldEmitDebugEntryValues()) + if (!TM.Options.EnableDebugEntryValues) return; } |