diff options
author | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2020-02-18 16:37:16 +0100 |
---|---|---|
committer | Djordje Todorovic <djordje.todorovic@rt-rk.com> | 2020-02-18 16:38:11 +0100 |
commit | 2bf44d11cb42a952bdeb778210d8b3e737f0b96e (patch) | |
tree | 1bf5d067e5d31cd083b875299a5707e52ac98dda /llvm/lib/CodeGen/TargetOptionsImpl.cpp | |
parent | 498a6136a271bfb95bcd9488d1036e57a5e0fae0 (diff) | |
download | llvm-2bf44d11cb42a952bdeb778210d8b3e737f0b96e.zip llvm-2bf44d11cb42a952bdeb778210d8b3e737f0b96e.tar.gz llvm-2bf44d11cb42a952bdeb778210d8b3e737f0b96e.tar.bz2 |
Revert "Reland "[DebugInfo] Enable the debug entry values feature by default""
This reverts commit rGa82d3e8a6e67.
Diffstat (limited to 'llvm/lib/CodeGen/TargetOptionsImpl.cpp')
-rw-r--r-- | llvm/lib/CodeGen/TargetOptionsImpl.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/lib/CodeGen/TargetOptionsImpl.cpp b/llvm/lib/CodeGen/TargetOptionsImpl.cpp index 3db0f2f..d794a26 100644 --- a/llvm/lib/CodeGen/TargetOptionsImpl.cpp +++ b/llvm/lib/CodeGen/TargetOptionsImpl.cpp @@ -45,11 +45,3 @@ bool TargetOptions::DisableFramePointerElim(const MachineFunction &MF) const { bool TargetOptions::HonorSignDependentRoundingFPMath() const { return !UnsafeFPMath && HonorSignDependentRoundingFPMathOption; } - -/// NOTE: There are targets that still do not support the call site info -/// production (the info about the arguments passed to the call, necessary -/// for the debug entry values), so we keep using the experimental option -/// (-debug-entry-values) to test them as well. -bool TargetOptions::ShouldEmitDebugEntryValues() const { - return SupportsDebugEntryValues || EnableDebugEntryValues; -} |