| 110 | } |
| 111 | |
| 112 | spv_result_t Function::RegisterSetFunctionDeclType(FunctionDecl type) { |
| 113 | assert(declaration_type_ == FunctionDecl::kFunctionDeclUnknown); |
| 114 | declaration_type_ = type; |
| 115 | return SPV_SUCCESS; |
| 116 | } |
| 117 | |
| 118 | spv_result_t Function::RegisterBlock(uint32_t block_id, bool is_definition) { |
| 119 | assert( |
no outgoing calls
no test coverage detected