blob: 8340e783a6739b0cc643a5df519d23e15e35dd91 [file] [log] [blame]
Misha Brukman5dfe3a92004-06-21 16:55:25 +00001//===- PowerPCInstrInfo.cpp - PowerPC Instruction Information ---*- C++ -*-===//
2//
3// 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.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file contains the PowerPC implementation of the TargetInstrInfo class.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PowerPCInstrInfo.h"
15#include "PowerPC.h"
16#include "llvm/CodeGen/MachineInstrBuilder.h"
17#include "PowerPCGenInstrInfo.inc"
18using namespace llvm;
19
20PowerPCInstrInfo::PowerPCInstrInfo()
21 : TargetInstrInfo(PowerPCInsts, sizeof(PowerPCInsts)/sizeof(PowerPCInsts[0])){
22}