mirror of https://gitee.com/openkylin/glibc.git
local-fpscr_values
Gbp-Pq: Topic sh4 Gbp-Pq: Name local-fpscr_values.diff
This commit is contained in:
parent
42451a91ac
commit
898406cf8a
|
@ -2,6 +2,7 @@ libc {
|
|||
GLIBC_2.2 {
|
||||
# functions used in other libraries
|
||||
__xstat64; __fxstat64; __lxstat64;
|
||||
__fpscr_values;
|
||||
|
||||
# a*
|
||||
alphasort64;
|
||||
|
|
|
@ -256,6 +256,7 @@ GLIBC_2.2 __finitel F
|
|||
GLIBC_2.2 __flbf F
|
||||
GLIBC_2.2 __fork F
|
||||
GLIBC_2.2 __fpending F
|
||||
GLIBC_2.2 __fpscr_values D 0x8
|
||||
GLIBC_2.2 __fpu_control D 0x4
|
||||
GLIBC_2.2 __fpurge F
|
||||
GLIBC_2.2 __freadable F
|
||||
|
|
|
@ -30,3 +30,14 @@ ENTRY (__syscall_error)
|
|||
|
||||
#define __syscall_error __syscall_error_1
|
||||
#include <sysdeps/unix/sh/sysdep.S>
|
||||
|
||||
.data
|
||||
.align 3
|
||||
.globl ___fpscr_values
|
||||
.type ___fpscr_values, @object
|
||||
.size ___fpscr_values, 8
|
||||
___fpscr_values:
|
||||
.long 0
|
||||
.long 0x80000
|
||||
weak_alias (___fpscr_values, __fpscr_values)
|
||||
|
||||
|
|
Loading…
Reference in New Issue