| 325 | } |
| 326 | |
| 327 | bool ValidationState_t::IsOpcodeInPreviousLayoutSection(spv::Op op) { |
| 328 | ModuleLayoutSection section = |
| 329 | InstructionLayoutSection(current_layout_section_, op); |
| 330 | return section < current_layout_section_; |
| 331 | } |
| 332 | |
| 333 | bool ValidationState_t::IsOpcodeInCurrentLayoutSection(spv::Op op) { |
| 334 | return IsInstructionInLayoutSection(current_layout_section_, op); |
no test coverage detected