Bug#770657: tcc: fails with struct defined in function

2015-01-26 Thread Thomas Preud'homme
Control: forwarded -1 http://lists.nongnu.org/archive/html/tinycc-devel/2014-08/msg00050.html Control: tags -1 + upstream A patch has been floating on the mailing list but was not of good enough quality to be included. I shall be able to commit soon again to this project and will try to move

Bug#770657: tcc: fails with struct defined in function

2014-11-22 Thread Vincent Lefevre
Package: tcc Version: 0.9.27~git20140923.9d7fb33-3 Severity: normal Tags: upstream tcc fails on the following two cases: typedef struct foo foo_t; void f1 (void) { struct foo { char a; }; } void f2 (void) { struct foo { char a;