[llvm] r176412 - Clean up code format a bit.
Jim Grosbach
grosbach at apple.com
Sat Mar 2 12:16:19 PST 2013
Author: grosbach
Date: Sat Mar 2 14:16:19 2013
New Revision: 176412
URL: http://llvm.org/viewvc/llvm-project?rev=176412&view=rev
Log:
Clean up code format a bit.
Modified:
llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp
Modified: llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp?rev=176412&r1=176411&r2=176412&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMISelLowering.cpp Sat Mar 2 14:16:19 2013
@@ -4468,12 +4468,10 @@ SDValue ARMTargetLowering::LowerBUILD_VE
DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VT, DAG.getUNDEF(VT),
Value, DAG.getConstant(index, MVT::i32)),
DAG.getConstant(index, MVT::i32));
- } else {
+ } else
N = DAG.getNode(ARMISD::VDUPLANE, dl, VT,
Value->getOperand(0), Value->getOperand(1));
- }
- }
- else
+ } else
N = DAG.getNode(ARMISD::VDUP, dl, VT, Value);
if (!usesOnlyOneValue) {
More information about the llvm-commits
mailing list