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 | c441e97220eb8f3fc062d8bdf04d261165428673 (patch) | |
tree | d10b9f85c2774dbdbe2b7fc242a06b8799ff00e2 | |
parent | 166604e6ce51fa60910141f2fa1ae17a1b62496a (diff) | |
download | external_llvm-c441e97220eb8f3fc062d8bdf04d261165428673.zip external_llvm-c441e97220eb8f3fc062d8bdf04d261165428673.tar.gz external_llvm-c441e97220eb8f3fc062d8bdf04d261165428673.tar.bz2 |
comment fix.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98494 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | lib/Target/X86/AsmPrinter/X86MCInstLower.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp b/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp index 6aeb299..a90dfa3 100644 --- a/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp +++ b/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; |