PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / 20041122-1.c
blobb2120f815456b5724d1bc5d066e358e52fa9b66d
1 /* PR rtl-optimization/18611 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fmove-loop-invariants" } */
5 void dumpCineonChannelInfo ();
6 typedef struct {
7 int channels_per_image;
8 int channel[8];
9 } CineonImageInformation;
10 void
11 dumpCineonImageInfo(CineonImageInformation* imageInfo) {
13 int i;
14 for (i = 0; i < imageInfo->channels_per_image; ++i) {
15 dumpCineonChannelInfo(&imageInfo->channel[i]);