tinycc: Add stubs: __floatundixf __fixunsxfdi.

* lib/libc+tcc-gcc.c (__floatundixf, __fixunsxfdi): New stub.
This commit is contained in:
Jan Nieuwenhuizen 2018-05-20 10:38:13 +02:00
parent f8f0aacb61
commit b9b6e17141
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 14 additions and 0 deletions

View File

@ -115,4 +115,18 @@ __ashrdi3 (long long a, int b)
{
return a >> b;
}
long double
__floatundixf (unsigned long long a)
{
eputs ("__floatundix stub\n");
return 0;
}
unsigned long long
__fixunsxfdi (double a1)
{
eputs ("__fixunsxfdi stub\n");
return 0;
}
#endif // !POSIX