From b9b6e17141f8bac55976b7d4712d893b50fbaf09 Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Sun, 20 May 2018 10:38:13 +0200 Subject: [PATCH] tinycc: Add stubs: __floatundixf __fixunsxfdi. * lib/libc+tcc-gcc.c (__floatundixf, __fixunsxfdi): New stub. --- lib/libc+tcc-gcc.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/libc+tcc-gcc.c b/lib/libc+tcc-gcc.c index a56016c2..0842f822 100644 --- a/lib/libc+tcc-gcc.c +++ b/lib/libc+tcc-gcc.c @@ -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