diff options
author | Chris Lattner <sabre@nondot.org> | 2010-03-14 22:44:11 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-03-14 22:44:11 +0000 |
commit | 9fa851b9d41a4f37e1a72b357a1b160ade8e3c1e (patch) | |
tree | 2c800479f8451b5ebc5736efdb67f0246b5df888 /llvm/lib/Target/PowerPC | |
parent | 402d6442c5eed19cabb7510894977654fc7a8e92 (diff) | |
download | bcm5719-llvm-9fa851b9d41a4f37e1a72b357a1b160ade8e3c1e.tar.gz bcm5719-llvm-9fa851b9d41a4f37e1a72b357a1b160ade8e3c1e.zip |
tidy indentation
llvm-svn: 98523
Diffstat (limited to 'llvm/lib/Target/PowerPC')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCISelLowering.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp index 106e779af87..344200f78d9 100644 --- a/llvm/lib/Target/PowerPC/PPCISelLowering.cpp +++ b/llvm/lib/Target/PowerPC/PPCISelLowering.cpp @@ -4217,7 +4217,7 @@ static bool getAltivecCompareInfo(SDValue Intrin, int &CompareOpc, /// LowerINTRINSIC_WO_CHAIN - If this is an intrinsic that we want to custom /// lower, do it, otherwise return null. SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, - SelectionDAG &DAG) { + SelectionDAG &DAG) { // If this is a lowered altivec predicate compare, CompareOpc is set to the // opcode number of the comparison. DebugLoc dl = Op.getDebugLoc(); @@ -4229,8 +4229,8 @@ SDValue PPCTargetLowering::LowerINTRINSIC_WO_CHAIN(SDValue Op, // If this is a non-dot comparison, make the VCMP node and we are done. if (!isDot) { SDValue Tmp = DAG.getNode(PPCISD::VCMP, dl, Op.getOperand(2).getValueType(), - Op.getOperand(1), Op.getOperand(2), - DAG.getConstant(CompareOpc, MVT::i32)); + Op.getOperand(1), Op.getOperand(2), + DAG.getConstant(CompareOpc, MVT::i32)); return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Tmp); } |