remove deprecated getInstType() method

llvm-svn: 2595
This commit is contained in:
Chris Lattner 2002-05-10 13:28:47 +00:00
parent 35cc0d2027
commit b621decdad
2 changed files with 2 additions and 5 deletions

View File

@ -37,7 +37,7 @@ class InstrForest;
//--------------------------------------------------------------------------
// OpLabel values for special-case nodes created for instruction selection.
// All op-labels not defined here are identical to the instruction
// opcode returned by Instruction::getInstType()
// opcode returned by Instruction::getOpcode()
//--------------------------------------------------------------------------
const int InvalidOp = -1;

View File

@ -40,15 +40,12 @@ public:
virtual bool hasSideEffects() const { return false; } // Memory & Call insts
// ---------------------------------------------------------------------------
// Subclass classification... getInstType() returns a member of
// Subclass classification... getOpcode() returns a member of
// one of the enums that is coming soon (down below)...
//
virtual const char *getOpcodeName() const = 0;
unsigned getOpcode() const { return iType; }
// getInstType is deprecated, use getOpcode() instead.
unsigned getInstType() const { return iType; }
inline bool isTerminator() const { // Instance of TerminatorInst?
return iType >= FirstTermOp && iType < NumTermOps;
}