remove #if 0 around arch_get_irn_ops, no idea why it was there...
[libfirm] / ir / be / test / fehler099.c
1 int c = 16;
2
3 unsigned long long test(int c)
4 {
5         return 0xFFFFFFFFFFFFFFFFULL >> c;
6 }
7
8 int main(void)
9 {
10         printf("0x%016llX (should be 0x0000FFFFFFFFFFFF)\n", test(c));
11         return 0;
12 }