git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1842
4a8a32a2-be11-0410-ad9d-
d568d2c75423
+2002-01-26 Bernhard Held <bernhard@bernhardheld.de>
+
+ * src/SDCCast.c (funcOfType): fix usage of double --float-reent
+
2002-01-22 Bernhard Held <bernhard@bernhardheld.de>
* support/regression/fwk/lib/testfwk.c (main): Removed workaround for bug #505387
DCL_TYPE (sym->type) = FUNCTION;
sym->type->next = copyLinkChain (type);
sym->etype = getSpec (sym->type);
- FUNC_ISREENT(sym->type) = rent;
+ FUNC_ISREENT(sym->type) = rent ? 1 : 0;
/* if arguments required */
if (nArgs)