commit 557b3bd32b1d1b7801e565aa695d7340221b20ce
Author:     Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Wed Aug 26 22:29:07 2015 +0200
Commit:     Roberto E. Vargas Caballero <[email protected]>
CommitDate: Wed Aug 26 22:29:07 2015 +0200

    Add some TODO in the code

diff --git a/cc1/cpp.c b/cc1/cpp.c
index dae6c3a..ee612ee 100644
--- a/cc1/cpp.c
+++ b/cc1/cpp.c
@@ -30,6 +30,7 @@ defmacro(char *s)
 
        strcpy(yytext, s);
        sym = lookup(NS_CPP, yytext);
+       /* FIXME: We have a problem here */
        sym->flags |= ISDECLARED;
        return sym;
 }
diff --git a/cc1/expr.c b/cc1/expr.c
index 03d7dd3..437f38b 100644
--- a/cc1/expr.c
+++ b/cc1/expr.c
@@ -423,6 +423,8 @@ integeruop(char op, Node *np)
        return usimplify(op, np->type, np);
 }
 
+/* TODO: check validity of types */
+
 static Node *
 constconv(Node *np, Type *newtp)
 {

Reply via email to