* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 20080625-1.c
blob4b3b7c2c142e52c31b61d443925d651f4adb6a93
1 /* { dg-require-effective-target int32plus } */
3 struct peakbufStruct {
4 unsigned int lnum [5000];
5 int lscan [5000][4000];
6 double lmz [5000][4000];
7 double lint [5000][4000];
8 int PeaksInBuf;
9 unsigned char freelists [350000];
10 unsigned char freelistl [5000];
11 unsigned int LastFreeL;
12 } peakbuf;
13 void foo(int);
14 void findmzROI(int i, int *p_scan)
16 foo(peakbuf.PeaksInBuf);
17 __builtin_memmove(p_scan, peakbuf.lscan[i], peakbuf.lnum[i]*sizeof(int));