From: borutr Date: Wed, 31 Oct 2007 18:00:54 +0000 (+0000) Subject: fixed regtest #1805702 X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=fadd2e4872075e85bf61f52c52c9c7b7ec06e333;p=fw%2Fsdcc fixed regtest #1805702 git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4957 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/support/regression/tests/bug-1805702.c b/support/regression/tests/bug-1805702.c index eb6ca043..54c532b2 100644 --- a/support/regression/tests/bug-1805702.c +++ b/support/regression/tests/bug-1805702.c @@ -18,15 +18,7 @@ test(void) float __fsmul (float, float); -/* multiply two floats */ float __fsmul (float a1, float a2) { + /* just for tesing... */ return (a1 + a2); } - -extern unsigned char _divuchar (unsigned char a, unsigned char b); - -signed char -_divschar (signed char a, signed char b) -{ - return _divuchar ((unsigned int)a, (unsigned int)b); -}