Hanle i8 returns
[llvm/msp430.git] / lib / Target / IA64 / IA64MachineFunctionInfo.h
blobfb930564a9d159efeb0ba4f14a0c5d5f40f1395b
1 //===-- IA64MachineFunctionInfo.h - IA64-specific information ---*- C++ -*-===//
2 //===-- for MachineFunction ---*- C++ -*-===//
3 //
4 // The LLVM Compiler Infrastructure
5 //
6 //===----------------------------------------------------------------------===//
7 //
8 // This file declares IA64-specific per-machine-function information.
9 //
10 //===----------------------------------------------------------------------===//
12 #ifndef IA64MACHINEFUNCTIONINFO_H
13 #define IA64MACHINEFUNCTIONINFO_H
15 #include "llvm/CodeGen/MachineFunction.h"
16 //#include "IA64JITInfo.h"
18 namespace llvm {
20 class IA64FunctionInfo : public MachineFunctionInfo {
22 public:
23 unsigned outRegsUsed; // how many 'out' registers are used
24 // by this machinefunction? (used to compute the appropriate
25 // entry in the 'alloc' instruction at the top of the
26 // machinefunction)
27 IA64FunctionInfo(MachineFunction& MF) { outRegsUsed=0; };
31 } // End llvm namespace
33 #endif