From: Brian Gaeke Date: Thu, 3 Jun 2004 05:03:01 +0000 (+0000) Subject: Add new mapping info pass, when EmitMappingInfo is on. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=582159569334c101fbc73c4735bfae817daccc91;p=oota-llvm.git Add new mapping info pass, when EmitMappingInfo is on. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13981 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index c088317cbda..4c92105bfe5 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp @@ -179,8 +179,10 @@ SparcV9TargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out if (!DisablePeephole) PM.add(createPeepholeOptsPass(*this)); - if (EmitMappingInfo) - PM.add(getMappingInfoAsmPrinterPass(Out)); + if (EmitMappingInfo) { + PM.add(createInternalGlobalMapperPass()); + PM.add(getMappingInfoAsmPrinterPass(Out)); + } // Output assembly language to the .s file. Assembly emission is split into // two parts: Function output and Global value output. This is because