mirror of git://sourceware.org/git/glibc.git
Update sysdeps/mips/dl-lookup.c from generic version.
This commit is contained in:
parent
8173ecfb05
commit
332d091eba
|
@ -1,3 +1,7 @@
|
||||||
|
2012-05-11 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* sysdeps/mips/dl-lookup.c: Update from generic version.
|
||||||
|
|
||||||
2012-05-08 Joseph Myers <joseph@codesourcery.com>
|
2012-05-08 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
* sysdeps/mips/fpu/libm-test-ulps: Move to ...
|
* sysdeps/mips/fpu/libm-test-ulps: Move to ...
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
Lesser General Public License for more details.
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU Lesser General Public
|
You should have received a copy of the GNU Lesser General Public
|
||||||
License along with the GNU C Library. If not, see
|
License along with the GNU C Library; if not, see
|
||||||
<http://www.gnu.org/licenses/>. */
|
<http://www.gnu.org/licenses/>. */
|
||||||
|
|
||||||
#include <alloca.h>
|
#include <alloca.h>
|
||||||
|
@ -786,7 +786,8 @@ _dl_lookup_symbol_x (const char *undef_name, struct link_map *undef_map,
|
||||||
if (__builtin_expect (current_value.s == NULL, 0))
|
if (__builtin_expect (current_value.s == NULL, 0))
|
||||||
{
|
{
|
||||||
if ((*ref == NULL || ELFW(ST_BIND) ((*ref)->st_info) != STB_WEAK)
|
if ((*ref == NULL || ELFW(ST_BIND) ((*ref)->st_info) != STB_WEAK)
|
||||||
&& skip_map == NULL)
|
&& skip_map == NULL
|
||||||
|
&& !(GLRO(dl_debug_mask) & DL_DEBUG_UNUSED))
|
||||||
{
|
{
|
||||||
/* We could find no value for a strong reference. */
|
/* We could find no value for a strong reference. */
|
||||||
const char *reference_name = undef_map ? undef_map->l_name : "";
|
const char *reference_name = undef_map ? undef_map->l_name : "";
|
||||||
|
|
Loading…
Reference in New Issue