diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 13:49:25 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-16 13:49:25 +0000 |
commit | 09890bd434b21a47473348b8d2e7012b88eaf71b (patch) | |
tree | 4dc145bcbc4924bbd900d97f46eb03b100059987 /llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp | |
parent | 5dc5629100ad2e3a55897039af059d324a5eb840 (diff) | |
download | llvm-09890bd434b21a47473348b8d2e7012b88eaf71b.zip llvm-09890bd434b21a47473348b8d2e7012b88eaf71b.tar.gz llvm-09890bd434b21a47473348b8d2e7012b88eaf71b.tar.bz2 |
Add simple frame index elimination
llvm-svn: 75939
Diffstat (limited to 'llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp')
-rw-r--r-- | llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp index a8b2b76..8160953 100644 --- a/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp +++ b/llvm/lib/Target/SystemZ/SystemZTargetMachine.cpp @@ -41,7 +41,7 @@ SystemZTargetMachine::SystemZTargetMachine(const Module &M, const std::string &F : Subtarget(*this, M, FS), DataLayout("E-p:64:64:64-i1:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f128:128:128"), InstrInfo(*this), TLInfo(*this), - FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0) { + FrameInfo(TargetFrameInfo::StackGrowsDown, 8, -160) { } bool SystemZTargetMachine::addInstSelector(PassManagerBase &PM, |