mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
Add default implementation of printing interface
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4727 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
23e6bba592
commit
a187ed92ae
@ -1,11 +1,10 @@
|
||||
//===-- TargetMachine.cpp - General Target Information ---------------------==//
|
||||
//===-- MachineInstrInfo.cpp - Target Instruction Information -------------===//
|
||||
//
|
||||
// This file describes the general parts of a Target machine.
|
||||
// This file also implements MachineInstrInfo and MachineCacheInfo.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Target/MachineInstrInfo.h"
|
||||
#include "llvm/CodeGen/MachineInstr.h"
|
||||
#include "llvm/Constant.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
|
||||
@ -34,6 +33,9 @@ MachineInstrInfo::~MachineInstrInfo() {
|
||||
TargetInstrDescriptors = NULL; // reset global variable
|
||||
}
|
||||
|
||||
void MachineInstrInfo::print(const MachineInstr *MI, std::ostream &O) const {
|
||||
O << *MI;
|
||||
}
|
||||
|
||||
bool MachineInstrInfo::constantFitsInImmedField(MachineOpCode opCode,
|
||||
int64_t intValue) const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user