Index: b/usr/src/uts/intel/ia32/sys/asm_linkage.h =================================================================== --- a/usr/src/uts/intel/ia32/sys/asm_linkage.h 2014-03-01 22:52:32.539851283 +0400 +++ b/usr/src/uts/intel/ia32/sys/asm_linkage.h 2014-03-01 22:53:39.240611387 +0400 @@ -153,11 +153,11 @@ #define MCOUNT(x) \ /* CSTYLED */ \ - .lcomm .L_/**/x/**/1, 4, 4; \ + .lcomm .L_##x##1, 4, 4; \ pushl %ebp; \ movl %esp, %ebp; \ /* CSTYLED */ \ - movl $.L_/**/x/**/1, %edx; \ + movl $.L_##x##1, %edx; \ call _mcount; \ popl %ebp @@ -180,11 +180,11 @@ */ #define ANSI_PRAGMA_WEAK(sym, stype) \ /* CSTYLED */ \ - .weak _/**/sym; \ + .weak _##sym; \ /* CSTYLED */ \ - .type _/**/sym, @stype; \ + .type _##sym, @stype; \ /* CSTYLED */ \ -_/**/sym = sym +_##sym = sym /* * Like ANSI_PRAGMA_WEAK(), but for unrelated names, as in: