diff options
author | Jim Laskey <jlaskey@mac.com> | 2005-08-15 17:35:26 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2005-08-15 17:35:26 +0000 |
commit | ea0617a0235d0413a52d08e406a675e84eabe341 (patch) | |
tree | 090ee8d48033f402c8b9b4b7f5aed0d4b07faa12 | |
parent | 30679e691db00a613e90ef01416aab2d4b371c0c (diff) |
Broke 80 column rule.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22792 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/PowerPC/PPCISelPattern.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/Target/PowerPC/PPCISelPattern.cpp b/lib/Target/PowerPC/PPCISelPattern.cpp index f632d0ebf0..9906446905 100644 --- a/lib/Target/PowerPC/PPCISelPattern.cpp +++ b/lib/Target/PowerPC/PPCISelPattern.cpp @@ -2303,6 +2303,7 @@ unsigned ISel::SelectExpr(SDOperand N, bool Recording) { int FrameIdx = BB->getParent()->getFrameInfo()->CreateStackObject(8, 8); MachineConstantPool *CP = BB->getParent()->getConstantPool(); + Opc = DestType == MVT::f64 ? PPC::FSUB : PPC::FSUBS; if (IsUnsigned) { unsigned ConstF = getConstDouble(0x1.000000p52); @@ -2312,7 +2313,7 @@ unsigned ISel::SelectExpr(SDOperand N, bool Recording) { addFrameReference(BuildMI(BB, PPC::STW, 3).addReg(Tmp1), FrameIdx, 4); addFrameReference(BuildMI(BB, PPC::LFD, 2, Tmp2), FrameIdx); // Generate the return value with a subtract - BuildMI(BB, DestType == MVT::f64 ? PPC::FSUB : PPC::FSUBS, 2, Result).addReg(Tmp2).addReg(ConstF); + BuildMI(BB, Opc, 2, Result).addReg(Tmp2).addReg(ConstF); } else { unsigned ConstF = getConstDouble(0x1.000008p52); unsigned TmpL = MakeIntReg(); @@ -2323,7 +2324,7 @@ unsigned ISel::SelectExpr(SDOperand N, bool Recording) { addFrameReference(BuildMI(BB, PPC::STW, 3).addReg(TmpL), FrameIdx, 4); addFrameReference(BuildMI(BB, PPC::LFD, 2, Tmp2), FrameIdx); // Generate the return value with a subtract - BuildMI(BB, DestType == MVT::f64 ? PPC::FSUB : PPC::FSUBS, 2, Result).addReg(Tmp2).addReg(ConstF); + BuildMI(BB, Opc, 2, Result).addReg(Tmp2).addReg(ConstF); } return Result; } |