Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / 20041122-1.c
blob2d9faccba43537f089ccbc15aa3d5642d60e83c2
1 /* PR rtl-optimization/18611 */
2 /* { dg-do compile } */
3 /* { dg-options "-O1 -fmove-loop-invariants" } */
4 typedef struct {
5 int channels_per_image;
6 int channel[8];
7 } CineonImageInformation;
8 void
9 dumpCineonImageInfo(CineonImageInformation* imageInfo) {
11 int i;
12 for (i = 0; i < imageInfo->channels_per_image; ++i) {
13 dumpCineonChannelInfo(&imageInfo->channel[i]);