URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [complex-3.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR 22116 */ void g(_Complex float); _Complex float f(int data, _Complex float x, _Complex float y) { _Complex float i, t; if (data) { i = x + __imag__ y; g(i); } else i = 5; t = x + __imag__ y; g(t); return t * i; }
Go to most recent revision | Compare with Previous | Blame | View Log