re PR libfortran/30007 (libgfortran doesn't build for sh-elf)
PR libfortran/30007 * libgfortran.h: Do not prefix symbol name with __USER_LABEL_PREFIX__ when used in __attribute__((__alias__(...))). From-SVN: r121569
This commit is contained in:
parent
b10fc6f54a
commit
3075a4cd08
@ -1,3 +1,9 @@
|
||||
2007-02-04 Francois-Xavier Coudert <coudert@clipper.ens.fr>
|
||||
|
||||
PR libfortran/30007
|
||||
* libgfortran.h: Do not prefix symbol name with
|
||||
__USER_LABEL_PREFIX__ when used in __attribute__((__alias__(...))).
|
||||
|
||||
2007-02-02 Paul Thomas <pault@gcc.gnu.org>
|
||||
|
||||
PR fortran/30284
|
||||
|
@ -126,10 +126,10 @@ typedef off_t gfc_offset;
|
||||
# define export_proto(x) sym_rename(x, PREFIX(x))
|
||||
# define export_proto_np(x) extern char swallow_semicolon
|
||||
# define iexport_proto(x) internal_proto(x)
|
||||
# define iexport(x) iexport1(x, __USER_LABEL_PREFIX__, IPREFIX(x))
|
||||
# define iexport1(x,p,y) iexport2(x,p,y)
|
||||
# define iexport2(x,p,y) \
|
||||
extern __typeof(x) PREFIX(x) __attribute__((__alias__(#p #y)))
|
||||
# define iexport(x) iexport1(x, IPREFIX(x))
|
||||
# define iexport1(x,y) iexport2(x,y)
|
||||
# define iexport2(x,y) \
|
||||
extern __typeof(x) PREFIX(x) __attribute__((__alias__(#y)))
|
||||
/* ??? We're not currently building a dll, and it's wrong to add dllexport
|
||||
to objects going into a static library archive. */
|
||||
#elif 0 && defined(HAVE_ATTRIBUTE_DLLEXPORT)
|
||||
|
Loading…
Reference in New Issue
Block a user