summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter.cpp
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2007-01-26 21:22:28 +0000
committerJim Laskey <jlaskey@mac.com>2007-01-26 21:22:28 +0000
commitc56315c2b538fb5f95178254fe8a4f10578487c4 (patch)
tree5935e37c5d5ce7b31f395b025ee42da0766ae0a5 /llvm/lib/CodeGen/AsmPrinter.cpp
parentd45cd5eb812e35fbf9c7003fade2a6747ac4d652 (diff)
downloadbcm5719-llvm-c56315c2b538fb5f95178254fe8a4f10578487c4.tar.gz
bcm5719-llvm-c56315c2b538fb5f95178254fe8a4f10578487c4.zip
Change the MachineDebugInfo to MachineModuleInfo to better reflect usage
for debugging and exception handling. llvm-svn: 33550
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter.cpp')
-rw-r--r--llvm/lib/CodeGen/AsmPrinter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter.cpp
index e2935804fc9..27700ba319c 100644
--- a/llvm/lib/CodeGen/AsmPrinter.cpp
+++ b/llvm/lib/CodeGen/AsmPrinter.cpp
@@ -102,8 +102,8 @@ bool AsmPrinter::doInitialization(Module &M) {
SwitchToDataSection(""); // Reset back to no section.
- if (MachineDebugInfo *DebugInfo = getAnalysisToUpdate<MachineDebugInfo>()) {
- DebugInfo->AnalyzeModule(M);
+ if (MachineModuleInfo *MMI = getAnalysisToUpdate<MachineModuleInfo>()) {
+ MMI->AnalyzeModule(M);
}
return false;
OpenPOWER on IntegriCloud