- BugFix: ensure that Convs are created in the right block
[libfirm] / ir / be / test / fehler144.c
1 int x=42,y=42;
2
3 int main(void) {
4         int ret = x & y ? 0:1;
5         printf("%d\n", ret);
6         return ret;
7 }