c56640a35459e847cab75fb927bc05b84013c114
[oota-llvm.git] / lib / Target / ARM / ARMFrameInfo.h
1 //===-- ARMTargetFrameInfo.h - Define TargetFrameInfo for ARM ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the "Instituto Nokia de Tecnologia" and
6 // is distributed under the University of Illinois Open Source
7 // License. See LICENSE.TXT for details.
8 //
9 //===----------------------------------------------------------------------===//
10 //
11 //
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef ARM_FRAMEINFO_H
16 #define ARM_FRAMEINFO_H
17
18 #include "ARM.h"
19 #include "llvm/Target/TargetFrameInfo.h"
20 #include "ARMSubtarget.h"
21
22 namespace llvm {
23
24 class ARMFrameInfo : public TargetFrameInfo {
25 public:
26   ARMFrameInfo(const ARMSubtarget &ST)
27     : TargetFrameInfo(StackGrowsDown, ST.getStackAlignment(), 0) {
28   }
29 };
30
31 } // End llvm namespace
32
33 #endif