diff options
author | Thomas Schwinge <thomas@codesourcery.com> | 2012-02-10 21:05:54 +0100 |
---|---|---|
committer | Carlos O'Donell <carlos_odonell@mentor.com> | 2012-04-22 15:29:16 -0400 |
commit | 13ad7387d3824f019fab3c7c026cc552f8b1a60d (patch) | |
tree | 0ec0f07fd8495b6a70a5b8aea5830f66da281727 /sysdeps | |
parent | 3836d4d661d718f455b0ea9300f41b1218682cc7 (diff) | |
download | glibc-13ad7387d3824f019fab3c7c026cc552f8b1a60d.zip glibc-13ad7387d3824f019fab3c7c026cc552f8b1a60d.tar.gz glibc-13ad7387d3824f019fab3c7c026cc552f8b1a60d.tar.bz2 |
Fix x86 PLT slot usage for feraiseexcept.
Then we're elf/check-localplt.out-clean again.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/i386/fpu/feupdateenv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/i386/fpu/feupdateenv.c b/sysdeps/i386/fpu/feupdateenv.c index e283403..265b3c9 100644 --- a/sysdeps/i386/fpu/feupdateenv.c +++ b/sysdeps/i386/fpu/feupdateenv.c @@ -1,5 +1,5 @@ /* Install given floating-point environment and raise exceptions. - Copyright (C) 1997,99,2000,01,07,2010 Free Software Foundation, Inc. + Copyright (C) 1997,99,2000,01,07,2010,2012 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997. @@ -45,7 +45,7 @@ __feupdateenv (const fenv_t *envp) /* Raise the saved exception. Incidently for us the implementation defined format of the values in objects of type fexcept_t is the same as the ones specified using the FE_* constants. */ - feraiseexcept ((int) temp); + __feraiseexcept ((int) temp); /* Success. */ return 0; |