[llvm-commits] [llvm] r98494 - /llvm/trunk/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp

Chris Lattner sabre at nondot.org
Sun Mar 14 10:10:52 PDT 2010


Author: lattner
Date: Sun Mar 14 12:10:52 2010
New Revision: 98494

URL: http://llvm.org/viewvc/llvm-project?rev=98494&view=rev
Log:
comment fix.

Modified:
    llvm/trunk/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp

Modified: llvm/trunk/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp?rev=98494&r1=98493&r2=98494&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp (original)
+++ llvm/trunk/lib/Target/X86/AsmPrinter/X86MCInstLower.cpp Sun Mar 14 12:10:52 2010
@@ -307,7 +307,7 @@
       
   // 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;





More information about the llvm-commits mailing list