1*5af32e75SAxel Dörfler /* Generic asm macros used on many machines. 2*5af32e75SAxel Dörfler Copyright (C) 1991, 92, 93, 96, 98 Free Software Foundation, Inc. 3*5af32e75SAxel Dörfler This file is part of the GNU C Library. 4*5af32e75SAxel Dörfler 5*5af32e75SAxel Dörfler The GNU C Library is free software; you can redistribute it and/or 6*5af32e75SAxel Dörfler modify it under the terms of the GNU Lesser General Public 7*5af32e75SAxel Dörfler License as published by the Free Software Foundation; either 8*5af32e75SAxel Dörfler version 2.1 of the License, or (at your option) any later version. 9*5af32e75SAxel Dörfler 10*5af32e75SAxel Dörfler The GNU C Library is distributed in the hope that it will be useful, 11*5af32e75SAxel Dörfler but WITHOUT ANY WARRANTY; without even the implied warranty of 12*5af32e75SAxel Dörfler MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 13*5af32e75SAxel Dörfler Lesser General Public License for more details. 14*5af32e75SAxel Dörfler 15*5af32e75SAxel Dörfler You should have received a copy of the GNU Lesser General Public 16*5af32e75SAxel Dörfler License along with the GNU C Library; if not, write to the Free 17*5af32e75SAxel Dörfler Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 18*5af32e75SAxel Dörfler 02111-1307 USA. */ 19*5af32e75SAxel Dörfler 20*5af32e75SAxel Dörfler #include "libc-symbols.h" 21*5af32e75SAxel Dörfler 22*5af32e75SAxel Dörfler #ifndef C_LABEL 23*5af32e75SAxel Dörfler 24*5af32e75SAxel Dörfler /* Define a macro we can use to construct the asm name for a C symbol. */ 25*5af32e75SAxel Dörfler #ifdef NO_UNDERSCORES 26*5af32e75SAxel Dörfler #ifdef __STDC__ 27*5af32e75SAxel Dörfler #define C_LABEL(name) name##: 28*5af32e75SAxel Dörfler #else 29*5af32e75SAxel Dörfler #define C_LABEL(name) name/**/: 30*5af32e75SAxel Dörfler #endif 31*5af32e75SAxel Dörfler #else 32*5af32e75SAxel Dörfler #ifdef __STDC__ 33*5af32e75SAxel Dörfler #define C_LABEL(name) _##name##: 34*5af32e75SAxel Dörfler #else 35*5af32e75SAxel Dörfler #define C_LABEL(name) _/**/name/**/: 36*5af32e75SAxel Dörfler #endif 37*5af32e75SAxel Dörfler #endif 38*5af32e75SAxel Dörfler 39*5af32e75SAxel Dörfler #endif 40*5af32e75SAxel Dörfler 41*5af32e75SAxel Dörfler /* Mark the end of function named SYM. This is used on some platforms 42*5af32e75SAxel Dörfler to generate correct debugging information. */ 43*5af32e75SAxel Dörfler #ifndef END 44*5af32e75SAxel Dörfler #define END(sym) 45*5af32e75SAxel Dörfler #endif 46