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]
Other format: [Raw text]

[Bug debug/10281] [3.4 regression] ICE in loc_descriptor_from_tree in dwarf2out.c compiling glibc


PLEASE REPLY TO gcc-bugzilla@gcc.gnu.org ONLY, *NOT* gcc-bugs@gcc.gnu.org.

http://gcc.gnu.org/bugzilla/show_bug.cgi?id=10281



------- Additional Comments From Markus dot Heuberger at gmx dot net  2003-06-20 21:51 -------
In Jason Merrill's Patch he changes the Lines 170-173 of stor-layout by adding:

   the SAVE_EXPR so it can be folded away.  */
    TREE_OPERAND (size, 0) = save = save_expr (TREE_OPERAND (size, 0));
  else
    size = save  = save_expr (size);

I think this should be:

   the SAVE_EXPR so it can be folded away.  */
    size = save = save_expr (TREE_OPERAND (size, 0));
  else
    size = save  = save_expr (size);

I may still be wrong, because i don't realy know very much about 
the "TREE_OPERAND" command.


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