public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared
@ 2005-06-30 11:50 fxcoudert at gcc dot gnu dot org
  2005-06-30 13:06 ` [Bug middle-end/22247] " pinskia at gcc dot gnu dot org
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-06-30 11:50 UTC (permalink / raw)
  To: gcc-bugs

On i686-pc-mingw32, a simple compilation that worked before
(--enable-languages=c,f95) gives the following error (with Danny Smith's patch
from http://gcc.gnu.org/ml/gcc-patches/2005-05/msg00009.html, because mingw32
adn cygwin bootstraps are broken):

gcc -I/home/FX/local/include -L/home/FX/local/lib -c   -g -O2 -DIN_GCC   -W -
Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes -Wold-style-defin
ition -fno-common   -DHAVE_CONFIG_H    -I. -I. -I../../gcc/gcc -I../../gcc/gcc/
. -I../../gcc/gcc/../include -I./../intl -I../../gcc/gcc/../libcpp/include  ../
../gcc/gcc/tree-ssa-structalias.c -c 2>&1 |head
../../gcc/gcc/tree-ssa-structalias.c: In function `VEC_uint_must_be_integral_type':
../../gcc/gcc/tree-ssa-structalias.c:991: error: `uint' undeclared (first use in
this function)
../../gcc/gcc/tree-ssa-structalias.c:991: error: (Each undeclared identifier is
reported only once
../../gcc/gcc/tree-ssa-structalias.c:991: error: for each function it appears in.)
../../gcc/gcc/tree-ssa-structalias.c:991: error: syntax error before numeric
constant

Attached is the preprocessed source. What annoys me is that I don't see any
relevant change to tree-ssa-structalias.c in the ChangeLog entries.

-- 
           Summary: tree-ssa-structalias.c: `uint' undeclared
           Product: gcc
           Version: 4.1.0
            Status: UNCONFIRMED
          Keywords: build
          Severity: normal
          Priority: P2
         Component: middle-end
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: fxcoudert at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org
  GCC host triplet: i686-pc-mingw32


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug middle-end/22247] tree-ssa-structalias.c: `uint' undeclared
  2005-06-30 11:50 [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared fxcoudert at gcc dot gnu dot org
@ 2005-06-30 13:06 ` pinskia at gcc dot gnu dot org
  2005-06-30 13:07 ` [Bug middle-end/22247] [4.1 Regression] " pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-30 13:06 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |dberlin at gcc dot gnu dot
                   |                            |org
   GCC host triplet|i686-pc-mingw32             |
 GCC target triplet|                            |i686-pc-mingw32


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug middle-end/22247] [4.1 Regression] tree-ssa-structalias.c: `uint' undeclared
  2005-06-30 11:50 [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared fxcoudert at gcc dot gnu dot org
  2005-06-30 13:06 ` [Bug middle-end/22247] " pinskia at gcc dot gnu dot org
@ 2005-06-30 13:07 ` pinskia at gcc dot gnu dot org
  2005-06-30 13:58 ` dberlin at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-30 13:07 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|tree-ssa-structalias.c:     |[4.1 Regression] tree-ssa-
                   |`uint' undeclared           |structalias.c: `uint'
                   |                            |undeclared
   Target Milestone|---                         |4.1.0


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug middle-end/22247] [4.1 Regression] tree-ssa-structalias.c: `uint' undeclared
  2005-06-30 11:50 [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared fxcoudert at gcc dot gnu dot org
  2005-06-30 13:06 ` [Bug middle-end/22247] " pinskia at gcc dot gnu dot org
  2005-06-30 13:07 ` [Bug middle-end/22247] [4.1 Regression] " pinskia at gcc dot gnu dot org
@ 2005-06-30 13:58 ` dberlin at gcc dot gnu dot org
  2005-06-30 18:22 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: dberlin at gcc dot gnu dot org @ 2005-06-30 13:58 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From dberlin at gcc dot gnu dot org  2005-06-30 13:58 -------
tree-ssa-structalias has had that uint since inception.
Kazu added it  as part of VEC'ification prior to submission.
I believe you should be able to do s/uint/unsigned/.

