This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

gcc bug


the following program:
-------------------------
#include <stdio.h>
#include <math.h>
#include<limits.h>
/*#include "globals.h"
#include "cellular_automaton.h"
*/
int main(){ 
  int tableau[(1<<15)-1][(1<<15)-1], input[(1<<10)], i;

  size=(1<<30); steps=(1<<30);
  primeP=65537;
  
  for (i=0; i<size; i++)
    input[i]=rand()%2;
  
  /*  cell_auto(input, tableau);
      ppCell_auto(tableau);*/
}
----------------------------

Makes gcc come up with the following:

gallus:~...source% gcc t.c
t.c: In function `main':
t.c:8: Internal compiler error in `assign_stack_temp_for_type', at
function.c:937
Please submit a full bug report.
See <URL:http://www.gnu.org/software/gcc/faq.html#bugreport> for
instructions.
gallus:~...source% 


I'm running gcc on an Silicon Graphics O2, with IRIX.
As for the versions:
gallus:~...source% gcc -v
Reading specs from /usr/local/lib/gcc-lib/mips-sgi-irix6.5/2.95.2/specs
gcc version 2.95.2 19991024 (release)
gallus:~...source% 


/Christian
-------------------------------
Christian Horsdal     
Gøteborg Alle 14, 9D 
8200 Århus N         
DK                   
                           
Tlf: 26 20 43 06           
E-mail: horsdal@daimi.au.dk

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]