ARM: libtcc1: Add stubs __floatundidf, __fixunsdfdi, __fixunsdfsi.
* lib/libtcc1.c (__floatdisf, __floatdidf)[__arm__]: New stubs.
This commit is contained in:
parent
e07e731dfd
commit
04afe3e238
|
@ -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__
|
||||||
|
|
Loading…
Reference in a new issue