xref: /netbsd-src/sys/arch/ews4800mips/include/db_machdep.h (revision 413d532bcc3f62d122e56d92e13ac64825a40baf)
1 /*	$NetBSD: db_machdep.h,v 1.2 2011/07/09 16:58:04 matt Exp $	*/
2 
3 #include <mips/db_machdep.h>
4 
5 #ifdef DDB
6 void __db_print_symbol(db_expr_t);
7 #define	DB_PRINT_CALLER()						\
8 	__db_print_symbol((db_expr_t)__builtin_return_address(0))
9 #else
10 #define	DB_PRINT_CALLER()	((void)0)
11 #endif
12