URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [sparc/] [ultrasp11.c] - Rev 697
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR target/17245 */ /* Origin: <aaronw@net.com> */ /* Testcase by Christian Ehrhardt <ehrhardt@mathematik.uni-ulm.de> */ /* { dg-do compile } */ /* { dg-options "-O -mcpu=v9" } */ /* This used to fail on 32-bit Ultrasparc because reload was emitting a move insn that doesn't satisfy its constraints. */ int n; double range ; double bin ; double wmean; double f () { int i ; long double W = 0 ; for ( i = 0 ; i < n ; i ++) { double xi = range; double wi = bin; W += wi ; wmean += ( xi - wmean) * ( wi / W); } }
Go to most recent revision | Compare with Previous | Blame | View Log