This is the mail archive of the gcc-patches@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]

ICE: Does anyone care at all?



See:
  http://gcc.gnu.org/ml/gcc-bugs/2000-06/msg00805.html
  http://gcc.gnu.org/ml/gcc-bugs/2000-06/msg00696.html
  http://gcc.gnu.org/ml/gcc-bugs/2000-06/msg00676.html


stage1/xgcc -Bstage1/ -B/usr/local/i686-pc-sco3.2v5.0.5/bin/ -c  -DIN_GCC    -W
-Wall -Wtraditional -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -pe
dantic -Wno-long-long -O2 -g -O2  -DHAVE_CONFIG_H    -I. -I../../gcc/gcc -I../..
/gcc/gcc/config -I../../gcc/gcc/../include ../../gcc/gcc/stmt.c
../../gcc/gcc/stmt.c: In function `expand_asm_operands':
../../gcc/gcc/stmt.c:1326: warning: implicit declaration of function `alloca'
../../gcc/gcc/stmt.c: In function `expand_nl_goto_receiver':
../../gcc/gcc/stmt.c:3498: Internal compiler error in `dwarfout_file_scope_decl'
, at dwarfout.c:5312
Please submit a full bug report.
See <URL:http://www.gnu.org/software/gcc/bugs.html> for instructions.
gmake[2]: *** [stmt.o] Error 1
gmake[2]: Leaving directory `/tools/gcc/=build/gcc'
gmake[1]: *** [bootstrap] Error 2
gmake[1]: Leaving directory `/tools/gcc/=build/gcc'
gmake: *** [bootstrap] Error 2


How about this patch:

$ diff -c $f.ori $f
*** dwarfout.c.ori      Sun Jun 25 10:27:28 2000
--- dwarfout.c  Mon Jul 10 13:35:47 2000
***************
*** 5309,5315 ****
    if (! DECL_CONTEXT (decl))
      {
        if (pending_types != 0)
!       abort ();
      }

    ASM_OUTPUT_POP_SECTION (asm_out_file);
--- 5309,5318 ----
    if (! DECL_CONTEXT (decl))
      {
        if (pending_types != 0)
!       {
!         fputs ("We know about this.  Someday, it may get fixed.\n", stderr );
!         abort ();
!       }
      }

    ASM_OUTPUT_POP_SECTION (asm_out_file);

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