annotate gcc/testsuite/gcc.c-torture/compile/20080625-1.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children 84e7813d76e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-require-effective-target int32plus } */
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 struct peakbufStruct {
kono
parents:
diff changeset
4 unsigned int lnum [5000];
kono
parents:
diff changeset
5 int lscan [5000][4000];
kono
parents:
diff changeset
6 double lmz [5000][4000];
kono
parents:
diff changeset
7 double lint [5000][4000];
kono
parents:
diff changeset
8 int PeaksInBuf;
kono
parents:
diff changeset
9 unsigned char freelists [350000];
kono
parents:
diff changeset
10 unsigned char freelistl [5000];
kono
parents:
diff changeset
11 unsigned int LastFreeL;
kono
parents:
diff changeset
12 } peakbuf;
kono
parents:
diff changeset
13 void foo(int);
kono
parents:
diff changeset
14 void findmzROI(int i, int *p_scan)
kono
parents:
diff changeset
15 {
kono
parents:
diff changeset
16 foo(peakbuf.PeaksInBuf);
kono
parents:
diff changeset
17 __builtin_memmove(p_scan, peakbuf.lscan[i], peakbuf.lnum[i]*sizeof(int));
kono
parents:
diff changeset
18 }