Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mvme68k/include gcc3 bitches about a gratuitous use...



details:   https://anonhg.NetBSD.org/src/rev/35aeb4675582
branches:  trunk
changeset: 554051:35aeb4675582
user:      scw <scw%NetBSD.org@localhost>
date:      Fri Oct 24 21:30:06 2003 +0000

description:
gcc3 bitches about a gratuitous use of __CONCAT(), so just delete it.

diffstat:

 sys/arch/mvme68k/include/prom.h |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 8de67b9dcee1 -r 35aeb4675582 sys/arch/mvme68k/include/prom.h
--- a/sys/arch/mvme68k/include/prom.h   Fri Oct 24 21:28:24 2003 +0000
+++ b/sys/arch/mvme68k/include/prom.h   Fri Oct 24 21:30:06 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: prom.h,v 1.12 2001/11/09 18:18:19 scw Exp $    */
+/*     $NetBSD: prom.h,v 1.13 2003/10/24 21:30:06 scw Exp $    */
 
 /*
  * Copyright (c) 1995 Theo de Raadt
@@ -156,7 +156,7 @@
 #endif
 
 #define MVMEPROM_CALL(x) \
-       __asm__ __volatile (__CONCAT("trap #15; .short ", __STRING(x)) )
+       __asm__ __volatile ("trap #15; .short " __STRING(x))
 #define MVMEPROM_NOARG() \
        __asm__ __volatile ("clrl %sp@-")
 #define MVMEPROM_ARG1(arg) \



Home | Main Index | Thread Index | Old Index