From: Lang Hames Date: Tue, 14 Feb 2012 03:04:29 +0000 (+0000) Subject: Use convenience function for consistency. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=cd339b71ff23327f2ef6a4c964ff3ceea20733bf;p=oota-llvm.git Use convenience function for consistency. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@150457 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/CodeGen/LiveIntervalAnalysis.cpp b/lib/CodeGen/LiveIntervalAnalysis.cpp index 64bbf1e7816..72f4eb7d646 100644 --- a/lib/CodeGen/LiveIntervalAnalysis.cpp +++ b/lib/CodeGen/LiveIntervalAnalysis.cpp @@ -994,8 +994,7 @@ unsigned LiveIntervals::getReMatImplicitUse(const LiveInterval &li, if (Reg == 0 || Reg == li.reg) continue; - if (TargetRegisterInfo::isPhysicalRegister(Reg) && - !allocatableRegs_[Reg]) + if (TargetRegisterInfo::isPhysicalRegister(Reg) && !isAllocatable(Reg)) continue; RegOp = MO.getReg(); break; // Found vreg operand - leave the loop.