switch is still broken, copying over cparser testcase since noone runs the cparser...
[libfirm] / ir / be / test / truth.c
1 int a = 3, b = 4, c = 3;
2
3 int truth(int a, int b, int c)
4 {
5   return (a == c & (a < b));
6 }
7
8 int main()
9 {
10   printf("truth(%d, %d, %d) = %d\n", a, b, c, truth(a, b, c));
11   return 0;
12 }