rename set_using_visited to set_using_irn_visited, some cosmetics, remove obsolete...
[libfirm] / ir / be / test / addn.c
1 int x = 1;
2
3 int main() {
4         int a = x + x + x + x;
5
6         printf("A = %d\n", a);
7         return 0;
8 }