mirror of
https://git.code.sf.net/p/mingw-w64/mingw-w64
synced 2024-11-24 02:14:43 +08:00
DFP: fix typos and errors caught by GCC 15
Signed-off-by: Jonathan Yong <10walls@gmail.com>
This commit is contained in:
parent
05598db991
commit
dbda83ce39
@ -47,5 +47,5 @@
|
|||||||
#include "dfp_internal.h"
|
#include "dfp_internal.h"
|
||||||
|
|
||||||
int __cdecl __signbitd128 (_Decimal128 x){
|
int __cdecl __signbitd128 (_Decimal128 x){
|
||||||
return __buintin_signbitd128(x);
|
return __builtin_signbitd128(x);
|
||||||
}
|
}
|
||||||
|
@ -47,5 +47,5 @@
|
|||||||
#include "dfp_internal.h"
|
#include "dfp_internal.h"
|
||||||
|
|
||||||
int __cdecl __signbitd32 (_Decimal32 x){
|
int __cdecl __signbitd32 (_Decimal32 x){
|
||||||
return __buintin_signbitd32(x);
|
return __builtin_signbitd32(x);
|
||||||
}
|
}
|
||||||
|
@ -47,5 +47,5 @@
|
|||||||
#include "dfp_internal.h"
|
#include "dfp_internal.h"
|
||||||
|
|
||||||
int __cdecl __signbitd64 (_Decimal64 x){
|
int __cdecl __signbitd64 (_Decimal64 x){
|
||||||
return __buintin_signbitd64(x);
|
return __builtin_signbitd64(x);
|
||||||
}
|
}
|
||||||
|
@ -1217,28 +1217,28 @@ __MINGW_EXTENSION long long __cdecl llrintl (long double);
|
|||||||
extern int __cdecl __signbitd128 (_Decimal128);
|
extern int __cdecl __signbitd128 (_Decimal128);
|
||||||
|
|
||||||
#ifndef __CRT__NO_INLINE
|
#ifndef __CRT__NO_INLINE
|
||||||
__CRT_INLINE __cdecl __isnand32(_Decimal32 x){
|
__CRT_INLINE int __cdecl __isnand32(_Decimal32 x){
|
||||||
return __builtin_isnand32(x);
|
return __builtin_isnand32(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
__CRT_INLINE __cdecl __isnand64(_Decimal64 x){
|
__CRT_INLINE int __cdecl __isnand64(_Decimal64 x){
|
||||||
return __builtin_isnand64(x);
|
return __builtin_isnand64(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
__CRT_INLINE __cdecl __isnand128(_Decimal128 x){
|
__CRT_INLINE int __cdecl __isnand128(_Decimal128 x){
|
||||||
return __builtin_isnand128(x);
|
return __builtin_isnand128(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
__CRT_INLINE int __cdecl __signbitd32 (_Decimal32 x){
|
__CRT_INLINE int __cdecl __signbitd32 (_Decimal32 x){
|
||||||
return __buintin_signbitd32(x);
|
return __builtin_signbitd32(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
__CRT_INLINE int __cdecl __signbitd64 (_Decimal64 x){
|
__CRT_INLINE int __cdecl __signbitd64 (_Decimal64 x){
|
||||||
return __buintin_signbitd64(x);
|
return __builtin_signbitd64(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
__CRT_INLINE int __cdecl __signbitd128 (_Decimal128 x){
|
__CRT_INLINE int __cdecl __signbitd128 (_Decimal128 x){
|
||||||
return __buintin_signbitd128(x);
|
return __builtin_signbitd128(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user