| 562 | } |
| 563 | |
| 564 | void ValidationState_t::SetGraphDefinitionRegion(GraphDefinitionRegion region) { |
| 565 | assert((region == kGraphDefinitionOutside && |
| 566 | graph_definition_region_ == kGraphDefinitionOutputs) || |
| 567 | region >= graph_definition_region_); |
| 568 | graph_definition_region_ = region; |
| 569 | } |
| 570 | |
| 571 | Instruction* ValidationState_t::AddOrderedInstruction( |
| 572 | const spv_parsed_instruction_t* inst) { |
no outgoing calls
no test coverage detected