From 384a0a2f51046d30998ea6927b528f702dac45ea Mon Sep 17 00:00:00 2001 From: obrien Date: Mon, 2 Jun 2003 02:41:38 +0000 Subject: [PATCH] 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(-) diff --git a/sys/i386/include/asm.h b/sys/i386/include/asm.h index 30008a26d48..e868aa410c8 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 -- 2.45.2