This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug middle-end/26684] [4.2 Regression] ppc-Darwin bootstrap failure
- From: "pinskia at gcc dot gnu dot org" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 14 Mar 2006 20:16:40 -0000
- Subject: [Bug middle-end/26684] [4.2 Regression] ppc-Darwin bootstrap failure
- References: <bug-26684-4535@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from pinskia at gcc dot gnu dot org 2006-03-14 20:16 -------
This has nothing to do with fixincludes but instead:
cc1: warnings being treated as errors
/Users/perrin/gcc_MAINLINE/gcc/gcc/reg-stack.c:186: warning:
'stack_regs_mentioned_data' defined but not used
This was caused by:
2006-03-14 Kazu Hirata <kazu@codesourcery.com>
* Makefile.in (reg-stack.o): Don't depend on gt-reg-stack.h.
* reg-stack.c (stack_regs_mentioned_data): Change the type to
VEC(char,heap) *.
(stack_regs_mentioned): Update the uses of
stack_regs_mentioned_data. Don't access the array beyond its
end.
(reg_to_stack): Update the uses of stack_regs_mentioned_data.
Don't include gt-reg-stack.h.
Since stack_regs_mentioned_data is no longer referenced as it is now longer
GTY'd. This is true for targets that don't use reg-stack which is every taget
except for x86 and x86_64.
--
pinskia at gcc dot gnu dot org changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |blocker
Status|UNCONFIRMED |NEW
Ever Confirmed|0 |1
GCC target triplet| |all except for x86/x86_64
Last reconfirmed|0000-00-00 00:00:00 |2006-03-14 20:16:40
date| |
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=26684