| 104 | } |
| 105 | |
| 106 | FunctionInvocation * |
| 107 | ExtensionMgr::MakeFuncInvocation(Function *curFunc, CGContext &cg_context) |
| 108 | { |
| 109 | if (ExtensionMgr::extension_ == NULL) { |
| 110 | return FunctionInvocation::make_random(curFunc, cg_context); |
| 111 | } |
| 112 | else { |
| 113 | std::vector<ExtensionValue *> &values = ExtensionMgr::extension_->get_values(); |
| 114 | return ExtensionMgr::extension_->MakeFuncInvocation(curFunc, values); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | void |
| 119 | ExtensionMgr::OutputHeader(std::ostream &out) |
nothing calls this directly
no outgoing calls
no test coverage detected