commit f4b395d13141b128ce34e85927ef12a56e148c61
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Fri Jan 8 13:12:02 2016 +0100
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Fri Jan 8 13:12:02 2016 +0100

    Add TODO for C99 float math
    
    C99 defines several kind of float maths, depending of the
    internal macro FLT_EVAL_METHOD.

diff --git a/cc1/expr.c b/cc1/expr.c
index dcd99e0..ebb81be 100644
--- 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:

Reply via email to