mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Consider anything with a ValueType that is >= Instruction to be an instruction
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14429 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
3d4bd5aa8d
commit
0b0863778f
@ -138,7 +138,7 @@ public:
|
||||
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||
static inline bool classof(const Instruction *I) { return true; }
|
||||
static inline bool classof(const Value *V) {
|
||||
return V->getValueType() == Value::InstructionVal;
|
||||
return V->getValueType() >= Value::InstructionVal;
|
||||
}
|
||||
|
||||
//----------------------------------------------------------------------
|
||||
|
@ -86,9 +86,8 @@ public:
|
||||
// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||
static inline bool classof(const User *) { return true; }
|
||||
static inline bool classof(const Value *V) {
|
||||
return V->getValueType() == Value::GlobalVariableVal ||
|
||||
V->getValueType() == Value::ConstantVal ||
|
||||
V->getValueType() == Value::InstructionVal;
|
||||
return isa<Instruction>(V) || isa<GlobalVariable>(V) ||
|
||||
isa<Constant>(V);
|
||||
}
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user