Dummy MSP430 backend
[oota-llvm.git] / lib / Target / MSP430 / MSP430InstrInfo.cpp
1 //===- MSP430InstrInfo.cpp - MSP430 Instruction 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 MSP430 implementation of the TargetInstrInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "MSP430.h"
15 #include "MSP430InstrInfo.h"
16 #include "MSP430TargetMachine.h"
17 #include "MSP430GenInstrInfo.inc"
18 #include "llvm/Function.h"
19 #include "llvm/CodeGen/MachineFunction.h"
20 #include "llvm/CodeGen/MachineInstrBuilder.h"
21 #include "llvm/CodeGen/MachineRegisterInfo.h"
22
23
24 using namespace llvm;
25
26 MSP430InstrInfo::MSP430InstrInfo(MSP430TargetMachine &tm)
27   : TargetInstrInfoImpl(MSP430Insts, array_lengthof(MSP430Insts)),
28     RI(*this), TM(tm) {}