| 2610 | } |
| 2611 | |
| 2612 | void Differ::MatchExtInstDebugInfo() { |
| 2613 | // This section includes OpExtInst for DebugInfo extension |
| 2614 | MatchDebugAndAnnotationInstructions(src_->ext_inst_debuginfo(), |
| 2615 | dst_->ext_inst_debuginfo()); |
| 2616 | // OpExtInst can exist in other sections too, such as with non-semantic info. |
| 2617 | MatchDebugAndAnnotationInstructions(src_->types_values(), |
| 2618 | dst_->types_values()); |
| 2619 | } |
| 2620 | |
| 2621 | void Differ::MatchAnnotations() { |
| 2622 | // This section includes OpDecorate and family. |
no test coverage detected