public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause
       [not found] <bug-23995-11390@http.gcc.gnu.org/bugzilla/>
@ 2005-10-15 16:46 ` ebotcazou at gcc dot gnu dot org
  2005-10-21 18:43 ` ebotcazou at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2005-10-15 16:46 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from ebotcazou at gcc dot gnu dot org  2005-10-15 16:45 -------
Investigating.


-- 

ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |ebotcazou at gcc dot gnu dot
                   |dot org                     |org
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2005-09-26 16:01:38         |2005-10-15 16:45:55
               date|                            |


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


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

* [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause
       [not found] <bug-23995-11390@http.gcc.gnu.org/bugzilla/>
  2005-10-15 16:46 ` [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause ebotcazou at gcc dot gnu dot org
@ 2005-10-21 18:43 ` ebotcazou at gcc dot gnu dot org
  2005-11-10 11:33 ` ebotcazou at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2005-10-21 18:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from ebotcazou at gcc dot gnu dot org  2005-10-21 18:43 -------
Works on mainline, the front-end doesn't generate the same expanded code:

--- gcc-4_0-branch/sparc-sun-solaris2.8/pr23995.ads.dg  2005-10-21
20:39:56.006059768 +0200
+++ gcc/sparc-sun-solaris2.8/pr23995.ads.dg     2005-10-21 20:40:11.488706048
+0200
@@ -30,7 +30,9 @@
    freeze p__test_a [
       procedure p__test_aIP (_init : in out p__test_a) is
       begin
-         p__test1IP (_init.t1);
+         T1s : p__test1;
+         p__test1IP (T1s);
+         _init.t1 := T1s;
          return;
       end p__test_aIP;
    ]


-- 

ebotcazou at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|ebotcazou at gcc dot gnu dot|
                   |org                         |
      Known to work|3.3                         |3.3 4.1.0


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


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

* [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause
       [not found] <bug-23995-11390@http.gcc.gnu.org/bugzilla/>
  2005-10-15 16:46 ` [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause ebotcazou at gcc dot gnu dot org
  2005-10-21 18:43 ` ebotcazou at gcc dot gnu dot org
@ 2005-11-10 11:33 ` ebotcazou at gcc dot gnu dot org
  2005-11-10 11:34 ` ebotcazou at gcc dot gnu dot org
  2005-11-10 11:38 ` ebotcazou at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2005-11-10 11:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from ebotcazou at gcc dot gnu dot org  2005-11-10 11:33 -------
Subject: Bug 23995

Author: ebotcazou
Date: Thu Nov 10 11:32:56 2005
New Revision: 106731

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=106731
Log:
        PR ada/23995
        * trans.c (call_to_gnu): Restore statement lost in translation.


Modified:
    trunk/gcc/ada/ChangeLog
    trunk/gcc/ada/trans.c


-- 


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


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

* [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause
       [not found] <bug-23995-11390@http.gcc.gnu.org/bugzilla/>
                   ` (2 preceding siblings ...)
  2005-11-10 11:33 ` ebotcazou at gcc dot gnu dot org
@ 2005-11-10 11:34 ` ebotcazou at gcc dot gnu dot org
  2005-11-10 11:38 ` ebotcazou at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2005-11-10 11:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from ebotcazou at gcc dot gnu dot org  2005-11-10 11:33 -------
Subject: Bug 23995

Author: ebotcazou
Date: Thu Nov 10 11:33:55 2005
New Revision: 106732

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=106732
Log:
        PR ada/23995
        * trans.c (call_to_gnu): Restore statement lost in translation.


Modified:
    branches/gcc-4_0-branch/gcc/ada/ChangeLog
    branches/gcc-4_0-branch/gcc/ada/trans.c


-- 


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


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

* [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause
       [not found] <bug-23995-11390@http.gcc.gnu.org/bugzilla/>
                   ` (3 preceding siblings ...)
  2005-11-10 11:34 ` ebotcazou at gcc dot gnu dot org
@ 2005-11-10 11:38 ` ebotcazou at gcc dot gnu dot org
  4 siblings, 0 replies; 6+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2005-11-10 11:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from ebotcazou at gcc dot gnu dot org  2005-11-10 11:38 -------
See http://gcc.gnu.org/ml/gcc-patches/2005-11/msg00701.html


-- 

ebotcazou at gcc dot gnu dot org changed:

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


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


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

* [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause
  2005-09-21 10:49 [Bug ada/23995] New: GNAT BUG DETECTED michael dot foerster at eads dot com
@ 2005-09-26 16:01 ` ebotcazou at gcc dot gnu dot org
  0 siblings, 0 replies; 6+ messages in thread
From: ebotcazou at gcc dot gnu dot org @ 2005-09-26 16:01 UTC (permalink / raw)
  To: gcc-bugs


------- Additional Comments From ebotcazou at gcc dot gnu dot org  2005-09-26 16:01 -------
> no ICE on x86 and x86_64, must be sparc specific.
> I agree, I generated the ADA compiler on a x86 and it works.

Confirmed.  strict-alignment specific I presume.


-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|                            |1
      Known to work|                            |3.3
   Last reconfirmed|0000-00-00 00:00:00         |2005-09-26 16:01:38
               date|                            |
            Summary|GNAT BUG DETECTED           |[4.0 regression] ICE on
                   |                            |misaligned rep clause


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


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

end of thread, other threads:[~2005-11-10 11:38 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-23995-11390@http.gcc.gnu.org/bugzilla/>
2005-10-15 16:46 ` [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause ebotcazou at gcc dot gnu dot org
2005-10-21 18:43 ` ebotcazou at gcc dot gnu dot org
2005-11-10 11:33 ` ebotcazou at gcc dot gnu dot org
2005-11-10 11:34 ` ebotcazou at gcc dot gnu dot org
2005-11-10 11:38 ` ebotcazou at gcc dot gnu dot org
2005-09-21 10:49 [Bug ada/23995] New: GNAT BUG DETECTED michael dot foerster at eads dot com
2005-09-26 16:01 ` [Bug ada/23995] [4.0 regression] ICE on misaligned rep clause ebotcazou 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).