annotate gcc/testsuite/gcc.c-torture/compile/991214-2.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-add-options stack_size } */
kono
parents:
diff changeset
2
kono
parents:
diff changeset
3 #if defined(STACK_SIZE) && (STACK_SIZE < 65536)
kono
parents:
diff changeset
4 # define HISTO_SIZE 9
kono
parents:
diff changeset
5 #else
kono
parents:
diff changeset
6 # define HISTO_SIZE 36
kono
parents:
diff changeset
7 #endif
kono
parents:
diff changeset
8
kono
parents:
diff changeset
9 extern int N;
kono
parents:
diff changeset
10 extern int nrows;
kono
parents:
diff changeset
11 extern int or_num_angles;
kono
parents:
diff changeset
12
kono
parents:
diff changeset
13 typedef struct
kono
parents:
diff changeset
14 {
kono
parents:
diff changeset
15 double value;
kono
parents:
diff changeset
16 int count;
kono
parents:
diff changeset
17 }Histo;
kono
parents:
diff changeset
18
kono
parents:
diff changeset
19 Histo add_histo[10][2][HISTO_SIZE][HISTO_SIZE];
kono
parents:
diff changeset
20
kono
parents:
diff changeset
21 void cmd_connection_statistics( )
kono
parents:
diff changeset
22 {
kono
parents:
diff changeset
23 int i,j,k,m;
kono
parents:
diff changeset
24
kono
parents:
diff changeset
25 for(i=0; i<nrows; i++){
kono
parents:
diff changeset
26 for(j=0; j< 2; j++)
kono
parents:
diff changeset
27 for(k=0; k< or_num_angles; k++)
kono
parents:
diff changeset
28 ;
kono
parents:
diff changeset
29 }
kono
parents:
diff changeset
30 }