Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/amd64/include we need to return something here.



details:   https://anonhg.NetBSD.org/src/rev/e086b1114637
branches:  trunk
changeset: 790593:e086b1114637
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Oct 17 23:04:20 2013 +0000

description:
we need to return something here.

diffstat:

 sys/arch/amd64/include/db_machdep.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r b3cefd20fe0b -r e086b1114637 sys/arch/amd64/include/db_machdep.h
--- a/sys/arch/amd64/include/db_machdep.h       Thu Oct 17 22:07:59 2013 +0000
+++ b/sys/arch/amd64/include/db_machdep.h       Thu Oct 17 23:04:20 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: db_machdep.h,v 1.12 2013/10/17 21:11:15 christos Exp $ */
+/*     $NetBSD: db_machdep.h,v 1.13 2013/10/17 23:04:20 christos Exp $ */
 
 /* 
  * Mach Operating System
@@ -87,8 +87,8 @@
 #define        inst_call(ins)          (((ins)&0xff) == I_CALL || \
                                 (((ins)&0xff) == I_CALLI && \
                                  ((ins)&0x3800) == 0x1000))
-#define inst_load(ins)         __USE(ins)
-#define inst_store(ins)                __USE(ins)
+#define inst_load(ins)         (__USE(ins), 0)
+#define inst_store(ins)                (_USE(ins), 0)
 
 /* access capability and access macros */
 



Home | Main Index | Thread Index | Old Index