- Normalized some testprograms so that they have a main function and main
[libfirm] / ir / be / test / DivBug.c
1 int x[(1024 / sizeof (int))];
2
3 int main(int argc, char *argv[]) {
4   int y[(1024 / sizeof (int))];
5         printf("DivBug. ok!\n");
6         printf("Result: %d", y[(1024 / sizeof (int))-1]+x[(1024 / sizeof (int))-1]);
7
8         return 0;
9 }