| 276 | } |
| 277 | |
| 278 | void GraphFunction::retypeDataOutput(size_t idx, DataType newType) { |
| 279 | if (idx < mDataOutputs.size()) { mDataOutputs[idx].type = std::move(newType); } |
| 280 | updateExits(); |
| 281 | } |
| 282 | |
| 283 | llvm::FunctionType* GraphFunction::functionType() const { |
| 284 | std::vector<llvm::Type*> arguments; |
no outgoing calls
no test coverage detected