summaryrefslogtreecommitdiff
path: root/sys/ddb/db_run.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-09-06 19:49:22 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-09-06 19:49:22 +0000
commit850ce59d0a815c6dfb93e953d0e460054a91c35c (patch)
tree5151af7c11015a9d3026f94ef7ef609e05362ec6 /sys/ddb/db_run.c
parent10fdcada80a73449061f321c5127a712a7706a4a (diff)
Remove old m88k workaround, now that we have SET_PC_REGS().
Diffstat (limited to 'sys/ddb/db_run.c')
-rw-r--r--sys/ddb/db_run.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c
index b9b40a9b4ee..b4739612b5a 100644
--- a/sys/ddb/db_run.c
+++ b/sys/ddb/db_run.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_run.c,v 1.17 2005/01/04 21:11:44 espie Exp $ */
+/* $OpenBSD: db_run.c,v 1.18 2005/09/06 19:49:21 miod Exp $ */
/* $NetBSD: db_run.c,v 1.8 1996/02/05 01:57:12 christos Exp $ */
/*
@@ -120,9 +120,7 @@ db_stop_at_pc(regs, is_breakpoint)
# ifdef SET_PC_REGS
SET_PC_REGS(regs, old_pc);
# else
-# ifndef m88k
PC_REGS(regs) = old_pc;
-# endif
# endif
#endif
}