diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-04-27 11:10:49 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2016-04-27 11:10:49 +0000 |
commit | 1e4141c1d3d79de7aeafefbb8a9eadb645d3159d (patch) | |
tree | dd82e18dc85ef4998ed3ada0f93686b1654870e0 /sys/arch/hppa64 | |
parent | 41dcc1a055b0bc8888ad5f53144b7aa9632f6e3b (diff) |
G/C DDB_REGS.
Diffstat (limited to 'sys/arch/hppa64')
-rw-r--r-- | sys/arch/hppa64/include/db_machdep.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/arch/hppa64/include/db_machdep.h b/sys/arch/hppa64/include/db_machdep.h index ba4e7566b95..bb4174a416e 100644 --- a/sys/arch/hppa64/include/db_machdep.h +++ b/sys/arch/hppa64/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.5 2016/02/27 13:08:07 mpi Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.6 2016/04/27 11:10:48 mpi Exp $ */ /* * Copyright (c) 1998-2005 Michael Shalayeff @@ -28,7 +28,6 @@ typedef long db_expr_t; typedef struct trapframe db_regs_t; extern db_regs_t ddb_regs; -#define DDB_REGS (&ddb_regs) #define PC_REGS(regs) ((db_addr_t)(regs)->tf_iioq[0]) #define SET_PC_REGS(r,pc) ((r)->tf_iioq[0] = (pc), (r)->tf_iioq[1] = (pc) + 4) |