| 20 | } |
| 21 | |
| 22 | bool RDExtension::isOutParam(const Argument &A) const { |
| 23 | if (!DirectionReport || !DirectionReport->has(A)) |
| 24 | return false; |
| 25 | return DirectionReport->get(A) == Dir_Out; |
| 26 | } |
| 27 | |
| 28 | bool RDExtension::isTermination(const CallBase &CB, size_t ParamNo) const { |
| 29 |