Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 2 Jun 2003 21:35:56 -0700 (PDT)
From:      Juli Mallett <jmallett@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 32446 for review
Message-ID:  <200306030435.h534ZuB7035363@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=32446

Change 32446 by jmallett@jmallett_dalek on 2003/06/02 21:35:17

	Catch up with C99.  $ is no longer valid in an identifier, and
	as such may split tokens, meaning that $ ## n is no longer a
	requirement to get $n from a macro.  This possibly is not the
	case outside of C99???

Affected files ...

.. //depot/projects/mips/sys/mips/include/cpuregs.h#10 edit

Differences ...

==== //depot/projects/mips/sys/mips/include/cpuregs.h#10 (text+ko) ====

@@ -445,7 +445,7 @@
  * 31	MIPS_COP_0_DESAVE	.... DESAVE JTAG register.
  */
 #ifdef LOCORE
-#define	_(n)	__CONCAT($,n)
+#define	_(n)	$n
 #else
 #define	_(n)	n
 #endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200306030435.h534ZuB7035363>