From: Simon Pilgrim Date: Sun, 20 Nov 2016 13:10:51 +0000 (+0000) Subject: Fix comment typos. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0f550ef263dc8aa7f6857b409b433e9acfea6e14;p=llvm Fix comment typos. NFC. Identified by Pedro Giffuni in PR27636. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@287486 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPCFrameLowering.cpp b/lib/Target/PowerPC/PPCFrameLowering.cpp index 72d3f383a46..29f93831816 100644 --- a/lib/Target/PowerPC/PPCFrameLowering.cpp +++ b/lib/Target/PowerPC/PPCFrameLowering.cpp @@ -778,7 +778,7 @@ void PPCFrameLowering::emitPrologue(MachineFunction &MF, assert((isPPC64 || !isSVR4ABI || !(!FrameSize && (MustSaveLR || HasFP))) && "FrameSize must be >0 to save/restore the FP or LR for 32-bit SVR4."); - // Using the same bool variable as below to supress compiler warnings. + // Using the same bool variable as below to suppress compiler warnings. bool SingleScratchReg = findScratchRegister(&MBB, false, twoUniqueScratchRegsRequired(&MBB), &ScratchReg, &TempReg); @@ -1271,7 +1271,7 @@ void PPCFrameLowering::emitEpilogue(MachineFunction &MF, int FPOffset = 0; - // Using the same bool variable as below to supress compiler warnings. + // Using the same bool variable as below to suppress compiler warnings. bool SingleScratchReg = findScratchRegister(&MBB, true, false, &ScratchReg, &TempReg); assert(SingleScratchReg &&