diff options
| author | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-04 10:30:17 +0000 |
|---|---|---|
| committer | fxcoudert <fxcoudert@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-04 10:30:17 +0000 |
| commit | 888d4c42155c9d4906bb10d565d3985ea105058e (patch) | |
| tree | 825af2fb0d37366d20fb14c3209321c62c2f8dd8 | |
| parent | 1bc0f76b068e42d3230fa42d20c1c84c8d8a1213 (diff) | |
| download | ppe42-gcc-888d4c42155c9d4906bb10d565d3985ea105058e.tar.gz ppe42-gcc-888d4c42155c9d4906bb10d565d3985ea105058e.zip | |
PR libfortran/30007
* libgfortran.h: Do not prefix symbol name with
__USER_LABEL_PREFIX__ when used in __attribute__((__alias__(...))).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121569 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | libgfortran/ChangeLog | 6 | ||||
| -rw-r--r-- | libgfortran/libgfortran.h | 8 |
2 files changed, 10 insertions, 4 deletions
diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 4f5eed45d52..48b7e940879 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -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 diff --git a/libgfortran/libgfortran.h b/libgfortran/libgfortran.h index af53e480009..2f7a5396eef 100644 --- a/libgfortran/libgfortran.h +++ b/libgfortran/libgfortran.h @@ -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) |

