Remove getTempValuesForMachineCode from the Instruction interface

to remove dependency on <vector>


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@250 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2001-07-21 20:04:10 +00:00
parent 90e7453e35
commit cfad5df977
2 changed files with 9 additions and 5 deletions

View File

@@ -8,7 +8,6 @@
#ifndef LLVM_INSTRUCTION_H
#define LLVM_INSTRUCTION_H
#include <vector>
#include "llvm/User.h"
class Type;
@@ -48,10 +47,13 @@ public:
inline const BasicBlock *getParent() const { return Parent; }
inline BasicBlock *getParent() { return Parent; }
virtual bool hasSideEffects() const { return false; } // Memory & Call insts
inline MachineCodeForVMInstr&
getMachineInstrVec() { return *machineInstrVec; }
const vector<Value*>&
getTempValuesForMachineCode() const;
// ---------------------------------------------------------------------------
// Machine code accessors...
//
inline MachineCodeForVMInstr &getMachineInstrVec() {
return *machineInstrVec;
}
// ---------------------------------------------------------------------------
// Subclass classification... getInstType() returns a member of