mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-04 10:52:30 +00:00
doxygenize argument accessors
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109950 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
0cd1ee2308
commit
0114b9990a
@ -964,7 +964,12 @@ public:
|
||||
# undef protected
|
||||
public:
|
||||
|
||||
/// getNumArgOperands - Return the number of call arguments.
|
||||
///
|
||||
unsigned getNumArgOperands() const { return getNumOperands() - 1; }
|
||||
|
||||
/// getArgOperand/setArgOperand - Return/set the i-th call argument.
|
||||
///
|
||||
Value *getArgOperand(unsigned i) const { return getOperand(i); }
|
||||
void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
|
||||
|
||||
@ -2460,7 +2465,12 @@ public:
|
||||
/// Provide fast operand accessors
|
||||
DECLARE_TRANSPARENT_OPERAND_ACCESSORS(Value);
|
||||
|
||||
/// getNumArgOperands - Return the number of invoke arguments.
|
||||
///
|
||||
unsigned getNumArgOperands() const { return getNumOperands() - 3; }
|
||||
|
||||
/// getArgOperand/setArgOperand - Return/set the i-th invoke argument.
|
||||
///
|
||||
Value *getArgOperand(unsigned i) const { return getOperand(i); }
|
||||
void setArgOperand(unsigned i, Value *v) { setOperand(i, v); }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user