diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2012-07-25 15:42:45 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2012-07-25 15:42:45 +0000 |
commit | c338fe082860989d89b51520042a5f447339eb8c (patch) | |
tree | 425cccb70970f7880e5dac39a44f4bf55a8c9be3 /lib/Target/X86/X86FastISel.cpp | |
parent | fc97547b8b0b2544258ec893c0880f1f64f491e3 (diff) |
Fix typos. Thanks to Matt Beaumont-Gay for noticing it.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160731 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86FastISel.cpp')
-rw-r--r-- | lib/Target/X86/X86FastISel.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86FastISel.cpp b/lib/Target/X86/X86FastISel.cpp index 4eeefae631..1e97fe764f 100644 --- a/lib/Target/X86/X86FastISel.cpp +++ b/lib/Target/X86/X86FastISel.cpp @@ -1516,8 +1516,8 @@ bool X86FastISel::X86SelectCall(const Instruction *I) { return DoSelectCall(I, 0); } -static unsigned computeBytesPopedByCalle(const X86Subtarget &Subtarget, - const ImmutableCallSite &CS) { +static unsigned computeBytesPoppedByCallee(const X86Subtarget &Subtarget, + const ImmutableCallSite &CS) { if (Subtarget.is64Bit()) return 0; if (Subtarget.isTargetWindows()) @@ -1878,7 +1878,7 @@ bool X86FastISel::DoSelectCall(const Instruction *I, const char *MemIntName) { // Issue CALLSEQ_END unsigned AdjStackUp = TII.getCallFrameDestroyOpcode(); - const unsigned NumBytesCallee = computeBytesPopedByCalle(*Subtarget, CS); + const unsigned NumBytesCallee = computeBytesPoppedByCallee(*Subtarget, CS); BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL, TII.get(AdjStackUp)) .addImm(NumBytes).addImm(NumBytesCallee); |