Fix uninitialized variable
[llvm-core.git] / lib / Target / Nios2 / Nios2FrameLowering.cpp
blob6fb28a6fd638a1e915a599ff971b7f2f4705d362
1 //===-- Nios2FrameLowering.cpp - Nios2 Frame Information ------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the Nios2 implementation of TargetFrameLowering class.
12 //===----------------------------------------------------------------------===//
14 #include "Nios2FrameLowering.h"
16 #include "Nios2Subtarget.h"
17 #include "llvm/CodeGen/MachineFunction.h"
19 using namespace llvm;
21 bool Nios2FrameLowering::hasFP(const MachineFunction &MF) const { return true; }
23 void Nios2FrameLowering::emitPrologue(MachineFunction &MF,
24 MachineBasicBlock &MBB) const {}
26 void Nios2FrameLowering::emitEpilogue(MachineFunction &MF,
27 MachineBasicBlock &MBB) const {}