If this works, please submit a patch and i will approve it

-- 


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug middle-end/22247] [4.1 Regression] tree-ssa-structalias.c: `uint' undeclared
  2005-06-30 11:50 [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared fxcoudert at gcc dot gnu dot org
                   ` (2 preceding siblings ...)
  2005-06-30 13:58 ` dberlin at gcc dot gnu dot org
@ 2005-06-30 18:22 ` pinskia at gcc dot gnu dot org
  2005-06-30 18:22 ` pinskia at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-30 18:22 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-30 18:22 -------
Confirmed, changing uint to unsigned was able to bootstrap on powerpc-darwin just fine.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
   Last reconfirmed|0000-00-00 00:00:00         |2005-06-30 18:22:07
               date|                            |


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug middle-end/22247] [4.1 Regression] tree-ssa-structalias.c: `uint' undeclared
  2005-06-30 11:50 [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared fxcoudert at gcc dot gnu dot org
                   ` (3 preceding siblings ...)
  2005-06-30 18:22 ` pinskia at gcc dot gnu dot org
@ 2005-06-30 18:22 ` pinskia at gcc dot gnu dot org
  2005-06-30 20:44 ` cvs-commit at gcc dot gnu dot org
  2005-06-30 20:53 ` fxcoudert at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2005-06-30 18:22 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From pinskia at gcc dot gnu dot org  2005-06-30 18:21 -------
Confirmed, changing uint to unsigned was able to bootstrap on powerpc-darwin just fine.

-- 


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug middle-end/22247] [4.1 Regression] tree-ssa-structalias.c: `uint' undeclared
  2005-06-30 11:50 [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared fxcoudert at gcc dot gnu dot org
                   ` (4 preceding siblings ...)
  2005-06-30 18:22 ` pinskia at gcc dot gnu dot org
@ 2005-06-30 20:44 ` cvs-commit at gcc dot gnu dot org
  2005-06-30 20:53 ` fxcoudert at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2005-06-30 20:44 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2005-06-30 20:43 -------
Subject: Bug 22247

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	fxcoudert@gcc.gnu.org	2005-06-30 20:43:46

Modified files:
	gcc            : ChangeLog tree-ssa-structalias.c 

Log message:
	PR middle-end/22247
	* tree-ssa-structalias.c (build_constraint_graph, scc_visit,
	process_unification_queue, init_topo_info, topo_visit,
	init_scc_info, free_scc_info, perform_var_substitution,
	solve_graph): Use unsigned instead of uint.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.9297&r2=2.9298
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/tree-ssa-structalias.c.diff?cvsroot=gcc&r1=2.6&r2=2.7



-- 


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

* [Bug middle-end/22247] [4.1 Regression] tree-ssa-structalias.c: `uint' undeclared
  2005-06-30 11:50 [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared fxcoudert at gcc dot gnu dot org
                   ` (5 preceding siblings ...)
  2005-06-30 20:44 ` cvs-commit at gcc dot gnu dot org
@ 2005-06-30 20:53 ` fxcoudert at gcc dot gnu dot org
  6 siblings, 0 replies; 8+ messages in thread
From: fxcoudert at gcc dot gnu dot org @ 2005-06-30 20:53 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From fxcoudert at gcc dot gnu dot org  2005-06-30 20:53 -------
Fixed.

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |FIXED


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


^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2005-06-30 20:53 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-06-30 11:50 [Bug middle-end/22247] New: tree-ssa-structalias.c: `uint' undeclared fxcoudert at gcc dot gnu dot org
2005-06-30 13:06 ` [Bug middle-end/22247] " pinskia at gcc dot gnu dot org
2005-06-30 13:07 ` [Bug middle-end/22247] [4.1 Regression] " pinskia at gcc dot gnu dot org
2005-06-30 13:58 ` dberlin at gcc dot gnu dot org
2005-06-30 18:22 ` pinskia at gcc dot gnu dot org
2005-06-30 18:22 ` pinskia at gcc dot gnu dot org
2005-06-30 20:44 ` cvs-commit at gcc dot gnu dot org
2005-06-30 20:53 ` fxcoudert at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).