diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-03-14 17:10:52 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-03-14 17:10:52 +0000 |
| commit | 87dd2d6388db027c83ed5d76a82c9c465c332898 (patch) | |
| tree | 94de3cfefca4bd9d2babeb64404bddde8b8eb863 | |
| parent | 28aae17fee1b1a43345624787abca6f1eaff5430 (diff) | |
| download | bcm5719-llvm-87dd2d6388db027c83ed5d76a82c9c465c332898.tar.gz bcm5719-llvm-87dd2d6388db027c83ed5d76a82c9c465c332898.zip | |
comment fix.
llvm-svn: 98494
| -rw-r--r-- | llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp b/llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp index 6aeb2991e1f..a90dfa3cda9 100644 --- a/llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp +++ b/llvm/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp @@ -307,7 +307,7 @@ void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const { // The assembler backend wants to see branches in their small form and relax // them to their large form. The JIT can only handle the large form because - // it does not do relaxation. For now, translation the large form to the + // it does not do relaxation. For now, translate the large form to the // small one here. case X86::JMP_4: OutMI.setOpcode(X86::JMP_1); break; case X86::JO_4: OutMI.setOpcode(X86::JO_1); break; |

