From 8d19a0584b2a0577b570e052fc678602efc7875d Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Mon, 2 Jun 2003 02:41:38 +0000 Subject: Don't use ## to concatinate to two things that don't together make a C token. Two tokens that don't together form a vaid preprocssor token cannot be pasted together using ANSI-C token concatinatation. GCC 3.2's cpp, at least, produces the desired result w/o using "##". --- sys/i386/include/asm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys') diff --git a/sys/i386/include/asm.h b/sys/i386/include/asm.h index 30008a26d482..e868aa410c89 100644 --- a/sys/i386/include/asm.h +++ b/sys/i386/include/asm.h @@ -68,7 +68,7 @@ * to a possibly-modified form that will be invisible to C programs. */ #define CNAME(csym) csym -#define HIDENAME(asmsym) __CONCAT(.,asmsym) +#define HIDENAME(asmsym) .asmsym /* XXX should use .p2align 4,0x90 for -m486. */ #define _START_ENTRY .text; .p2align 2,0x90 -- cgit v1.3