forked from pool/glibc
Andreas Schwab
9a39949079
- unwind-ctor.patch: Add missing unwind information to ld.so on powerpc32 (BZ #23707) - old-getdents64.patch: Rewrite __old_getdents64 (BZ #23497) - nss-files-leak.patch: Fix file stream leak in aliases lookup (BZ #23521) - riscv-feholdexcept-setround.patch: Fix rounding save/restore bug - pthread-cond-broadcast-waiters-after-spinning.patch: Fix waiters-after-spinning case (BZ #23538) - regex-uninit-memory-access.patch: fix uninitialized memory access (BZ #23578) - spawni-maybe-script-execute.patch: Fix segfault in maybe_script_execute - gethostid-gethostbyname-failure.patch: Check for NULL value from gethostbyname_r (BZ #23679) - strstr-huge-needle.patch: Fix strstr bug with huge needles (BZ #23637) OBS-URL: https://build.opensuse.org/request/show/638790 OBS-URL: https://build.opensuse.org/package/show/Base:System/glibc?expand=0&rev=511
20 lines
715 B
Diff
20 lines
715 B
Diff
2018-08-03 DJ Delorie <dj@redhat.com>
|
|
|
|
* sysdeps/riscv/rvf/math_private.h (libc_feholdexcept_setround_riscv):
|
|
Move libc_fesetround_riscv after libc_feholdexcept_riscv.
|
|
|
|
Index: glibc-2.28/sysdeps/riscv/rvf/math_private.h
|
|
===================================================================
|
|
--- glibc-2.28.orig/sysdeps/riscv/rvf/math_private.h
|
|
+++ glibc-2.28/sysdeps/riscv/rvf/math_private.h
|
|
@@ -72,8 +72,8 @@ libc_fesetround_riscv (int round)
|
|
static __always_inline void
|
|
libc_feholdexcept_setround_riscv (fenv_t *envp, int round)
|
|
{
|
|
- libc_fesetround_riscv (round);
|
|
libc_feholdexcept_riscv (envp);
|
|
+ libc_fesetround_riscv (round);
|
|
}
|
|
|
|
#define libc_feholdexcept_setround libc_feholdexcept_setround_riscv
|