diff options
author | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-21 16:55:25 +0000 |
---|---|---|
committer | Misha Brukman <brukman+llvm@gmail.com> | 2004-06-21 16:55:25 +0000 |
commit | e05203fb40946c20fb748de3eaf78ed5a8a082ab (patch) | |
tree | 4f4c6da33b01c4630a9ed25394ba05b56073a88f /llvm/lib/Target/PowerPC/PowerPCInstrInfo.cpp | |
parent | e54cbdd47848721b408274ccf08d45c95ac964bb (diff) | |
download | bcm5719-llvm-e05203fb40946c20fb748de3eaf78ed5a8a082ab.tar.gz bcm5719-llvm-e05203fb40946c20fb748de3eaf78ed5a8a082ab.zip |
Initial revision
llvm-svn: 14283
Diffstat (limited to 'llvm/lib/Target/PowerPC/PowerPCInstrInfo.cpp')
-rw-r--r-- | llvm/lib/Target/PowerPC/PowerPCInstrInfo.cpp | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/llvm/lib/Target/PowerPC/PowerPCInstrInfo.cpp b/llvm/lib/Target/PowerPC/PowerPCInstrInfo.cpp new file mode 100644 index 00000000000..8340e783a67 --- /dev/null +++ b/llvm/lib/Target/PowerPC/PowerPCInstrInfo.cpp @@ -0,0 +1,22 @@ +//===- PowerPCInstrInfo.cpp - PowerPC Instruction Information ---*- C++ -*-===// +// +// The LLVM Compiler Infrastructure +// +// This file was developed by the LLVM research group and is distributed under +// the University of Illinois Open Source License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file contains the PowerPC implementation of the TargetInstrInfo class. +// +//===----------------------------------------------------------------------===// + +#include "PowerPCInstrInfo.h" +#include "PowerPC.h" +#include "llvm/CodeGen/MachineInstrBuilder.h" +#include "PowerPCGenInstrInfo.inc" +using namespace llvm; + +PowerPCInstrInfo::PowerPCInstrInfo() + : TargetInstrInfo(PowerPCInsts, sizeof(PowerPCInsts)/sizeof(PowerPCInsts[0])){ +} |