[llvm] r309583 - Fix typo in comment.

Simon Pilgrim via llvm-commits llvm-commits at lists.llvm.org
Mon Jul 31 10:06:55 PDT 2017


Author: rksimon
Date: Mon Jul 31 10:06:55 2017
New Revision: 309583

URL: http://llvm.org/viewvc/llvm-project?rev=309583&view=rev
Log:
Fix typo in comment.

Modified:
    llvm/trunk/lib/Target/X86/X86ISelLowering.cpp

Modified: llvm/trunk/lib/Target/X86/X86ISelLowering.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86ISelLowering.cpp?rev=309583&r1=309582&r2=309583&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86ISelLowering.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86ISelLowering.cpp Mon Jul 31 10:06:55 2017
@@ -34525,7 +34525,7 @@ static SDValue combineFMA(SDNode *N, Sel
   else
     NewOpcode = (!NegC) ? X86ISD::FNMADD : X86ISD::FNMSUB;
 
-  // For FMA and FAMDD, we risk reconstructing the node we started with.
+  // For FMA and FMADD, we risk reconstructing the node we started with.
   // In order to avoid this, we check for negation or opcode change. If
   // one of the two happened, then it is a new node and we return it.
   if (N->getOpcode() == X86ISD::FMADD || N->getOpcode() == ISD::FMA) {




More information about the llvm-commits mailing list