summaryrefslogtreecommitdiff
path: root/lib/Target/SystemZ/SystemZRegisterInfo.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-07-16 14:10:49 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-07-16 14:10:49 +0000
commit2bbbd5bc5980681170cfa07843002573f7b8b21d (patch)
tree2681dcdb21bc7c8ffaf2c0a16ee80b9042c3175b /lib/Target/SystemZ/SystemZRegisterInfo.cpp
parent4656760d9c3a5c982f72b8fa26b542069ed69700 (diff)
downloadllvm-2bbbd5bc5980681170cfa07843002573f7b8b21d.tar.gz
llvm-2bbbd5bc5980681170cfa07843002573f7b8b21d.tar.bz2
llvm-2bbbd5bc5980681170cfa07843002573f7b8b21d.tar.xz
Stupid typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75992 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ/SystemZRegisterInfo.cpp')
-rw-r--r--lib/Target/SystemZ/SystemZRegisterInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/SystemZ/SystemZRegisterInfo.cpp b/lib/Target/SystemZ/SystemZRegisterInfo.cpp
index a65cec15c9..dc1561fb1a 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)) {