mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
add some named accessors for StoreInst
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106969 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -235,6 +235,9 @@ public:
|
||||
|
||||
void setAlignment(unsigned Align);
|
||||
|
||||
Value *getValueOperand() { return getOperand(0); }
|
||||
const Value *getValueOperand() const { return getOperand(0); }
|
||||
|
||||
Value *getPointerOperand() { return getOperand(1); }
|
||||
const Value *getPointerOperand() const { return getOperand(1); }
|
||||
static unsigned getPointerOperandIndex() { return 1U; }
|
||||
|
Reference in New Issue
Block a user