fixed the bad programm
[libfirm] / ir / be / test / fehler139.c
1 #include <stdio.h>
2
3 long long test(long long *i, int *p) {
4         long long v = *i + (*p != 0);
5         return v;
6 }
7
8 int main() {
9         long x = 0xFFFFFFFF;
10         printf("%llx\n", test(&x, 5));
11         return 0;
12 }