[llvm-commits] [llvm] r67507 - /llvm/trunk/lib/Target/X86/X86CallingConv.td

Dan Gohman gohman at apple.com
Sun Mar 22 22:02:45 PDT 2009


Author: djg
Date: Mon Mar 23 00:02:44 2009
New Revision: 67507

URL: http://llvm.org/viewvc/llvm-project?rev=67507&view=rev
Log:
Fix a grammaro in a comment that Bill noticed.

Modified:
    llvm/trunk/lib/Target/X86/X86CallingConv.td

Modified: llvm/trunk/lib/Target/X86/X86CallingConv.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86CallingConv.td?rev=67507&r1=67506&r2=67507&view=diff

==============================================================================
--- llvm/trunk/lib/Target/X86/X86CallingConv.td (original)
+++ llvm/trunk/lib/Target/X86/X86CallingConv.td Mon Mar 23 00:02:44 2009
@@ -24,7 +24,7 @@
 def RetCC_X86Common : CallingConv<[
   // Scalar values are returned in AX first, then DX, except for i8 where
   // the convention is to return values in AL and AH. However, using AL and
-  // is AH problematic -- a return of {i16,i8} would end up using AX and AH,
+  // AH is problematic -- a return of {i16,i8} would end up using AX and AH,
   // and one value would clobber the other. C front-ends are currently expected
   // to pack two i8 values into an i16 in the rare situations where this
   // is necessary.





More information about the llvm-commits mailing list