mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-19 17:37:24 +00:00
Add some methods to make type safety a bit easier
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6198 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2434a58dcf
commit
17aefb168f
@ -506,6 +506,15 @@ public:
|
||||
virtual void destroyConstant();
|
||||
virtual void replaceUsesOfWithOnConstant(Value *From, Value *To);
|
||||
|
||||
/// Override methods to provide more type information...
|
||||
inline Constant *getOperand(unsigned i) {
|
||||
return cast<Constant>(User::getOperand(i));
|
||||
}
|
||||
inline Constant *getOperand(unsigned i) const {
|
||||
return const_cast<Constant*>(cast<Constant>(User::getOperand(i)));
|
||||
}
|
||||
|
||||
|
||||
/// Methods for support type inquiry through isa, cast, and dyn_cast:
|
||||
static inline bool classof(const ConstantExpr *) { return true; }
|
||||
static inline bool classof(const Constant *CPV) {
|
||||
|
Loading…
Reference in New Issue
Block a user