fehler127: WTF - autobreak expects this to compile.
[libfirm] / ir / be / test / fehler015.c
1 #include <stdlib.h>
2 #include <math.h>
3
4 int i = 0;
5 int *p1 = &i;
6
7 int main()
8 {
9         *p1 = 1066;
10         if(p1 != &i)
11                 abort();
12
13         return 0;
14 }