icc doesn't like -fomit-frame-pointer without -O
[libfirm] / ir / be / test / fehler089.c
1 #include <stdio.h>
2
3 unsigned long long x = 43;
4
5 int main(void) {
6         printf("Res: %lld (should be 42)\n", x - 1);
7         return 0;
8 }