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.dg/] [20041122-1.c] - Rev 328
Go to most recent revision | Compare with Previous | Blame | View Log
/* PR rtl-optimization/18611 */ /* { dg-do compile } */ /* { dg-options "-O1 -fmove-loop-invariants" } */ typedef struct { int channels_per_image; int channel[8]; } CineonImageInformation; void dumpCineonImageInfo(CineonImageInformation* imageInfo) { int i; for (i = 0; i < imageInfo->channels_per_image; ++i) { dumpCineonChannelInfo(&imageInfo->channel[i]); } }
Go to most recent revision | Compare with Previous | Blame | View Log