Fix typo.

llvm-svn: 97818
This commit is contained in:
Evan Cheng 2010-03-05 19:55:55 +00:00
parent 2df50e6573
commit 27494232d4
1 changed files with 1 additions and 1 deletions

View File

@ -2259,7 +2259,7 @@ bool MatchingStackOffset(SDValue Arg, unsigned Offset, ISD::ArgFlagsTy Flags,
} else if (LoadSDNode *Ld = dyn_cast<LoadSDNode>(Arg)) {
if (Flags.isByVal())
// ByVal argument is passed in as a pointer but it's now being
// derefernced. e.g.
// dereferenced. e.g.
// define @foo(%struct.X* %A) {
// tail call @bar(%struct.X* byval %A)
// }