demonstartes a bug in the tarval module
[libfirm] / ir / be / test / reassoc.c
1 int a = 0;
2 int b = 3;
3
4 int main() {
5         int res = (a-b) * (a-b);
6         printf("%d\n", res);
7         return 0;
8 }