blob: 877dcb27daa5576d38fc90f45bd76021cfc0ba0a [file] [log] [blame]
Chris Lattner5ad021c2004-07-16 07:11:15 +00001//===- SkeletonInstrInfo.cpp - Instruction Information ----------*- C++ -*-===//
Misha Brukmanb5f662f2005-04-21 23:30:14 +00002//
Chris Lattner5ad021c2004-07-16 07:11:15 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanb5f662f2005-04-21 23:30:14 +00007//
Chris Lattner5ad021c2004-07-16 07:11:15 +00008//===----------------------------------------------------------------------===//
9//
10// This is where you implement methods for the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "SkeletonInstrInfo.h"
15#include "llvm/CodeGen/MachineInstrBuilder.h"
16#include "SkeletonGenInstrInfo.inc" // Get info from Tablegen
17using namespace llvm;
18
19SkeletonInstrInfo::SkeletonInstrInfo()
20 : TargetInstrInfo(SkeletonInsts,
21 sizeof(SkeletonInsts)/sizeof(SkeletonInsts[0])){
22}