switch is still broken, copying over cparser testcase since noone runs the cparser...
[libfirm] / ir / be / test / unary.c
1 int a,b,c,d;
2
3 int main(void) {
4         b = -a;
5         c = !a;
6         d = ~a;
7         return 0;
8 }