PERFORCE change 32446 for review

Juli Mallett jmallett at FreeBSD.org
Mon Jun 2 21:35:58 PDT 2003


http://perforce.freebsd.org/chv.cgi?CH=32446

Change 32446 by jmallett at 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


More information about the p4-projects mailing list