fixed comment: get_call_abi() get the call type, NOT the method type of the called...
[libfirm] / ir / be / test / fehler029.c
1 /* Crash in ia32 floating point code emitter */
2
3 int f(float x)
4 {
5         return x != -1;
6 }
7
8
9 int main(void)
10 {
11         return f(-1);
12 }