summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2011-01-10 12:56:18 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2011-01-10 12:56:18 +0000
commit5fb942a307b7a4a7b44509c9e24435bfeba61d71 (patch)
tree61d6f6a58c8e25ac2918f2556526cc4be49efb2b /llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp
parent441ae5b88cf4a49083d4784b2ccadd1bbd3bf3b9 (diff)
downloadbcm5719-llvm-5fb942a307b7a4a7b44509c9e24435bfeba61d71.tar.gz
bcm5719-llvm-5fb942a307b7a4a7b44509c9e24435bfeba61d71.zip
Fix merge fallout
llvm-svn: 123172
Diffstat (limited to 'llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp')
-rw-r--r--llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp b/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp
index 9cd8d9d145f..e501621154d 100644
--- a/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp
+++ b/llvm/lib/Target/MBlaze/MBlazeFrameLowering.cpp
@@ -323,12 +323,12 @@ static void determineFrameLayout(MachineFunction &MF) {
DEBUG(dbgs() << "Aligned Frame Size: " << FrameSize << "\n" );
}
-int MBlazeFrameInfo::getFrameIndexOffset(const MachineFunction &MF, int FI)
+int MBlazeFrameLowering::getFrameIndexOffset(const MachineFunction &MF, int FI)
const {
const MBlazeFunctionInfo *MBlazeFI = MF.getInfo<MBlazeFunctionInfo>();
if (MBlazeFI->hasReplacement(FI))
FI = MBlazeFI->getReplacement(FI);
- return TargetFrameInfo::getFrameIndexOffset(MF,FI);
+ return TargetFrameLowering::getFrameIndexOffset(MF,FI);
}
// hasFP - Return true if the specified function should have a dedicated frame
OpenPOWER on IntegriCloud