| 52 | } |
| 53 | |
| 54 | void Argument_AddRecord(Argument *arg, Record r) { |
| 55 | ASSERT(!arg->r && "tried to insert into a populated Argument op"); |
| 56 | arg->r = r; |
| 57 | } |
| 58 | |
| 59 | static inline OpBase *ArgumentClone(const ExecutionPlan *plan, const OpBase *opBase) { |
| 60 | ASSERT(opBase->type == OPType_ARGUMENT); |
no outgoing calls
no test coverage detected