Module Name:    src
Committed By:   christos
Date:           Thu Oct 17 21:11:15 UTC 2013

Modified Files:
        src/sys/arch/amd64/include: db_machdep.h

Log Message:
use the parameter for instruction macros


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/amd64/include/db_machdep.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/amd64/include/db_machdep.h
diff -u src/sys/arch/amd64/include/db_machdep.h:1.11 src/sys/arch/amd64/include/db_machdep.h:1.12
--- src/sys/arch/amd64/include/db_machdep.h:1.11	Thu May 26 11:34:12 2011
+++ src/sys/arch/amd64/include/db_machdep.h	Thu Oct 17 17:11:15 2013
@@ -1,4 +1,4 @@
-/*	$NetBSD: db_machdep.h,v 1.11 2011/05/26 15:34:12 joerg Exp $	*/
+/*	$NetBSD: db_machdep.h,v 1.12 2013/10/17 21:11:15 christos Exp $	*/
 
 /* 
  * Mach Operating System
@@ -87,8 +87,8 @@ extern db_regs_t *ddb_regp;
 #define	inst_call(ins)		(((ins)&0xff) == I_CALL || \
 				 (((ins)&0xff) == I_CALLI && \
 				  ((ins)&0x3800) == 0x1000))
-#define inst_load(ins)		0
-#define inst_store(ins)		0
+#define inst_load(ins)		__USE(ins)
+#define inst_store(ins)		__USE(ins)
 
 /* access capability and access macros */
 

Reply via email to