fixed regtest #1805702
authorborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Wed, 31 Oct 2007 18:00:54 +0000 (18:00 +0000)
committerborutr <borutr@4a8a32a2-be11-0410-ad9d-d568d2c75423>
Wed, 31 Oct 2007 18:00:54 +0000 (18:00 +0000)
git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@4957 4a8a32a2-be11-0410-ad9d-d568d2c75423

support/regression/tests/bug-1805702.c

index eb6ca043589de4787dbb03d16d5cb5b21ab2fd68..54c532b23df188c6e23046dd9aaeb39231c36af2 100644 (file)
@@ -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);
-}