diff options
author | David Blaikie <dblaikie@gmail.com> | 2014-07-21 20:45:59 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2014-07-21 20:45:59 +0000 |
commit | 26f2268cc52069c170ff6b2583e6f2f376fa5d74 (patch) | |
tree | d1db5f8d369f9ae3f4a12036b39bd4f8591eb32f /llvm/lib/CodeGen/LiveDebugVariables.h | |
parent | 9c4c3c58cbf8e739a6917d522b8980d9e6fb36b7 (diff) | |
download | bcm5719-llvm-26f2268cc52069c170ff6b2583e6f2f376fa5d74.tar.gz bcm5719-llvm-26f2268cc52069c170ff6b2583e6f2f376fa5d74.zip |
Revert "Recommit r212203: Don't try to construct debug LexicalScopes hierarchy for functions that do not have top level debug information."
This reverts commit r212649 while I investigate/reduce/etc PR20367.
llvm-svn: 213581
Diffstat (limited to 'llvm/lib/CodeGen/LiveDebugVariables.h')
-rw-r--r-- | llvm/lib/CodeGen/LiveDebugVariables.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/CodeGen/LiveDebugVariables.h b/llvm/lib/CodeGen/LiveDebugVariables.h index 7ec0d17e42d..bb6743547e3 100644 --- a/llvm/lib/CodeGen/LiveDebugVariables.h +++ b/llvm/lib/CodeGen/LiveDebugVariables.h @@ -22,7 +22,6 @@ #define LLVM_CODEGEN_LIVEDEBUGVARIABLES_H #include "llvm/ADT/ArrayRef.h" -#include "llvm/IR/DebugInfo.h" #include "llvm/CodeGen/MachineFunctionPass.h" namespace llvm { @@ -33,7 +32,6 @@ class VirtRegMap; class LiveDebugVariables : public MachineFunctionPass { void *pImpl; - DenseMap<const Function*, DISubprogram> FunctionDIs; public: static char ID; // Pass identification, replacement for typeid @@ -66,7 +64,6 @@ private: bool runOnMachineFunction(MachineFunction &) override; void releaseMemory() override; void getAnalysisUsage(AnalysisUsage &) const override; - bool doInitialization(Module &) override; }; |