annotate gcc/testsuite/gcc.c-torture/compile/20080625-1.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-require-effective-target int32plus } */
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
2 /* { dg-skip-if "Array too big" { "pdp11-*-*" } { "-mint32" } } */
111
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 struct peakbufStruct {
kono
parents:
diff changeset
5 unsigned int lnum [5000];
kono
parents:
diff changeset
6 int lscan [5000][4000];
kono
parents:
diff changeset
7 double lmz [5000][4000];
kono
parents:
diff changeset
8 double lint [5000][4000];
kono
parents:
diff changeset
9 int PeaksInBuf;
kono
parents:
diff changeset
10 unsigned char freelists [350000];
kono
parents:
diff changeset
11 unsigned char freelistl [5000];
kono
parents:
diff changeset
12 unsigned int LastFreeL;
kono
parents:
diff changeset
13 } peakbuf;
kono
parents:
diff changeset
14 void foo(int);
kono
parents:
diff changeset
15 void findmzROI(int i, int *p_scan)
kono
parents:
diff changeset
16 {
kono
parents:
diff changeset
17 foo(peakbuf.PeaksInBuf);
kono
parents:
diff changeset
18 __builtin_memmove(p_scan, peakbuf.lscan[i], peakbuf.lnum[i]*sizeof(int));
kono
parents:
diff changeset
19 }