Fix typo
[oota-llvm.git] / lib / CodeGen / SelectionDAG / DAGCombiner.cpp
index d338ac81ed5c513890cb6c878280143280111074..cd528c5a32ab02461e60713383174c64777a5513 100644 (file)
@@ -5814,7 +5814,7 @@ SDValue DAGCombiner::visitFADD(SDNode *N) {
                          N0.getOperand(0), N0.getOperand(1), N1);
     }
 
-    // fold (fadd x, (fmul y, z)) -> (fma x, y, z)
+    // fold (fadd x, (fmul y, z)) -> (fma y, z, x)
     // Note: Commutes FADD operands.
     if (N1.getOpcode() == ISD::FMUL && N1->hasOneUse()) {
       return DAG.getNode(ISD::FMA, N->getDebugLoc(), VT,