public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug debug/29436]  New: ICE in modified_type_die
@ 2006-10-12  0:44 acahalan at gmail dot com
  2006-10-12  1:20 ` [Bug debug/29436] " acahalan at gmail dot com
                   ` (21 more replies)
  0 siblings, 22 replies; 23+ messages in thread
From: acahalan at gmail dot com @ 2006-10-12  0:44 UTC (permalink / raw)
  To: gcc-bugs

$ cat ice.c
typedef struct S {
        unsigned long flags;
}S_t;
struct dp {
        S_t c;
};
typedef S_t __attribute__((__may_alias__)) cmonkey;
static void handler(void *vp)
{
        struct dp *dp;
        cmonkey *cm = vp;
        dp->c = *cm;
}
$ gcc -m32 -std=gnu99 -W -Wall -g3 -c ice.c 
ice.c:7: internal compiler error: in modified_type_die, at dwarf2out.c:8463
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://bugzilla.redhat.com/bugzilla> for instructions.
Preprocessed source stored into /tmp/ccakn2Ps.out file, please attach this to
your bugreport.
$


-- 
           Summary: ICE in modified_type_die
           Product: gcc
           Version: 4.1.1
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: debug
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: acahalan at gmail dot com


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


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

* [Bug debug/29436] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
@ 2006-10-12  1:20 ` acahalan at gmail dot com
  2006-10-12  1:25 ` acahalan at gmail dot com
                   ` (20 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: acahalan at gmail dot com @ 2006-10-12  1:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from acahalan at gmail dot com  2006-10-12 01:20 -------
Other ways to ICE gcc:

///////////////////////
typedef struct S {
        unsigned long flags;
}S_t;
typedef S_t __attribute__((__may_alias__)) cmonkey;
S_t *handler(void *vp)
{
        cmonkey *cm = vp;
        return cm;
}
////////////////////////
typedef struct S {
        unsigned long flags;
}S_t;
typedef S_t __attribute__((__may_alias__)) cmonkey;
S_t handler(void *vp)
{
        cmonkey *cm = vp;
        return *cm;
}
//////////////////////
typedef struct S {
        unsigned long flags;
}S_t;
typedef S_t __attribute__((__may_alias__)) cmonkey;
int handler(void *vp)
{
        S_t dp;
        cmonkey *cm = vp;
        dp = *cm;
}
///////////////////
typedef struct S {
        unsigned long flags;
}S_t;
typedef S_t __attribute__((__may_alias__)) cmonkey;
int handler(void *vp)
{
        S_t * dp;
        cmonkey *cm = vp;
        *dp = *cm;
}
////////////////////////

Besides a fix, I could use some workaround suggestions.
This itself is an attempted workaround for a suspected
bug involving memcpy, so that won't do.


-- 


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


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

* [Bug debug/29436] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
  2006-10-12  1:20 ` [Bug debug/29436] " acahalan at gmail dot com
