From 77bdbc197e98cf0ca34c2ae8b58183d5aa1741e3 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. llvm-svn: 309583 --- llvm/lib/Target/X86/X86ISelLowering.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Target/X86/X86ISelLowering.cpp b/llvm/lib/Target/X86/X86ISelLowering.cpp index 5448c28c6da8..081b711a145c 100644 --- a/llvm/lib/Target/X86/X86ISelLowering.cpp +++ b/llvm/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) {