1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-18 10:35:55 +00:00

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 "##".
This commit is contained in:
David E. O'Brien 2003-06-02 02:41:38 +00:00
parent 9f2636a8cf
commit 8d19a0584b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=115671

View File

@ -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