Member predicate Node::asParameter
Gets the positional parameter corresponding to the node that represents
the value of the parameter after index number of loads, if any. For
example, in:
void f(int** x) { ... }
- The node
nsuch thatn.asParameter(0)is the parameterxrepresents the value ofx. - The node
nsuch thatn.asParameter(1)is the parameterxrepresents the value of*x. - The node
nsuch thatn.asParameter(2)is the parameterxrepresents the value of**x.
Parameter asParameter(int index)