diff options
| author | Jim Laskey <jlaskey@mac.com> | 2007-01-26 21:22:28 +0000 |
|---|---|---|
| committer | Jim Laskey <jlaskey@mac.com> | 2007-01-26 21:22:28 +0000 |
| commit | c56315c2b538fb5f95178254fe8a4f10578487c4 (patch) | |
| tree | 5935e37c5d5ce7b31f395b025ee42da0766ae0a5 /llvm/lib/CodeGen/AsmPrinter.cpp | |
| parent | d45cd5eb812e35fbf9c7003fade2a6747ac4d652 (diff) | |
| download | bcm5719-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.cpp | 4 |
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; |

