demonstartes a bug in the tarval module
[libfirm] / ir / be / test / fehler133.c
1 int main(void)
2 {
3         int x = 19;
4         asm("addl $23, %0" : "+r" (x));
5         printf("%d\n", x);
6         return x != 42;
7 }