URL
https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk
Subversion Repositories openrisc_2011-10-31
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gfortran.dg/] [predcom-1.f] - Rev 302
Compare with Previous | Blame | View Log
! PR 32160, complex temporary variables were not marked as gimple registers ! { dg-do compile } ! { dg-options "-O3" } REAL FUNCTION CLANHT( N, E ) INTEGER N COMPLEX E( * ) INTEGER I REAL ANORM INTRINSIC ABS DO 20 I = 1, N ANORM = ANORM +ABS( E( I ) )+ ABS( E( I-1 ) ) 20 CONTINUE CLANHT = ANORM RETURN END