summaryrefslogtreecommitdiff
path: root/sys/arch/powerpc
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2010-11-27 19:57:24 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2010-11-27 19:57:24 +0000
commit0ed7bf7b63c6099fc1205fa39502c78fba9d94c0 (patch)
tree305a037847e752d58307b5307bc7e15b5ef94c58 /sys/arch/powerpc
parent5e5b8791118667f1de14d12971ebf359c1488cec (diff)
Remove ddb single-step load and store counters. Most platforms do not
implement them, and they are of questionable usefulness.
Diffstat (limited to 'sys/arch/powerpc')
-rw-r--r--sys/arch/powerpc/include/db_machdep.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/powerpc/include/db_machdep.h b/sys/arch/powerpc/include/db_machdep.h
index af3a6400e7b..1f46b301975 100644
--- a/sys/arch/powerpc/include/db_machdep.h
+++ b/sys/arch/powerpc/include/db_machdep.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.h,v 1.22 2008/09/16 04:20:42 drahn Exp $ */
+/* $OpenBSD: db_machdep.h,v 1.23 2010/11/27 19:57:23 miod Exp $ */
/* $NetBSD: db_machdep.h,v 1.13 1996/04/29 20:50:08 leo Exp $ */
/*
@@ -88,8 +88,6 @@ extern db_regs_t ddb_regs; /* register state */
#define inst_return(ins) (((ins)&M_RTS) == I_RTS)
#define inst_call(ins) (((ins)&M_BC ) == I_BC || \
((ins)&M_B ) == I_B )
-#define inst_load(ins) 0
-#define inst_store(ins) 0
#ifdef _KERNEL