diff options
Diffstat (limited to 'llvm/lib/Target/TargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/TargetMachine.cpp | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/llvm/lib/Target/TargetMachine.cpp b/llvm/lib/Target/TargetMachine.cpp index ef0341dc917..1bd99eac7dc 100644 --- a/llvm/lib/Target/TargetMachine.cpp +++ b/llvm/lib/Target/TargetMachine.cpp @@ -200,9 +200,8 @@ void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name, return; } SectionKind GVKind = TargetLoweringObjectFile::getKindForGlobal(GV, *this); - const TargetLoweringObjectFile &TLOF = - getSubtargetImpl()->getTargetLowering()->getObjFileLowering(); - const MCSection *TheSection = TLOF.SectionForGlobal(GV, GVKind, Mang, *this); + const TargetLoweringObjectFile *TLOF = getObjFileLowering(); + const MCSection *TheSection = TLOF->SectionForGlobal(GV, GVKind, Mang, *this); bool CannotUsePrivateLabel = !canUsePrivateLabel(*AsmInfo, *TheSection); Mang.getNameWithPrefix(Name, GV, CannotUsePrivateLabel); } @@ -210,7 +209,6 @@ void TargetMachine::getNameWithPrefix(SmallVectorImpl<char> &Name, MCSymbol *TargetMachine::getSymbol(const GlobalValue *GV, Mangler &Mang) const { SmallString<60> NameStr; getNameWithPrefix(NameStr, GV, Mang); - const TargetLoweringObjectFile &TLOF = - getSubtargetImpl()->getTargetLowering()->getObjFileLowering(); - return TLOF.getContext().GetOrCreateSymbol(NameStr.str()); + const TargetLoweringObjectFile *TLOF = getObjFileLowering(); + return TLOF->getContext().GetOrCreateSymbol(NameStr.str()); } |