Move class and instruction definitions for conditional moves to a seperate file.
[oota-llvm.git] / lib / Target / XCore / XCoreISelLowering.cpp
index 42dfdb7355474cf6cc9483173cdf0fc7cac89205..2afe0e35afb1b282a5f2e901319ff845915710ad 100644 (file)
@@ -1415,7 +1415,8 @@ SDValue XCoreTargetLowering::PerformDAGCombine(SDNode *N,
     // operands are constant canonicalize smallest to RHS.
     if ((N0C && !N1C) ||
         (N0C && N1C && N0C->getZExtValue() < N1C->getZExtValue()))
-      return DAG.getNode(XCoreISD::LMUL, dl, DAG.getVTList(VT, VT), N1, N0, N2, N3);
+      return DAG.getNode(XCoreISD::LMUL, dl, DAG.getVTList(VT, VT),
+                         N1, N0, N2, N3);
 
     // lmul(x, 0, a, b)
     if (N1C && N1C->isNullValue()) {