Gah, I'm confused.
Why does
| OPCODE1_BRANCH(F_BRANCH_IF_NOT_LOCAL, "branch if !local", 0, { | ... | }); ^ expand to
| void opcode_F_BRANCH_IF_NOT_LOCAL(int arg1) { ... } } } ^ while
| CJUMP(F_BRANCH_WHEN_EQ, "branch if ==", is_eq); ^ expands to
| void opcode_F_BRANCH_WHEN_EQ(void) { ... } }; ^ ?
Ie/and is there a prettier way of getting rid of the warnings without rewriting interpret_functions.h without semicolons?
/ Mirar
Previous text:
2002-12-10 18:43: Subject: Re: gcc 3.2
I got about 34 unique such warnings in interpret_functions.h and 1 warning in gc.h, it doesn't seem to hard to fix. But I don't know what happens on other systems...
/ Mirar