implement smull and umull
[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 "llvm/Target/TargetMachine.h"
21
22 namespace llvm {
23
24 class ARMFrameInfo: public TargetFrameInfo {
25
26 public:
27   ARMFrameInfo()
28     : TargetFrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0) {
29   }
30
31 };
32
33 } // End llvm namespace
34
35 #endif