tinycc: Add stubs: __fixdfdi, __fixxfdi, __fixsfdi.

* lib/libc+tcc-gcc.c (__fixdfdi, __fixxfdi, __fixsfdi): New stub.
This commit is contained in:
Jan Nieuwenhuizen 2018-05-21 08:43:58 +02:00
parent b9b6e17141
commit 8f1a26b40a
No known key found for this signature in database
GPG Key ID: F3C1A0D9C1D65273
1 changed files with 21 additions and 0 deletions

View File

@ -129,4 +129,25 @@ __fixunsxfdi (double a1)
eputs ("__fixunsxfdi stub\n");
return 0;
}
unsigned long long
__fixdfdi (double a1)
{
eputs ("__fixdfdi stub\n");
return 0;
}
unsigned long long
__fixxfdi (double a1)
{
eputs ("__fixxfdi stub\n");
return 0;
}
unsigned long long
__fixsfdi (double a1)
{
eputs ("__fixsfdi stub\n");
return 0;
}
#endif // !POSIX