| 172 | } |
| 173 | |
| 174 | FunctionInvocation * |
| 175 | FunctionInvocationUser::clone() const |
| 176 | { |
| 177 | assert(this->op_flags == NULL); |
| 178 | |
| 179 | return new FunctionInvocationUser(*this); |
| 180 | } |
| 181 | |
| 182 | /* build parameters first, then the function body. this way the generation order is in sync |
| 183 | with execution order, and the dataflow analyzer doesn't need to visit the function twice |
nothing calls this directly
no outgoing calls
no test coverage detected