Removed the SA110 condition compilation and instead test the cputype

variable to determine what adjustment is required for the trace back PC.
This commit is contained in:
mark 1997-02-04 06:53:41 +00:00
parent 403608bdbb
commit 1715a217cf

View File

@ -1,4 +1,4 @@
/* $NetBSD: db_trace.c,v 1.5 1996/10/17 02:46:49 mark Exp $ */
/* $NetBSD: db_trace.c,v 1.6 1997/02/04 06:53:41 mark Exp $ */
/*
* Copyright (c) 1996 Scott K. Stevens
@ -79,10 +79,9 @@ db_stack_trace_cmd(addr, have_addr, count, modif)
frame->fr_pc);*/
pc = frame->fr_pc;
#ifdef CPU_SA110
/* Adjust the PC so the same address is printed no matter what CPU */
pc += 4;
#endif /* CPU_SA110 */
if (cputype == ID_SA110)
pc += 4;
if (!INKERNEL(pc))
break;