From 2018eac6ffb620b8a3c3df42a02da3ea9127c4da Mon Sep 17 00:00:00 2001 From: Simon Pilgrim Date: Mon, 31 Jul 2017 17:06:55 +0000 Subject: [PATCH] Fix typo in comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@309583 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86ISelLowering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index 5448c28c6da..081b711a145 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -34525,7 +34525,7 @@ static SDValue combineFMA(SDNode *N, SelectionDAG &DAG, 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) { -- 2.40.0