diff options
author | Devang Patel <dpatel@apple.com> | 2009-01-13 23:54:55 +0000 |
---|---|---|
committer | Devang Patel <dpatel@apple.com> | 2009-01-13 23:54:55 +0000 |
commit | bbdc8207d587026212e176026d3e37ae043a6661 (patch) | |
tree | 9dc467be318c64224d31d6e5599355f971ddd7a3 /lib/CodeGen/SelectionDAG/SelectionDAG.cpp | |
parent | bb6382e32d2bb1c9228e4bef633d5be81b504f5b (diff) |
Removoe MachineModuleInfo methods (and related DebugInfoDesc class hierarchy) that were used to handle debug info.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@62199 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/SelectionDAG.cpp')
-rw-r--r-- | lib/CodeGen/SelectionDAG/SelectionDAG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp index 324b07025e..34f33b0bcc 100644 --- a/lib/CodeGen/SelectionDAG/SelectionDAG.cpp +++ b/lib/CodeGen/SelectionDAG/SelectionDAG.cpp @@ -2041,7 +2041,7 @@ bool SelectionDAG::isVerifiedDebugInfoDesc(SDValue Op) const { GlobalVariable *GV = dyn_cast<GlobalVariable>(GA->getGlobal()); if (!GV) return false; MachineModuleInfo *MMI = getMachineModuleInfo(); - return MMI && MMI->hasDebugInfo() && MMI->isVerified(GV); + return MMI && MMI->hasDebugInfo(); } |