* XXX: replace with a useful constructor. */
| 145 | * XXX: replace with a useful constructor. |
| 146 | */ |
| 147 | FunctionInvocationUser::FunctionInvocationUser(Function *target, |
| 148 | bool isBackLink, const SafeOpFlags *flags) |
| 149 | : FunctionInvocation(eFuncCall, flags), |
| 150 | func(target), |
| 151 | isBackLink(isBackLink) |
| 152 | { |
| 153 | // Nothing else to do. Caller must build useful params. |
| 154 | } |
| 155 | |
| 156 | /* |
| 157 | * copy constructor |
nothing calls this directly
no outgoing calls
no test coverage detected