From: DJ Delorie Date: Thu, 13 Jul 2000 00:51:40 +0000 (+0000) Subject: * pe-dll.c (make_one): fix a typo in the __imp_ name decoration X-Git-Tag: newlib-1_9_0~1496 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5b4cf3f497bc6294cb2c2743de649ffaeff3a6d0;p=external%2Fbinutils.git * pe-dll.c (make_one): fix a typo in the __imp_ name decoration for dll import libraries --- diff --git a/ld/ChangeLog b/ld/ChangeLog index 8d3e757..a347f2c 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2000-07-12 Charles Wilson + + * pe-dll.c (make_one): fix a typo in the __imp_ name decoration + for dll import libraries + 2000-07-12 Mark Elbrecht * scripttempl/i386go32.sc: Support the g++ attribute init_priority in diff --git a/ld/pe-dll.c b/ld/pe-dll.c index d028fd1..ad7b28a 100644 --- a/ld/pe-dll.c +++ b/ld/pe-dll.c @@ -1444,7 +1444,7 @@ make_one (exp, parent) if (! exp->flag_data) quick_symbol (abfd, U(""), exp->internal_name, "", tx, BSF_GLOBAL, 0); quick_symbol (abfd, U("_head_"), dll_symname, "", UNDSEC, BSF_GLOBAL, 0); - quick_symbol (abfd, U("__imp_"), exp->internal_name, "", id5, BSF_GLOBAL, 0); + quick_symbol (abfd, U("_imp__"), exp->internal_name, "", id5, BSF_GLOBAL, 0); if (pe_dll_compat_implib) quick_symbol (abfd, U("__imp_"), exp->internal_name, "", id5, BSF_GLOBAL, 0);