ARM: libtcc1: Add stubs __floatundidf, __fixunsdfdi, __fixunsdfsi.

* lib/libtcc1.c (__floatdisf, __floatdidf)[__arm__]: New stubs.
This commit is contained in:
Jan (janneke) Nieuwenhuizen 2020-12-13 00:06:18 +01:00
parent e07e731dfd
commit 04afe3e238
No known key found for this signature in database
GPG key ID: F3C1A0D9C1D65273

View file

@ -299,3 +299,29 @@ __fixunsdfsi (int a, int b)
return 0; return 0;
} }
#if __arm__
int
__floatdisf (int a, int b)
{
#if !__TINYC__
static int stub = 0;
if (__mes_debug () && !stub)
eputs ("__floatdisf stub\n");
stub = 1;
#endif
return 0;
}
int
__floatdidf (int a, int b)
{
#if !__TINYC__
static int stub = 0;
if (__mes_debug () && !stub)
eputs ("__floatdidf stub\n");
stub = 1;
#endif
return 0;
}
#endif //__arm__