summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-05-23 17:17:13 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2020-05-23 17:17:13 -0400
commitdc6a7e198d2001086dd2245dd223bab3eda5670b (patch)
treedfd1ec9ae7ecad4a44cb42deb025288707e85ed8 /main.c
parent38da18a86693f4ee46952b49601438f8c73ef34c (diff)
turned if, while, for, block into statements
Diffstat (limited to 'main.c')
-rw-r--r--main.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/main.c b/main.c
index 48ae840..a092fce 100644
--- a/main.c
+++ b/main.c
@@ -8,10 +8,8 @@
/*
@TODO:
-get rid of blocks returning values
-turn if, while, for, block into statements
+fix expr_find_end
see if you can get rid of Expression.cgen.id--would mean that kind doesn't have to be a bitfield anymore
-make sure functions which should return things do
check return #C("3");
initialization statements (maybe #init(-50), where -50 is the priority and <0 is reserved for standard library)
if we do #include "foo.toc", bar; and foo.toc fails, bar should be declared as TYPE_UNKNOWN (right now it's undeclared)