mirror of
https://github.com/RPCSX/llvm.git
synced 2024-11-30 23:20:54 +00:00
Tidy up some calls to getRegister for readability.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@305626 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cd03942492
commit
7eaaf7b8d0
@ -2560,8 +2560,9 @@ SDValue PPCTargetLowering::LowerGlobalTLSAddress(SDValue Op,
|
||||
PPCII::MO_TPREL_HA);
|
||||
SDValue TGALo = DAG.getTargetGlobalAddress(GV, dl, PtrVT, 0,
|
||||
PPCII::MO_TPREL_LO);
|
||||
SDValue TLSReg = DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
|
||||
is64bit ? MVT::i64 : MVT::i32);
|
||||
SDValue TLSReg = is64bit ? DAG.getRegister(PPC::X13, MVT::i64)
|
||||
: DAG.getRegister(PPC::R2, MVT::i32);
|
||||
|
||||
SDValue Hi = DAG.getNode(PPCISD::Hi, dl, PtrVT, TGAHi, TLSReg);
|
||||
return DAG.getNode(PPCISD::Lo, dl, PtrVT, TGALo, Hi);
|
||||
}
|
||||
@ -8377,9 +8378,9 @@ SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op,
|
||||
|
||||
if (IntrinsicID == Intrinsic::thread_pointer) {
|
||||
// Reads the thread pointer register, used for __builtin_thread_pointer.
|
||||
bool is64bit = Subtarget.isPPC64();
|
||||
return DAG.getRegister(is64bit ? PPC::X13 : PPC::R2,
|
||||
is64bit ? MVT::i64 : MVT::i32);
|
||||
if (Subtarget.isPPC64())
|
||||
return DAG.getRegister(PPC::X13, MVT::i64);
|
||||
return DAG.getRegister(PPC::R2, MVT::i32);
|
||||
}
|
||||
|
||||
// If this is a lowered altivec predicate compare, CompareOpc is set to the
|
||||
|
Loading…
Reference in New Issue
Block a user