mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
make the Op<N> methods protected, how it was intended to be
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66430 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6501153fc0
commit
1dfe6a0030
@ -82,12 +82,14 @@ public:
|
||||
void operator delete(void*, unsigned) {
|
||||
assert(0 && "Constructor throws?");
|
||||
}
|
||||
protected:
|
||||
template <unsigned Idx> Use &Op() {
|
||||
return OperandTraits<User>::op_begin(this)[Idx];
|
||||
}
|
||||
template <unsigned Idx> const Use &Op() const {
|
||||
return OperandTraits<User>::op_begin(const_cast<User*>(this))[Idx];
|
||||
}
|
||||
public:
|
||||
Value *getOperand(unsigned i) const {
|
||||
assert(i < NumOperands && "getOperand() out of range!");
|
||||
return OperandList[i];
|
||||
|
Loading…
x
Reference in New Issue
Block a user