scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit f4b395d13141b128ce34e85927ef12a56e148c61
parent 0e1ef503f2d2a13bdd07e6d5230d1a67f2a92b47
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri,  8 Jan 2016 13:12:02 +0100

Add TODO for C99 float math

C99 defines several kind of float maths, depending of the
internal macro FLT_EVAL_METHOD.

Diffstat:
Mcc1/expr.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/cc1/expr.c b/cc1/expr.c @@ -71,6 +71,7 @@ promote(Node *np) tp = (lim->max.i <= ilim->max.i) ? inttype : uinttype; break; case FLOAT: + /* TODO: Add support for C99 float math */ tp = doubletype; break; default: