Movatterモバイル変換


[0]ホーム

URL:


GCC Bugzilla – Bug 14668[3.4/4.0 Regression] no warning anymore for reevaluation of declarationLast modified: 2004-10-30 21:11:40 UTC
Bug 14668 -[3.4/4.0 Regression] no warning anymore for reevaluation of declaration
Summary:[3.4/4.0 Regression] no warning anymore for reevaluation of declaration
Status:RESOLVED FIXED
Alias: None
Product:gcc
Classification:Unclassified
Component:c++ (show other bugs)
Version:3.4.0
:P2 normal
Target Milestone:3.4.1
Assignee:Mark Mitchell
URL:
Keywords:diagnostic
Depends on:
Blocks:
 
Reported:2004-03-21 13:09 UTC byPawel Sikora
Modified:2004-10-30 21:11 UTC (History)
2 users (show)

See Also:
Host:pentium3-pld-linux
Target:pentium3-pld-linux
Build:pentium3-pld-linux
Known to work:3.3.4
Known to fail:3.4.0 4.0.0
Last reconfirmed:2004-03-25 04:47:53


Attachments
Add an attachment (proposed patch, testcase, etc.)

Note You need tolog in before you can comment on or make changes to this bug.
DescriptionPawel Sikora 2004-03-21 13:09:06 UTC
class A {}; class B {   static A *A; }; A *B::A = 0;  g++3.4-20040317 compiles code without errors. g++3.3 reports error: declaration of `A*B::A' changes meaning of `A' from `class A'  which behavior is correct?
Comment 1Gabriel Dos Reis 2004-03-21 15:13:16 UTC
Subject: Re:  New: declaration of `A*B::A' changes meaning of `A' from `class A'..."pluto at ds14 dot agh dot edu dot pl" <gcc-bugzilla@gcc.gnu.org> writes:| class A {}; | class B { |   static A *A; | }; | A *B::A = 0; |  | g++3.4-20040317 compiles code without errors. | g++3.3 reports error: declaration of `A*B::A' changes meaning of `A' from | `class A' |  | which behavior is correct?The code is ill-formed.  No diagnostic is required.  GCC used todiagnose that in the past.  This is a regression.  I would think it isa serious one (a frequent mistake).-- Gaby
Comment 2Wolfgang Bangerth 2004-03-24 23:23:37 UTC
Hm, I may be blind today, but I fail to see what may be wrong with this code? (Clearly the initialization of the member has nothing to do with the problem here.) Gaby, do you refer to the "after declaration, reevaluate the declaration with the newly defined name and see whether it is still valid" rule? Or what do you refer to in saying that the code is invalid?  W.
Comment 3Gabriel Dos Reis 2004-03-25 00:22:28 UTC
Subject: Re:  [3.4/3.5 Regression] declaration of `A*B::A' changes meaning of `A' from `class A'..."bangerth at dealii dot org" <gcc-bugzilla@gcc.gnu.org> writes:| Hm, I may be blind today, but I fail to see what may be wrong with this | code? (Clearly the initialization of the member has nothing to do with | the problem here.)Yes, I was not talking about the initialization.| Gaby, do you refer to the "after declaration, reevaluate | the declaration with the newly defined name and see whether it is still | valid" rule? Yes, that is the one I was referring to.-- Gaby
Comment 4Wolfgang Bangerth 2004-03-25 04:47:52 UTC
OK, this is most likely a regression with the new parser then. Thanks W.
Comment 5Mark Mitchell 2004-05-24 02:47:22 UTC
Working on a fix.
Comment 6GCC Commits 2004-05-28 20:12:19 UTC
Subject:Bug 14668CVSROOT:/cvs/gccModule name:gccBranch: gcc-3_4-branchChanges by:mmitchel@gcc.gnu.org2004-05-28 20:12:12Modified files:gcc/testsuite  : ChangeLog gcc/cp         : ChangeLog parser.c gcc/testsuite/g++.old-deja/g++.benjamin: tem04.C Added files:gcc/testsuite/g++.dg/lookup: redecl1.C Log message:PR c++/14668* parser.c (cp_parser_simple_type_specifier): Callmaybe_note_name_used_in_class.PR c++/14668* g++.dg/lookup/redecl1.C: New test.* g++.old-deja/g++.benjamin/tem04.C: Add error marker.Patches:http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.3389.2.184&r2=1.3389.2.185http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.3892.2.106&r2=1.3892.2.107http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/parser.c.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.157.2.28&r2=1.157.2.29http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/lookup/redecl1.C.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=NONE&r2=1.1.2.1http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/tem04.C.diff?cvsroot=gcc&only_with_tag=gcc-3_4-branch&r1=1.7&r2=1.7.16.1
Comment 7GCC Commits 2004-05-28 20:16:09 UTC
Subject:Bug 14668CVSROOT:/cvs/gccModule name:gccChanges by:mmitchel@gcc.gnu.org2004-05-28 20:16:03Modified files:gcc/cp         : parser.c gcc/testsuite/g++.old-deja/g++.benjamin: tem04.C Added files:gcc/testsuite/g++.dg/lookup: redecl1.C Log message:PR c++/14668* parser.c (cp_parser_simple_type_specifier): Callmaybe_note_name_used_in_class.PR c++/14668* g++.dg/lookup/redecl1.C: New test.* g++.old-deja/g++.benjamin/tem04.C: Add error marker.Patches:http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/parser.c.diff?cvsroot=gcc&r1=1.195&r2=1.196http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.dg/lookup/redecl1.C.diff?cvsroot=gcc&r1=1.1&r2=1.2http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/g++.old-deja/g++.benjamin/tem04.C.diff?cvsroot=gcc&r1=1.7&r2=1.8
Comment 8GCC Commits 2004-05-28 20:17:35 UTC
Subject:Bug 14668CVSROOT:/cvs/gccModule name:gccChanges by:mmitchel@gcc.gnu.org2004-05-28 20:17:22Modified files:gcc/cp         : ChangeLog gcc/testsuite  : ChangeLog Log message:PR c++/14668* parser.c (cp_parser_simple_type_specifier): Callmaybe_note_name_used_in_class.PR c++/14668* g++.dg/lookup/redecl1.C: New test.* g++.old-deja/g++.benjamin/tem04.C: Add error marker.Patches:http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/cp/ChangeLog.diff?cvsroot=gcc&r1=1.4062&r2=1.4063http://gcc.gnu.org/cgi-bin/cvsweb.cgi/gcc/gcc/testsuite/ChangeLog.diff?cvsroot=gcc&r1=1.3785&r2=1.3786
Comment 9Mark Mitchell 2004-05-28 20:18:54 UTC
Fixed in GCC 3.4.1.



[8]ページ先頭

©2009-2025 Movatter.jp