diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2020-02-12 11:54:29 +0100 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2020-02-12 11:59:04 +0100 |
commit | 97ed706a962af7c6835c7b6716207c4072011ac1 (patch) | |
tree | 8117097319d7db31d77b6443ffad8fe70bc47a1d /llvm/lib/CodeGen/LiveDebugValues.cpp | |
parent | 740bc366d44ccd41161739bc1d4b447cd49aba65 (diff) | |
download | llvm-97ed706a962af7c6835c7b6716207c4072011ac1.zip llvm-97ed706a962af7c6835c7b6716207c4072011ac1.tar.gz llvm-97ed706a962af7c6835c7b6716207c4072011ac1.tar.bz2 |
Revert "[DebugInfo] Enable the debug entry values feature by default"
This reverts commit rG9f6ff07f8a39.
Found a test failure on clang-with-thin-lto-ubuntu buildbot.
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 a07fd40..6acaf409 100644 --- a/llvm/lib/CodeGen/LiveDebugValues.cpp +++ b/llvm/lib/CodeGen/LiveDebugValues.cpp @@ -960,7 +960,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); } } @@ -1460,7 +1460,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; } |