update TODO, fox error33
authorMatthias Braun <matze@braunis.de>
Fri, 6 Jun 2008 17:28:49 +0000 (17:28 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 6 Jun 2008 17:28:49 +0000 (17:28 +0000)
[r20015]

TODO
parsetest/cp_error033.c

diff --git a/TODO b/TODO
index 9e073a9..1c59ff0 100644 (file)
--- a/TODO
+++ b/TODO
@@ -42,15 +42,17 @@ Missing Warnings:
 * catch the if(k = b) cases, maybe require all assignments to be in parentheses
   (but some few exceptions like toplevel, nested assignments)
 
+main/driver:
+* delete output file if we had an error
+
 Spec-Status:
-(only test datasets tried yet)
 164.gzip:    works
 175.vpr:     works
-176.gcc:     not ok
+176.gcc:     sometimes works...
 181.mcf:     works
 186.crafty:  works (~though an asm is replaced with a stub)
-253.perlbmk: not ok
-254.gap:     not ok
+253.perlbmk: works
+254.gap:     works
 255.vortex:  works
 256.bzip2:   works
 300.twolf:   works
index bec16d7..093c28b 100644 (file)
@@ -8,7 +8,8 @@ static struct A deduce_conversion(int from, int to)
        return result;
 }
 
-struct A *globa;
+struct A globa_real;
+struct A *globa = &globa_real;
 
 int main(int argc, char **argv)
 {