1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 19:42:54 +02:00

Fix typos. Thanks to Matt Beaumont-Gay for noticing it.

llvm-svn: 160731
This commit is contained in:
Rafael Espindola 2012-07-25 15:42:45 +00:00
parent 9054f5c3c7
commit 062cf9ccf9

View File

@ -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);