schmidt@BONNIE.ICS.UCI.EDU ("Douglas C. Schmidt") (11/26/88)
Bug Report for GCC: ------------------- Problem : gcc 1.31 gets a fatal signal for the following file: 1.) Version : gcc 1.31 ----------- 2.) Input Program : ----------------- struct Matrix_Type { int **Table; int *Buffer; int Row; int Col; }; Print_Table(Table) struct Matrix_Type Table; { int Row, Col; for (Row = 0;Row < Table.Row;Row++) { for (Col = 0;Col < Table.Col;Col++) { printf("%4d",Table.Table[Row][Col]); } printf("\n"); } } main(argc,argv) int argc; char *argv[]; { struct Matrix_Type Table; Print_Table(Table); } 3.) Command Used : gcc -v ---------------- 4.) Files used : -------------- config.gcc sequent-i386 5.) Machine(s) used : ------------------- Sequent Symmetry DYNIX (TM)V3 (BSD 4.3 features) 6.) Compiler diagnostics : ------------------------ gcc version 1.31 /usr/public/lib/gcc/gcc-cpp -v -undef -D__GNU__ -D__GNUC__ -Dunix -Di386 -Dsequent save2.c /tmp/cc012216.cpp GNU CPP version 1.31 /usr/public/lib/gcc/gcc-cc1 /tmp/cc012216.cpp -quiet -dumpbase save2.c -version -o /tmp/cc012216.s gcc: Program cc1 got fatal signal 4.