diff options
author | Djordje Todorovic <djordje.todorovic@syrmia.com> | 2020-03-09 12:43:38 +0100 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@syrmia.com> | 2020-03-10 09:15:06 +0100 |
commit | 5aa5c943f7da155b95564058cd5d50a93eabfc89 (patch) | |
tree | 97a0feb4a8a57d8789c503bbe0ac38595e51b8d4 /llvm/lib/CodeGen/LiveDebugValues.cpp | |
parent | a72dc86cddd26921f12184032e27abcc3be427cb (diff) | |
download | llvm-5aa5c943f7da155b95564058cd5d50a93eabfc89.zip llvm-5aa5c943f7da155b95564058cd5d50a93eabfc89.tar.gz llvm-5aa5c943f7da155b95564058cd5d50a93eabfc89.tar.bz2 |
Reland "[DebugInfo] Enable the debug entry values feature by default"
Differential Revision: https://reviews.llvm.org/D73534
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 94c5cc5..a013c41 100644 --- a/llvm/lib/CodeGen/LiveDebugValues.cpp +++ b/llvm/lib/CodeGen/LiveDebugValues.cpp @@ -1125,7 +1125,7 @@ void LiveDebugValues::transferRegisterDef( if (auto *TPC = getAnalysisIfAvailable<TargetPassConfig>()) { auto &TM = TPC->getTM<TargetMachine>(); - if (TM.Options.EnableDebugEntryValues) + if (TM.Options.ShouldEmitDebugEntryValues()) emitEntryValues(MI, OpenRanges, VarLocIDs, Transfers, KillSet); } } @@ -1630,7 +1630,7 @@ void LiveDebugValues::recordEntryValue(const MachineInstr &MI, VarLocMap &VarLocIDs) { if (auto *TPC = getAnalysisIfAvailable<TargetPassConfig>()) { auto &TM = TPC->getTM<TargetMachine>(); - if (!TM.Options.EnableDebugEntryValues) + if (!TM.Options.ShouldEmitDebugEntryValues()) return; } |