URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.target/] [i386/] [branch-cost3.c] - Rev 704
Go to most recent revision | Compare with Previous | Blame | View Log
/* { dg-do compile } */ /* { dg-options "-O2 -fdump-tree-gimple -mbranch-cost=2" } */ extern int doo (void); int foo (_Bool a, _Bool b) { if (a && b) return doo (); return 0; } /* { dg-final { scan-tree-dump-times "if " 1 "gimple" } } */ /* { dg-final { scan-tree-dump-times " & " 1 "gimple" } } */ /* { dg-final { cleanup-tree-dump "gimple" } } */
Go to most recent revision | Compare with Previous | Blame | View Log