@ 2006-10-12  1:25 ` acahalan at gmail dot com
  2006-10-12  4:09 ` pinskia at gcc dot gnu dot org
                   ` (19 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: acahalan at gmail dot com @ 2006-10-12  1:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from acahalan at gmail dot com  2006-10-12 01:25 -------
Hey, I don't even need to use the types. The typedef alone
is enough to ICE gcc:

typedef struct S {
        unsigned long flags;
}S_t;
typedef S_t __attribute__((__may_alias__)) cmonkey;
int main(int argc, char *argv[]){
}


-- 


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


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

* [Bug debug/29436] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
  2006-10-12  1:20 ` [Bug debug/29436] " acahalan at gmail dot com
  2006-10-12  1:25 ` acahalan at gmail dot com
@ 2006-10-12  4:09 ` pinskia at gcc dot gnu dot org
  2006-10-15 21:25 ` [Bug debug/29436] [4.0/4.1/4.2 Regression] " mmitchel at gcc dot gnu dot org
                   ` (18 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-10-12  4:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2006-10-12 04:09 -------
Confirmed, this is an user visable regression in that the code did not ICE in
3.2.3 even though the attribute is ignored.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
      Known to fail|3.3.5                       |3.3.5 3.4.0 3.3.3 4.0.0
                   |                            |4.1.0 4.2.0
   Last reconfirmed|0000-00-00 00:00:00         |2006-10-12 04:09:08
               date|                            |
   Target Milestone|---                         |4.0.4


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (2 preceding siblings ...)
  2006-10-12  4:09 ` pinskia at gcc dot gnu dot org
@ 2006-10-15 21:25 ` mmitchel at gcc dot gnu dot org
  2006-10-17  9:37 ` rguenth at gcc dot gnu dot org
                   ` (17 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2006-10-15 21:25 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P3                          |P1


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (3 preceding siblings ...)
  2006-10-15 21:25 ` [Bug debug/29436] [4.0/4.1/4.2 Regression] " mmitchel at gcc dot gnu dot org
@ 2006-10-17  9:37 ` rguenth at gcc dot gnu dot org
  2006-10-17 12:33 ` rguenth at gcc dot gnu dot org
                   ` (16 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-10-17  9:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from rguenth at gcc dot gnu dot org  2006-10-17 09:37 -------
I cannot reproduce this any longer with 4.2:

trunk-g/gcc> ./cc1 -quiet t.i -g3 -std=gnu99 -W -Wall -m32
t.i: In function 'handler':
t.i:12: error: incompatible types in assignment

though cc1plus ICEs (differently) now:

trunk-g/gcc> ./cc1plus -quiet t.i -g3 -std=gnu99 -W -Wall -m32
cc1plus: warning: command line option "-std=gnu99" is valid for C/ObjC but not
for C++
t.i: In function 'void handler(void*)':
t.i:11: error: invalid conversion from 'void*' to 'cmonkey*'
t.i:12: internal compiler error: Segmentation fault
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://gcc.gnu.org/bugs.html> for instructions.

Starting program: /abuild/rguenther/trunk-g/gcc/cc1plus -quiet t.i -g3
-std=gnu99 -W -Wall -m32
cc1plus: warning: command line option "-std=gnu99" is valid for C/ObjC but not
for C++
t.i: In function 'void handler(void*)':
t.i:11: error: invalid conversion from 'void*' to 'cmonkey*'

Program received signal SIGSEGV, Segmentation fault.
0x00000000005aa1b8 in decl_namespace_context (decl=0x2b8e53df20b0)
    at /space/rguenther/src/svn/trunk/gcc/cp/tree.c:1391
1391            decl = CP_DECL_CONTEXT (TYPE_MAIN_DECL (decl));
(gdb) print decl->type.main_variant->common.chain
$1 = (tree) 0x0


-- 


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (4 preceding siblings ...)
  2006-10-17  9:37 ` rguenth at gcc dot gnu dot org
@ 2006-10-17 12:33 ` rguenth at gcc dot gnu dot org
  2006-10-17 12:38 ` rguenth at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-10-17 12:33 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from rguenth at gcc dot gnu dot org  2006-10-17 12:33 -------
We're getting a type variant with the attribute created which shares TYPE_NAME
which in turn points back to the wrong (un-attributed) type.  So we do not
create a die for the attributed type.

This can be worked around with

Index: tree.c
===================================================================
*** tree.c      (revision 117822)
--- tree.c      (working copy)
*************** build_type_attribute_variant (tree ttype
*** 3310,3315 ****
--- 3310,3320 ----

        ntype = type_hash_canon (hashcode, ntype);
        ttype = build_qualified_type (ntype, TYPE_QUALS (ttype));
+       if (TYPE_NAME (ttype))
+       {
+           TYPE_NAME (ttype) = copy_node (TYPE_NAME (ttype));
+           TREE_TYPE (TYPE_NAME (ttype)) = ttype;
+       }
      }

    return ttype;

after which we have the same situation as currently on mainline (cc1plus
segfaults, cc1 is fine).

I guess something fixed this on the mainline - any idea what?


-- 


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (5 preceding siblings ...)
  2006-10-17 12:33 ` rguenth at gcc dot gnu dot org
@ 2006-10-17 12:38 ` rguenth at gcc dot gnu dot org
  2006-10-17 15:31 ` pinskia at gcc dot gnu dot org
                   ` (14 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2006-10-17 12:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from rguenth at gcc dot gnu dot org  2006-10-17 12:37 -------
Janis, can you hunt this on the mainline?  I want to know at what point we
changed
from the ICE in dwarf2out to issuing an error (for cc1).

Thanks!


-- 

rguenth at gcc dot gnu dot org changed:

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


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (6 preceding siblings ...)
  2006-10-17 12:38 ` rguenth at gcc dot gnu dot org
@ 2006-10-17 15:31 ` pinskia at gcc dot gnu dot org
  2006-10-17 21:05 ` acahalan at gmail dot com
                   ` (13 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-10-17 15:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from pinskia at gcc dot gnu dot org  2006-10-17 15:31 -------
(In reply to comment #6)
> Janis, can you hunt this on the mainline?  I want to know at what point we
> changed
> from the ICE in dwarf2out to issuing an error (for cc1).
We still ICE for the testcase in comment #2.


-- 


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (7 preceding siblings ...)
  2006-10-17 15:31 ` pinskia at gcc dot gnu dot org
@ 2006-10-17 21:05 ` acahalan at gmail dot com
  2006-10-18  0:57 ` acahalan at gmail dot com
                   ` (12 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: acahalan at gmail dot com @ 2006-10-17 21:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from acahalan at gmail dot com  2006-10-17 21:05 -------
In case comment #4 was meant to imply that a non-ICE error is fine:

Please note that the crashing code is very nearly the __may_alias__ example
given in the gcc documentation. The main difference is that I used a struct.
This really needs to work for things like malloc arena headers, so the "t.i:12:
error: incompatible types in assignment" and "t.i:11: error: invalid conversion
from 'void*' to 'cmonkey*'" stuff is no good.


-- 


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (8 preceding siblings ...)
  2006-10-17 21:05 ` acahalan at gmail dot com
@ 2006-10-18  0:57 ` acahalan at gmail dot com
  2006-10-18  1:01 ` acahalan at gmail dot com
                   ` (11 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: acahalan at gmail dot com @ 2006-10-18  0:57 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from acahalan at gmail dot com  2006-10-18 00:57 -------
I did it again, but this time in splice_child_die.

$ gcc -g3 -Os -W -Wall -std=gnu99 jji.c
jji.c:3: warning: useless storage class specifier in empty declaration
jji.c:5: internal compiler error: in splice_child_die, at dwarf2out.c:5492
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://bugzilla.redhat.com/bugzilla> for instructions.
Preprocessed source stored into /tmp/ccg46xph.out file, please attach this to
yo
ur bugreport.
$ cat jji.c
typedef struct S {
        unsigned long flags;
};

typedef struct S __attribute__((__may_alias__)) cmonkey;

int main(int argc,char *argv[]){
        return 0;
}
$ 


-- 


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (9 preceding siblings ...)
  2006-10-18  0:57 ` acahalan at gmail dot com
@ 2006-10-18  1:01 ` acahalan at gmail dot com
  2006-10-18 16:28 ` janis at gcc dot gnu dot org
                   ` (10 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: acahalan at gmail dot com @ 2006-10-18  1:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from acahalan at gmail dot com  2006-10-18 01:01 -------
An enum will crash it too. This one is in modified_type_die like the original.

$ gcc -g3 -Os -W -Wall -std=gnu99 kku.c
kku.c:3: internal compiler error: in modified_type_die, at dwarf2out.c:8463
Please submit a full bug report,
with preprocessed source if appropriate.
See <URL:http://bugzilla.redhat.com/bugzilla> for instructions.
Preprocessed source stored into /tmp/ccksgAgj.out file, please attach this to
your bugreport.
$ cat kku.c
typedef enum E {foo, bar} E;

typedef E __attribute__((__may_alias__)) cmonkey;

int main(int argc,char *argv[]){
        return 0;
}
$ 


-- 


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (10 preceding siblings ...)
  2006-10-18  1:01 ` acahalan at gmail dot com
@ 2006-10-18 16:28 ` janis at gcc dot gnu dot org
  2006-10-18 17:08 ` geoffk at gcc dot gnu dot org
                   ` (9 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: janis at gcc dot gnu dot org @ 2006-10-18 16:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from janis at gcc dot gnu dot org  2006-10-18 16:27 -------
A regression hunt on powerpc-linux using the testcase from the submitter's
description showed that it went from an ICE to an error with this patch:

    http://gcc.gnu.org/viewcvs?view=rev&rev=110925

    r110925 | geoffk | 2006-02-13 21:17:59 +0000 (Mon, 13 Feb 2006)

Let me know if other reghunts would be useful here.


-- 

janis at gcc dot gnu dot org changed:

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


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (11 preceding siblings ...)
  2006-10-18 16:28 ` janis at gcc dot gnu dot org
@ 2006-10-18 17:08 ` geoffk at gcc dot gnu dot org
  2006-10-18 17:20 ` pinskia at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: geoffk at gcc dot gnu dot org @ 2006-10-18 17:08 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from geoffk at gcc dot gnu dot org  2006-10-18 17:08 -------
Isn't this a dup of bug 28834?


-- 


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


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

* [Bug debug/29436] [4.0/4.1/4.2 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (12 preceding siblings ...)
  2006-10-18 17:08 ` geoffk at gcc dot gnu dot org
@ 2006-10-18 17:20 ` pinskia at gcc dot gnu dot org
  2007-01-29 16:53 ` [Bug debug/29436] [4.0/4.1/4.2/4.3 " rguenth at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-10-18 17:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from pinskia at gcc dot gnu dot org  2006-10-18 17:19 -------
(In reply to comment #12)
> Isn't this a dup of bug 28834?

Related for sure, dup unknown at this point.


-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
  BugsThisDependsOn|                            |28834


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


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

* [Bug debug/29436] [4.0/4.1/4.2/4.3 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (13 preceding siblings ...)
  2006-10-18 17:20 ` pinskia at gcc dot gnu dot org
@ 2007-01-29 16:53 ` rguenth at gcc dot gnu dot org
  2007-02-03 20:34 ` gdr at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: rguenth at gcc dot gnu dot org @ 2007-01-29 16:53 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from rguenth at gcc dot gnu dot org  2007-01-29 16:52 -------
*** Bug 30628 has been marked as a duplicate of this bug. ***


-- 

rguenth at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |osv at javad dot com


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


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

* [Bug debug/29436] [4.0/4.1/4.2/4.3 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (14 preceding siblings ...)
  2007-01-29 16:53 ` [Bug debug/29436] [4.0/4.1/4.2/4.3 " rguenth at gcc dot gnu dot org
@ 2007-02-03 20:34 ` gdr at gcc dot gnu dot org
  2007-02-03 21:03 ` pinskia at gcc dot gnu dot org
                   ` (5 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: gdr at gcc dot gnu dot org @ 2007-02-03 20:34 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from gdr at gcc dot gnu dot org  2007-02-03 20:34 -------
won't fix in GCC-4.0.x.  Adjusting milestone.


-- 

gdr at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.0.4                       |4.1.3


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


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

* [Bug debug/29436] [4.0/4.1/4.2/4.3 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (15 preceding siblings ...)
  2007-02-03 20:34 ` gdr at gcc dot gnu dot org
@ 2007-02-03 21:03 ` pinskia at gcc dot gnu dot org
  2007-02-14  9:08 ` mmitchel at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-02-03 21:03 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.3                       |4.1.2


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


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

* [Bug debug/29436] [4.0/4.1/4.2/4.3 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (16 preceding siblings ...)
  2007-02-03 21:03 ` pinskia at gcc dot gnu dot org
@ 2007-02-14  9:08 ` mmitchel at gcc dot gnu dot org
  2007-06-13 19:27 ` pinskia at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-02-14  9:08 UTC (permalink / raw)
  To: gcc-bugs



-- 

mmitchel at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|4.1.2                       |4.1.3


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


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

* [Bug debug/29436] [4.0/4.1/4.2/4.3 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (17 preceding siblings ...)
  2007-02-14  9:08 ` mmitchel at gcc dot gnu dot org
@ 2007-06-13 19:27 ` pinskia at gcc dot gnu dot org
  2007-11-02 13:50 ` jason at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  21 siblings, 0 replies; 23+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-06-13 19:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from pinskia at gcc dot gnu dot org  2007-06-13 19:27 -------
*** Bug 32326 has been marked as a duplicate of this bug. ***


-- 

pinskia at gcc dot gnu dot org changed:

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


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


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

* [Bug debug/29436] [4.0/4.1/4.2/4.3 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (18 preceding siblings ...)
  2007-06-13 19:27 ` pinskia at gcc dot gnu dot org
@ 2007-11-02 13:50 ` jason at gcc dot gnu dot org
  2007-11-19 21:25 ` jason at gcc dot gnu dot org
  2007-11-19 21:35 ` jason at gcc dot gnu dot org
  21 siblings, 0 replies; 23+ messages in thread
From: jason at gcc dot gnu dot org @ 2007-11-02 13:50 UTC (permalink / raw)
  To: gcc-bugs



-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |jason at gcc dot gnu dot org
                   |dot org                     |
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2007-08-06 15:15:45         |2007-11-02 13:50:43
               date|                            |


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


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

* [Bug debug/29436] [4.0/4.1/4.2/4.3 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (19 preceding siblings ...)
  2007-11-02 13:50 ` jason at gcc dot gnu dot org
@ 2007-11-19 21:25 ` jason at gcc dot gnu dot org
  2007-11-19 21:35 ` jason at gcc dot gnu dot org
  21 siblings, 0 replies; 23+ messages in thread
From: jason at gcc dot gnu dot org @ 2007-11-19 21:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from jason at gcc dot gnu dot org  2007-11-19 21:24 -------
is a dup of 28834.

*** This bug has been marked as a duplicate of 28834 ***


-- 

jason at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |DUPLICATE


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


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

* [Bug debug/29436] [4.0/4.1/4.2/4.3 Regression] ICE in modified_type_die
  2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
                   ` (20 preceding siblings ...)
  2007-11-19 21:25 ` jason at gcc dot gnu dot org
@ 2007-11-19 21:35 ` jason at gcc dot gnu dot org
  21 siblings, 0 replies; 23+ messages in thread
From: jason at gcc dot gnu dot org @ 2007-11-19 21:35 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from jason at gcc dot gnu dot org  2007-11-19 21:35 -------
Subject: Bug 29436

Author: jason
Date: Mon Nov 19 21:35:13 2007
New Revision: 130297

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=130297
Log:
        PR debug/29436, c/32326
        * tree.c (build_type_attribute_qual_variant): Refuse to make
        a distinct copy of a struct/enum type.  Use build_distinct_type_copy.
        * doc/extend.texi (Type Attributes): Don't encourage people to add
        attributes to struct/enum types in a typedef.  Fix
        transparent_union example.

        * tree-inline.c (remap_type_1): Remove code that's redundant with
        remap_type.
        (build_duplicate_type): Set id.copy_decl.
        * c-common.c (handle_transparent_union_attribute): Simplify logic.

Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/c-common.c
    trunk/gcc/doc/extend.texi
    trunk/gcc/testsuite/gcc.c-torture/execute/mayalias-2.c
    trunk/gcc/testsuite/gcc.c-torture/execute/mayalias-3.c
    trunk/gcc/tree-inline.c
    trunk/gcc/tree.c


-- 


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


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

end of thread, other threads:[~2007-11-19 21:35 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-12  0:44 [Bug debug/29436] New: ICE in modified_type_die acahalan at gmail dot com
2006-10-12  1:20 ` [Bug debug/29436] " acahalan at gmail dot com
2006-10-12  1:25 ` acahalan at gmail dot com
2006-10-12  4:09 ` pinskia at gcc dot gnu dot org
2006-10-15 21:25 ` [Bug debug/29436] [4.0/4.1/4.2 Regression] " mmitchel at gcc dot gnu dot org
2006-10-17  9:37 ` rguenth at gcc dot gnu dot org
2006-10-17 12:33 ` rguenth at gcc dot gnu dot org
2006-10-17 12:38 ` rguenth at gcc dot gnu dot org
2006-10-17 15:31 ` pinskia at gcc dot gnu dot org
2006-10-17 21:05 ` acahalan at gmail dot com
2006-10-18  0:57 ` acahalan at gmail dot com
2006-10-18  1:01 ` acahalan at gmail dot com
2006-10-18 16:28 ` janis at gcc dot gnu dot org
2006-10-18 17:08 ` geoffk at gcc dot gnu dot org
2006-10-18 17:20 ` pinskia at gcc dot gnu dot org
2007-01-29 16:53 ` [Bug debug/29436] [4.0/4.1/4.2/4.3 " rguenth at gcc dot gnu dot org
2007-02-03 20:34 ` gdr at gcc dot gnu dot org
2007-02-03 21:03 ` pinskia at gcc dot gnu dot org
2007-02-14  9:08 ` mmitchel at gcc dot gnu dot org
2007-06-13 19:27 ` pinskia at gcc dot gnu dot org
2007-11-02 13:50 ` jason at gcc dot gnu dot org
2007-11-19 21:25 ` jason at gcc dot gnu dot org
2007-11-19 21:35 ` jason 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).