public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ada/35792]  New: Illegal program not detected, RM 3.10.1(4/2)
@ 2008-04-01 21:19 ludovic at ludovic-brenta dot org
  2008-04-09 13:39 ` [Bug ada/35792] " sam at gcc dot gnu dot org
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: ludovic at ludovic-brenta dot org @ 2008-04-01 21:19 UTC (permalink / raw)
  To: gcc-bugs

If an incomplete_type_declaration includes the reserved word tagged,
then a full_type_declaration that completes it shall declare a tagged
type.

The error for T3 is detected, but not T1 or T2.

package pak1 is
   type T1 is tagged;
   type T2 is tagged;
   type T3 is tagged;
   protected type T1 is end T1;
   task type T2;
   type T3 is null record;
end pak1;

gnatmake -gnat05 pak1
gcc-4.1 -c -gnat05 pak1.ads
pak1.ads:4:09: full declaration of type "T3" defined at line 7 must be tagged

gnatmake -gnat05 pak1
gcc-4.3 -c -gnat05 pak1.ads
pak1.ads:4:09: full declaration of type "T3" defined at line 7 must be tagged


-- 
           Summary: Illegal program not detected, RM 3.10.1(4/2)
           Product: gcc
           Version: 4.1.2
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: ada
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: ludovic at ludovic-brenta dot org


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


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

* [Bug ada/35792] Illegal program not detected, RM 3.10.1(4/2)
  2008-04-01 21:19 [Bug ada/35792] New: Illegal program not detected, RM 3.10.1(4/2) ludovic at ludovic-brenta dot org
@ 2008-04-09 13:39 ` sam at gcc dot gnu dot org
  2008-04-29 21:45 ` sam at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: sam at gcc dot gnu dot org @ 2008-04-09 13:39 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from sam at gcc dot gnu dot org  2008-04-09 13:38 -------
Confirmed on GCC 4.4.0 20080409.


-- 

sam at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |sam at gcc dot gnu dot org
                   |dot org                     |
             Status|UNCONFIRMED                 |ASSIGNED
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-04-09 13:38:24
               date|                            |


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


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

* [Bug ada/35792] Illegal program not detected, RM 3.10.1(4/2)
  2008-04-01 21:19 [Bug ada/35792] New: Illegal program not detected, RM 3.10.1(4/2) ludovic at ludovic-brenta dot org
  2008-04-09 13:39 ` [Bug ada/35792] " sam at gcc dot gnu dot org
@ 2008-04-29 21:45 ` sam at gcc dot gnu dot org
  2008-04-29 21:46 ` sam at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: sam at gcc dot gnu dot org @ 2008-04-29 21:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from sam at gcc dot gnu dot org  2008-04-29 21:44 -------
Subject: Bug 35792

Author: sam
Date: Tue Apr 29 21:43:39 2008
New Revision: 134810

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=134810
Log:
2008-04-29  Ed Schonberg  <schonberg@adacore.com>

    gcc/ada/
        PR ada/35792
        * sem_ch3.adb (Find_Type_Name): Refuse completion of an incomplete
        tagged type by an untagged protected or task type.

2008-04-29  Samuel Tardieu  <sam@rfc1149.net>

    gcc/testsuite/
        PR ada/35792
        * gnat.dg/specs/tag2.ads: New.

Added:
    trunk/gcc/testsuite/gnat.dg/specs/tag2.ads
Modified:
    trunk/gcc/ada/ChangeLog
    trunk/gcc/ada/sem_ch3.adb
    trunk/gcc/testsuite/ChangeLog


-- 


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


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

* [Bug ada/35792] Illegal program not detected, RM 3.10.1(4/2)
  2008-04-01 21:19 [Bug ada/35792] New: Illegal program not detected, RM 3.10.1(4/2) ludovic at ludovic-brenta dot org
  2008-04-09 13:39 ` [Bug ada/35792] " sam at gcc dot gnu dot org
  2008-04-29 21:45 ` sam at gcc dot gnu dot org
@ 2008-04-29 21:46 ` sam at gcc dot gnu dot org
  2008-05-03 15:23 ` ebotcazou at gcc dot gnu dot org
  2008-05-04 23:04 ` sam at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: sam at gcc dot gnu dot org @ 2008-04-29 21:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from sam at gcc dot gnu dot org  2008-04-29 21:46 -------
This bug is now fixed in GCC 4.4.0.


-- 

sam at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED
   Target Milestone|---                         |4.4.0


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


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

* [Bug ada/35792] Illegal program not detected, RM 3.10.1(4/2)
  2008-04-01 21:19 [Bug ada/35792] New: Illegal program not detected, RM 3.10.1(4/2) ludovic at ludovic-brenta dot org
                   ` (2 preceding siblings ...)
  2008-04-29 21:46 ` sam at gcc dot gnu dot org
@ 2008-05-03 15:23 ` ebotcazou at gcc dot gnu dot org
  2008-05-04 23:04 ` sam at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2008-05-03 15:23 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from ebotcazou at gcc dot gnu dot org  2008-05-03 15:23 -------
The testcase doesn't pass though:
  http://gcc.gnu.org/ml/gcc-testresults/2008-05/msg00180.html


-- 

ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ebotcazou at gcc dot gnu dot
                   |                            |org


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


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

* [Bug ada/35792] Illegal program not detected, RM 3.10.1(4/2)
  2008-04-01 21:19 [Bug ada/35792] New: Illegal program not detected, RM 3.10.1(4/2) ludovic at ludovic-brenta dot org
                   ` (3 preceding siblings ...)
  2008-05-03 15:23 ` ebotcazou at gcc dot gnu dot org
@ 2008-05-04 23:04 ` sam at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: sam at gcc dot gnu dot org @ 2008-05-04 23:04 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from sam at gcc dot gnu dot org  2008-05-04 23:03 -------
Yes, I've seen this, but I expect an answer to another one very soon, which
would make the test case pass (I think the test case has the error message at
the right place), that's why I haven't fixed it yet.


-- 


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


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

end of thread, other threads:[~2008-05-04 23:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-01 21:19 [Bug ada/35792] New: Illegal program not detected, RM 3.10.1(4/2) ludovic at ludovic-brenta dot org
2008-04-09 13:39 ` [Bug ada/35792] " sam at gcc dot gnu dot org
2008-04-29 21:45 ` sam at gcc dot gnu dot org
2008-04-29 21:46 ` sam at gcc dot gnu dot org
2008-05-03 15:23 ` ebotcazou at gcc dot gnu dot org
2008-05-04 23:04 ` sam 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).