Fix typo.
authorEvan Cheng <evan.cheng@apple.com>
Fri, 5 Mar 2010 19:55:55 +0000 (19:55 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Fri, 5 Mar 2010 19:55:55 +0000 (19:55 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@97818 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86ISelLowering.cpp

index 350ef5a6b8db657df8e10f0cae9eafb0f392ac64..8384ab753a939a8fd9ea470a6b21fbc6915365e2 100644 (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)
       // }