diff options
author | Bob Wilson <bob.wilson@apple.com> | 2009-04-03 20:53:25 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2009-04-03 20:53:25 +0000 |
commit | d24b794f31c2846776f9373963058f8cc54ba9b2 (patch) | |
tree | a98679e5529164cc9d338e0c4137703e19302999 | |
parent | c2a7189048e08672584db5c2bef9570c88336151 (diff) | |
download | bcm5719-llvm-d24b794f31c2846776f9373963058f8cc54ba9b2.tar.gz bcm5719-llvm-d24b794f31c2846776f9373963058f8cc54ba9b2.zip |
Fix some comments.
llvm-svn: 68404
-rw-r--r-- | llvm/lib/Target/ARM/ARMInstrInfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/lib/Target/ARM/ARMInstrInfo.cpp b/llvm/lib/Target/ARM/ARMInstrInfo.cpp index 3277896f74a..16f80ac39c6 100644 --- a/llvm/lib/Target/ARM/ARMInstrInfo.cpp +++ b/llvm/lib/Target/ARM/ARMInstrInfo.cpp @@ -211,7 +211,7 @@ ARMInstrInfo::convertToThreeAddress(MachineFunction::iterator &MFI, break; } - // Try spliting an indexed load / store to a un-indexed one plus an add/sub + // Try splitting an indexed load/store to an un-indexed one plus an add/sub // operation. unsigned MemOpc = getUnindexedOpcode(MI->getOpcode()); if (MemOpc == 0) @@ -401,8 +401,8 @@ bool ARMInstrInfo::AnalyzeBranch(MachineBasicBlock &MBB,MachineBasicBlock *&TBB, return false; } - // Likewise if it ends with a branch table followed by an unconditional branch. - // The branch folder can create these, and we must get rid of them for + // ...likewise if it ends with a branch table followed by an unconditional + // branch. The branch folder can create these, and we must get rid of them for // correctness of Thumb constant islands. if ((SecondLastOpc == ARM::BR_JTr || SecondLastOpc==ARM::BR_JTm || SecondLastOpc == ARM::BR_JTadd || SecondLastOpc==ARM::tBR_JTr) && @@ -692,7 +692,7 @@ MachineInstr *ARMInstrInfo::foldMemoryOperandImpl(MachineFunction &MF, default: break; case ARM::MOVr: { if (MI->getOperand(4).getReg() == ARM::CPSR) - // If it is updating CPSR, then it cannot be foled. + // If it is updating CPSR, then it cannot be folded. break; unsigned Pred = MI->getOperand(2).getImm(); unsigned PredReg = MI->getOperand(3).getReg(); @@ -781,7 +781,7 @@ bool ARMInstrInfo::canFoldMemoryOperand(const MachineInstr *MI, switch (Opc) { default: break; case ARM::MOVr: - // If it is updating CPSR, then it cannot be foled. + // If it is updating CPSR, then it cannot be folded. return MI->getOperand(4).getReg() != ARM::CPSR; case ARM::tMOVr: { if (OpNum == 0) { // move -> store |