Fix a grammaro in a comment that Bill noticed.
[oota-llvm.git] / lib / Target / X86 / X86CallingConv.td
index 370bae7a50cf02a7bfac1348e8daea72448b82c5..6924520ab8ffaafcc69a2364d7b809a2cf2b4e81 100644 (file)
@@ -24,7 +24,7 @@ class CCIfSubtarget<string F, CCAction A>
 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.