URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [tree-ssa/] [ssa-fre-35.c] - Rev 829
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O -fdump-tree-fre1-details" } */ struct s { _Complex float i; }; void g(struct s *); float a1 (float dd) { struct s sv; sv.i = dd; float d = __real__ sv.i; g(&sv); return d; } /* { dg-final { scan-tree-dump "Replaced REALPART_EXPR.*with dd" "fre1" } } */ /* { dg-final { cleanup-tree-dump "fre1" } } */
Go to most recent revision | Compare with Previous | Blame | View Log