Short example of graph, which needs RN reduction.
[libfirm] / ir / be / test / fehler011.c
1 #include <stdio.h>
2
3 int main(void) {
4
5         long long a = 0x0123456789012345;
6         int b = 23;
7         int c;
8
9         c =  a % b;
10
11         printf("%d\n", c);
12
13         return 0;
14 }