1//===--------------------- R600FrameLowering.h ------------------*- C++ -*-===//
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#ifndef LLVM_LIB_TARGET_AMDGPU_R600FRAMELOWERING_H
11#define LLVM_LIB_TARGET_AMDGPU_R600FRAMELOWERING_H
12
13#include "AMDGPUFrameLowering.h"
14
15namespace llvm {
16
17class R600FrameLowering : public AMDGPUFrameLowering {
18public:
19  R600FrameLowering(StackDirection D, unsigned StackAl, int LAO,
20                    unsigned TransAl = 1) :
21    AMDGPUFrameLowering(D, StackAl, LAO, TransAl) {}
22  virtual ~R600FrameLowering();
23
24  void emitPrologue(MachineFunction &MF, MachineBasicBlock &MBB) const {}
25  void emitEpilogue(MachineFunction &MF, MachineBasicBlock &MBB) const {}
26};
27
28}
29
30#endif
31