blob: 6fb28a6fd638a1e915a599ff971b7f2f4705d362 [file] [log] [blame]
Nikolai Bozhenovebbde142017-09-19 11:54:29 +00001//===-- 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.
11//
12//===----------------------------------------------------------------------===//
13
14#include "Nios2FrameLowering.h"
15
16#include "Nios2Subtarget.h"
17#include "llvm/CodeGen/MachineFunction.h"
18
19using namespace llvm;
20
21bool Nios2FrameLowering::hasFP(const MachineFunction &MF) const { return true; }
22
23void Nios2FrameLowering::emitPrologue(MachineFunction &MF,
24 MachineBasicBlock &MBB) const {}
25
26void Nios2FrameLowering::emitEpilogue(MachineFunction &MF,
27 MachineBasicBlock &MBB) const {}