A file with just that code in it is parsed fine by Splint 3.1.2.
Can you provide a simple, complete example which exhibits the behaviour you're describing?
A quick bit of experimenting says splint doesn't appear to support mixed code and declarations, which would put me off using it. So the code you posted by itself is ok, but this will give a parse error:
void foo () {
int x = 1;
++x;
struct a { int x; int y; } z;
}
This change to the grammar will allow it to parse the simple mixed code and declaration above, and it then appears to work but I've not tested it exhaustively.
$ diff original/src/cgrammar.y src/cgrammar.y
1711a1712
> | initializer
