From 73173c55c206af791a76ca2b3406e65d501e27b4 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Wed, 25 Jul 2012 15:42:45 +0000 Subject: Fix typos. Thanks to Matt Beaumont-Gay for noticing it. llvm-svn: 160731 --- llvm/lib/Target/X86/X86FastISel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'llvm/lib') diff --git a/llvm/lib/Target/X86/X86FastISel.cpp b/llvm/lib/Target/X86/X86FastISel.cpp index 4eeefae6318..1e97fe764f5 100644 --- a/llvm/lib/Target/X86/X86FastISel.cpp +++ b/llvm/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); -- cgit v1.2.3