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/] [pr25860.c] - Rev 298
Go to most recent revision | Compare with Previous | Blame | View Log
/* We used to ICE because PRE would try to PRE the load of *Note from the loop. */ struct g { int i; }; struct f { struct g i; }; int GSM_RingNoteGetFullDuration(struct g)__attribute__((const)); void savewav(struct f *gg) { struct g *Note; long i = 0,j,length=0; Note = &gg->i; for (j=0;j<GSM_RingNoteGetFullDuration(*Note);j++) ; }
Go to most recent revision | Compare with Previous | Blame | View Log