New test cases for Mux and ia32_Test
[libfirm] / ir / be / test / mux.c
1
2 int f(int a, int b) {
3         return a && b ? 11 : 42;
4 }
5
6 int x = 2, y = 3;
7
8 int main(void) {
9         int ret = 23 < f(x,y);
10         printf("%d\n", ret);
11         return ret;
12 }