From a0485f5b9f75b2796d2abf04b6782ff54ce330a5 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Fri, 13 Mar 2015 00:49:50 +0000 Subject: [PATCH] Use the cached subtarget off of the machine function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232129 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/CodeGen/StackMaps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/CodeGen/StackMaps.cpp b/lib/CodeGen/StackMaps.cpp index 5d4641956b4..6422f1fe418 100644 --- a/lib/CodeGen/StackMaps.cpp +++ b/lib/CodeGen/StackMaps.cpp @@ -123,7 +123,7 @@ StackMaps::parseOperand(MachineInstr::const_mop_iterator MOI, assert(TargetRegisterInfo::isPhysicalRegister(MOI->getReg()) && "Virtreg operands should have been rewritten before now."); const TargetRegisterClass *RC = - AP.TM.getSubtargetImpl()->getRegisterInfo()->getMinimalPhysRegClass( + AP.MF->getSubtarget().getRegisterInfo()->getMinimalPhysRegClass( MOI->getReg()); assert(!MOI->getSubReg() && "Physical subreg still around."); Locs.push_back( -- 2.34.1