Fix spelling.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@8686 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2003-09-23 17:27:28 +00:00
parent 8d2ff13149
commit 8b2fe1943c

View File

@ -500,7 +500,7 @@ SparcFunctionAsmPrinter::emitMachineInst(const MachineInstr *MI)
unsigned N = 1;
for (unsigned OpNum = 0; OpNum < MI->getNumOperands(); OpNum += N)
if (! ((1 << OpNum) & Mask)) { // Ignore this operand?
if (NeedComma) toAsm << ", "; // Handle comma outputing
if (NeedComma) toAsm << ", "; // Handle comma outputting
NeedComma = true;
N = printOperands(MI, OpNum);
} else