public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/16392] New: function.c:3192: error: `stack_args_size' undeclared
@ 2004-07-06 20:45 danglin at gcc dot gnu dot org
  2004-07-07 18:40 ` [Bug c/16392] " cvs-commit at gcc dot gnu dot org
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: danglin at gcc dot gnu dot org @ 2004-07-06 20:45 UTC (permalink / raw)
  To: gcc-bugs

The rewrite of assign_parms has introduced this problem:

gcc -c   -g  -DIN_GCC   -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-p
rototypes -Wold-style-definition -fno-common   -DHAVE_CONFIG_H    -I. -I. -I../.
./gcc/gcc -I../../gcc/gcc/. -I../../gcc/gcc/../include -I../../gcc/gcc/../libcpp
/include -I../../gcc/gcc/../libbanshee/libcompat -I../../gcc/gcc/../libbanshee -
I../../gcc/gcc/../libbanshee/points-to  ../../gcc/gcc/function.c -o function.o
../../gcc/gcc/function.c: In function `assign_parms':

../../gcc/gcc/function.c:3192: error: `stack_args_size' undeclared (first use in
 this function)
../../gcc/gcc/function.c:3192: error: (Each undeclared identifier is reported on
ly once
../../gcc/gcc/function.c:3192: error: for each function it appears in.)
make[2]: *** [function.o] Error 1

-- 
           Summary: function.c:3192: error: `stack_args_size' undeclared
           Product: gcc
           Version: 3.5.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: danglin at gcc dot gnu dot org
                CC: gcc-bugs at gcc dot gnu dot org,rth at redhat dot com
 GCC build triplet: hppa-unknown-linux-gnu
  GCC host triplet: hppa-unknown-linux-gnu
GCC target triplet: hppa-unknown-linux-gnu


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


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

* [Bug c/16392] function.c:3192: error: `stack_args_size' undeclared
  2004-07-06 20:45 [Bug c/16392] New: function.c:3192: error: `stack_args_size' undeclared danglin at gcc dot gnu dot org
@ 2004-07-07 18:40 ` cvs-commit at gcc dot gnu dot org
  2004-07-07 18:44 ` danglin at gcc dot gnu dot org
  2004-07-08  5:07 ` [Bug middle-end/16392] [3.5 Regression] " pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: cvs-commit at gcc dot gnu dot org @ 2004-07-07 18:40 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From cvs-commit at gcc dot gnu dot org  2004-07-07 18:40 -------
Subject: Bug 16392

CVSROOT:	/cvs/gcc
Module name:	gcc
Changes by:	danglin@gcc.gnu.org	2004-07-07 18:40:06

Modified files:
	gcc            : ChangeLog function.c 

Log message:
	PR c/16392
	* function.c (assign_parms): Fix typo from previous change.

Patches:
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/ChangeLog.diff?cvsroot=gcc&r1=2.4340&r2=2.4341
http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/function.c.diff?cvsroot=gcc&r1=1.546&r2=1.547



-- 


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


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

* [Bug c/16392] function.c:3192: error: `stack_args_size' undeclared
  2004-07-06 20:45 [Bug c/16392] New: function.c:3192: error: `stack_args_size' undeclared danglin at gcc dot gnu dot org
  2004-07-07 18:40 ` [Bug c/16392] " cvs-commit at gcc dot gnu dot org
@ 2004-07-07 18:44 ` danglin at gcc dot gnu dot org
  2004-07-08  5:07 ` [Bug middle-end/16392] [3.5 Regression] " pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: danglin at gcc dot gnu dot org @ 2004-07-07 18:44 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From danglin at gcc dot gnu dot org  2004-07-07 18:44 -------
Fixed by patch.

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


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


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

* [Bug middle-end/16392] [3.5 Regression] function.c:3192: error: `stack_args_size' undeclared
  2004-07-06 20:45 [Bug c/16392] New: function.c:3192: error: `stack_args_size' undeclared danglin at gcc dot gnu dot org
  2004-07-07 18:40 ` [Bug c/16392] " cvs-commit at gcc dot gnu dot org
  2004-07-07 18:44 ` danglin at gcc dot gnu dot org
@ 2004-07-08  5:07 ` pinskia at gcc dot gnu dot org
  2 siblings, 0 replies; 4+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2004-07-08  5:07 UTC (permalink / raw)
  To: gcc-bugs



-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|c                           |middle-end
           Keywords|                            |build
            Summary|function.c:3192: error:     |[3.5 Regression]
                   |`stack_args_size' undeclared|function.c:3192: error:
                   |                            |`stack_args_size' undeclared
   Target Milestone|---                         |3.5.0


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


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

end of thread, other threads:[~2004-07-08  5:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-07-06 20:45 [Bug c/16392] New: function.c:3192: error: `stack_args_size' undeclared danglin at gcc dot gnu dot org
2004-07-07 18:40 ` [Bug c/16392] " cvs-commit at gcc dot gnu dot org
2004-07-07 18:44 ` danglin at gcc dot gnu dot org
2004-07-08  5:07 ` [Bug middle-end/16392] [3.5 Regression] " pinskia 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).