From 2bbbd5bc5980681170cfa07843002573f7b8b21d Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Thu, 16 Jul 2009 14:10:49 +0000 Subject: [PATCH] Stupid typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75992 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SystemZ/SystemZRegisterInfo.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/SystemZ/SystemZRegisterInfo.cpp b/lib/Target/SystemZ/SystemZRegisterInfo.cpp index a65cec15c90..dc1561fb1a9 100644 --- a/lib/Target/SystemZ/SystemZRegisterInfo.cpp +++ b/lib/Target/SystemZ/SystemZRegisterInfo.cpp @@ -206,7 +206,7 @@ void SystemZRegisterInfo::emitPrologue(MachineFunction &MF) const { uint64_t NumBytes = StackSize - TFI.getOffsetOfLocalArea(); - if (StackSize) // adjust stack pointer: R15 -= numbytes + if (NumBytes) // adjust stack pointer: R15 -= numbytes emitSPUpdate(MBB, MBBI, -(int64_t)NumBytes, TII); if (hasFP(MF)) {