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 c340ca3e27
commit 40e0cb11b9
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 26 additions and 0 deletions

View File

@ -299,3 +299,29 @@ __fixunsdfsi (int a, int b)
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__