diff options
author | alfred <alfred@FreeBSD.org> | 2002-06-01 20:22:33 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-06-01 20:22:33 +0000 |
commit | 0ac0431441763afda0b9a8129a7f9bd7f88335c5 (patch) | |
tree | bc21d8096a0ee6172b05a70dabc3dcfe6074f964 /sys/amd64/include/asmacros.h | |
parent | 3e1c335bb983d479cb9387f285d8830dc87d5b75 (diff) | |
download | FreeBSD-src-0ac0431441763afda0b9a8129a7f9bd7f88335c5.zip FreeBSD-src-0ac0431441763afda0b9a8129a7f9bd7f88335c5.tar.gz |
Silence preprocessor warning, No need to use CONCAT with "," and "word".
Diffstat (limited to 'sys/amd64/include/asmacros.h')
-rw-r--r-- | sys/amd64/include/asmacros.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/include/asmacros.h b/sys/amd64/include/asmacros.h index 325e3d6..07035ca 100644 --- a/sys/amd64/include/asmacros.h +++ b/sys/amd64/include/asmacros.h @@ -48,7 +48,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 #define ALIGN_DATA .p2align 2 /* 4 byte alignment, zero filled */ #ifdef GPROF |