(&mut self, arm: &'tcx hir::Arm<'tcx>)
| 437 | } |
| 438 | |
| 439 | fn visit_arm(&mut self, arm: &'tcx hir::Arm<'tcx>) { |
| 440 | self.check_spirv_attributes(arm.hir_id, Target::Arm); |
| 441 | intravisit::walk_arm(self, arm); |
| 442 | } |
| 443 | |
| 444 | fn visit_foreign_item(&mut self, f_item: &'tcx hir::ForeignItem<'tcx>) { |
| 445 | let target = Target::from_foreign_item(f_item); |
nothing calls this directly
no test coverage detected