summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2021-12-07 17:50:45 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2021-12-07 17:50:45 +0000
commitef01b9c804832ff485c9487c835105dae1483a26 (patch)
tree7c464b9b11238b1f2bc391233c663ed7809d8a33 /sys/arch
parent19c4a0cf2f74a4966b267dc81baff43f2d955106 (diff)
Delete an #if block that dates from rev 1.1 and hasn't been enabled
in those 20 years. We're unlikely to take the macppc pmap in the direction where it would apply. ok kettenis@
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/macppc/macppc/machdep.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/arch/macppc/macppc/machdep.c b/sys/arch/macppc/macppc/machdep.c
index 2014c70ed84..b436bf88fcb 100644
--- a/sys/arch/macppc/macppc/machdep.c
+++ b/sys/arch/macppc/macppc/machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: machdep.c,v 1.194 2021/10/06 15:46:03 claudio Exp $ */
+/* $OpenBSD: machdep.c,v 1.195 2021/12/07 17:50:44 guenther Exp $ */
/* $NetBSD: machdep.c,v 1.4 1996/10/16 19:33:11 ws Exp $ */
/*
@@ -489,12 +489,6 @@ sendsig(sig_t catcher, int sig, sigset_t mask, const siginfo_t *ksip,
tf->fixreg[5] = (int)&fp->sf_sc;
tf->srr0 = p->p_p->ps_sigcode;
-#if WHEN_WE_ONLY_FLUSH_DATA_WHEN_DOING_PMAP_ENTER
- pmap_extract(vm_map_pmap(&p->p_vmspace->vm_map),tf->srr0, &pa);
- syncicache(pa, (p->p_p->ps_emul->e_esigcode -
- p->p_p->ps_emul->e_sigcode));
-#endif
-
return 0;
}