aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-03-23 05:02:44 +0000
committerDan Gohman <gohman@apple.com>2009-03-23 05:02:44 +0000
commit3aff0a63f98f018e862e75155b6ba0ffbd8a05cd (patch)
treeb424e870ff685e119478748750310f9c938cb52a /lib
parent640e7c6d078a5c5a3843f738f45cad30f56d659f (diff)
downloadexternal_llvm-3aff0a63f98f018e862e75155b6ba0ffbd8a05cd.zip
external_llvm-3aff0a63f98f018e862e75155b6ba0ffbd8a05cd.tar.gz
external_llvm-3aff0a63f98f018e862e75155b6ba0ffbd8a05cd.tar.bz2
Fix a grammaro in a comment that Bill noticed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67507 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/X86/X86CallingConv.td2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86CallingConv.td b/lib/Target/X86/X86CallingConv.td
index 370bae7..6924520 100644
--- a/lib/Target/X86/X86CallingConv.td
+++ b/lib/Target/X86/X86CallingConv.td
@@ -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.