Fix a spelling mistake in a comment. NFC
authorGreg Bedwell <greg.bedwell@sony.com>
Mon, 28 Oct 2019 14:28:00 +0000 (14:28 +0000)
committerGreg Bedwell <greg.bedwell@sony.com>
Tue, 29 Oct 2019 12:19:52 +0000 (12:19 +0000)
llvm/lib/CodeGen/GlobalISel/LegalizerHelper.cpp

index 68c8304..761dd0a 100644 (file)
@@ -3377,7 +3377,7 @@ void LegalizerHelper::multiplyRegisters(SmallVectorImpl<Register> &DstRegs,
           B.buildUMulH(NarrowTy, Src1Regs[DstIdx - 1 - i], Src2Regs[i]);
       Factors.push_back(Umulh.getReg(0));
     }
-    // Add CarrySum from additons calculated for previous DstIdx.
+    // Add CarrySum from additions calculated for previous DstIdx.
     if (DstIdx != 1) {
       Factors.push_back(CarrySumPrevDstIdx);
     }