modernc.org/cc@v1.0.1/testdata/gcc-6.3.0/gcc/testsuite/gcc.c-torture/compile/991214-2.c (about)

     1  #if defined(STACK_SIZE) && (STACK_SIZE < 65536)
     2  # define HISTO_SIZE 9
     3  #else
     4  # define HISTO_SIZE 36
     5  #endif
     6  
     7  extern int N;
     8  extern int nrows;
     9  extern int or_num_angles;
    10  
    11  typedef struct
    12  {
    13    double value;
    14    int count;
    15  }Histo;
    16  
    17  Histo add_histo[10][2][HISTO_SIZE][HISTO_SIZE];
    18  
    19  void cmd_connection_statistics( )
    20  {
    21    int i,j,k,m;
    22  
    23    for(i=0; i<nrows; i++){
    24        for(j=0; j< 2; j++)
    25  	for(k=0; k< or_num_angles; k++)
    26  	;
    27    }
    28  }