- fixed comment: bs cannot be NULL anymore (and was never NULL previously)
[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 long x = 0xFFFFFFFF;
10         int       i = 5;
11         printf("%llx\n", test(&x, &i));
12         return 0;
13 }