51 lines
2.2 KiB
C
51 lines
2.2 KiB
C
|
/* Definitions for symbol handling done by flt-32 and dbl-64 sources.
|
||
|
Copyright (C) 2006 Free Software Foundation, Inc.
|
||
|
|
||
|
This file is part of GCC.
|
||
|
|
||
|
GCC is free software; you can redistribute it and/or modify it under
|
||
|
the terms of the GNU General Public License as published by the Free
|
||
|
Software Foundation; either version 2, or (at your option) any later
|
||
|
version.
|
||
|
|
||
|
In addition to the permissions in the GNU General Public License, the
|
||
|
Free Software Foundation gives you unlimited permission to link the
|
||
|
compiled version of this file into combinations with other programs,
|
||
|
and to distribute those combinations without any restriction coming
|
||
|
from the use of this file. (The General Public License restrictions
|
||
|
do apply in other respects; for example, they cover modification of
|
||
|
the file, and distribution when not linked into a combine
|
||
|
executable.)
|
||
|
|
||
|
GCC is distributed in the hope that it will be useful, but WITHOUT ANY
|
||
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
||
|
for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with GCC; see the file COPYING. If not, write to the Free
|
||
|
Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
|
||
|
02110-1301, USA. */
|
||
|
|
||
|
|
||
|
/* Define ALIASNAME as a strong alias for NAME. */
|
||
|
# define strong_alias(name, aliasname) _strong_alias(name, aliasname)
|
||
|
# define _strong_alias(name, aliasname) \
|
||
|
extern __typeof (name) aliasname __attribute__ ((alias (#name)));
|
||
|
|
||
|
/* This comes between the return type and function name in
|
||
|
a function definition to make that definition weak. */
|
||
|
# define weak_function __attribute__ ((weak))
|
||
|
# define weak_const_function __attribute__ ((weak, __const__))
|
||
|
|
||
|
/* Define ALIASNAME as a weak alias for NAME.
|
||
|
If weak aliases are not available, this defines a strong alias. */
|
||
|
# define weak_alias(name, aliasname) _weak_alias (name, aliasname)
|
||
|
# define _weak_alias(name, aliasname) \
|
||
|
extern __typeof (name) aliasname __attribute__ ((weak, alias (#name)));
|
||
|
|
||
|
/* Declare SYMBOL as weak undefined symbol (resolved to 0 if not defined). */
|
||
|
# define weak_extern(symbol) _weak_extern (weak symbol)
|
||
|
# define _weak_extern(expr) _Pragma (#expr)
|
||
|
|