public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug target/29943]  New: gcc generate incorrect alias symbols for PPC
@ 2006-11-22 16:40 raj dot khem at gmail dot com
  2006-11-22 22:21 ` [Bug target/29943] [4.2 Regression] " amodra at bigpond dot net dot au
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: raj dot khem at gmail dot com @ 2006-11-22 16:40 UTC (permalink / raw)
  To: gcc-bugs

The following example(reduced from glibc) compiles differently for ppc target
when using gcc 4.2 as compared to gcc 4.1
It generates the alias symbol as a real symbol instead of creating it as alias.
I get this correct using gcc 4.2 for arm so the problem seems to be affecting
only ppc. This also works ok with gcc 4.1

to reproduce compile the example with -O2

testcase.c
========================================================
extern char **_dl_argv

     __attribute__ ((section (".data.rel.ro")))

     ;

extern char **_dl_argv_internal __attribute__ ((visibility ("hidden")))

     __attribute__ ((section (".data.rel.ro")))

     ;
char **_dl_argv __attribute__ ((section (".data.rel.ro"))) = ((void *)0);
extern __typeof (_dl_argv) _dl_argv_internal __attribute__ ((alias
("_dl_argv")));
char* foo (){
   return _dl_argv_internal[0];
}

=====================================

glibc segfaults in ld.so currently when compiled with gcc 4.2 for ppc due to
this issue.


-- 
           Summary: gcc generate incorrect alias symbols for PPC
           Product: gcc
           Version: 4.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: target
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: raj dot khem at gmail dot com
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: powerpc-*-linux-gnu


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


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

* [Bug target/29943] [4.2 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
@ 2006-11-22 22:21 ` amodra at bigpond dot net dot au
  2006-11-22 22:27 ` [Bug target/29943] [4.2/4.3 " amodra at bigpond dot net dot au
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at bigpond dot net dot au @ 2006-11-22 22:21 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from amodra at bigpond dot net dot au  2006-11-22 22:21 -------
relevant -O2 assembly is
        .globl _dl_argv
        .globl _dl_argv_internal
        .hidden _dl_argv_internal
        .set    _dl_argv_internal,_dl_argv
        .section        .data.rel.ro,"aw",@progbits
        .align 2
        .set    .LANCHOR0,. + 0
        .type   _dl_argv_internal, @object
        .size   _dl_argv_internal, 4
_dl_argv_internal:
        .zero   4
        .type   _dl_argv, @object
        .size   _dl_argv, 4
_dl_argv:
        .zero   4

-fno-section-anchors generates good code


-- 

amodra at bigpond dot net dot au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2006-11-22 22:21:39
               date|                            |


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
  2006-11-22 22:21 ` [Bug target/29943] [4.2 Regression] " amodra at bigpond dot net dot au
@ 2006-11-22 22:27 ` amodra at bigpond dot net dot au
  2006-11-22 22:31 ` pinskia at gcc dot gnu dot org
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at bigpond dot net dot au @ 2006-11-22 22:27 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from amodra at bigpond dot net dot au  2006-11-22 22:27 -------
Removing __attribute__ ((section (".data.rel.ro"))) from _dl_argv_internal also
generates good code.


-- 

amodra at bigpond dot net dot au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|middle-end                  |target


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
  2006-11-22 22:21 ` [Bug target/29943] [4.2 Regression] " amodra at bigpond dot net dot au
  2006-11-22 22:27 ` [Bug target/29943] [4.2/4.3 " amodra at bigpond dot net dot au
@ 2006-11-22 22:31 ` pinskia at gcc dot gnu dot org
  2006-11-22 22:41 ` amodra at bigpond dot net dot au
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2006-11-22 22:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from pinskia at gcc dot gnu dot org  2006-11-22 22:30 -------
.data.rel.ro, isn't that a special section?


-- 


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (2 preceding siblings ...)
  2006-11-22 22:31 ` pinskia at gcc dot gnu dot org
@ 2006-11-22 22:41 ` amodra at bigpond dot net dot au
  2006-11-23  2:13 ` amodra at bigpond dot net dot au
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at bigpond dot net dot au @ 2006-11-22 22:41 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from amodra at bigpond dot net dot au  2006-11-22 22:41 -------
Not particularly.  s/.data.rel.ro/.mysect/ does the same thing.


-- 


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (3 preceding siblings ...)
  2006-11-22 22:41 ` amodra at bigpond dot net dot au
@ 2006-11-23  2:13 ` amodra at bigpond dot net dot au
  2006-11-23  2:31 ` dje at gcc dot gnu dot org
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at bigpond dot net dot au @ 2006-11-23  2:13 UTC (permalink / raw)
  To: gcc-bugs



-- 

amodra at bigpond dot net dot au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |amodra at bigpond dot net
                   |dot org                     |dot au
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-11-22 22:21:39         |2006-11-23 02:12:55
               date|                            |


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (4 preceding siblings ...)
  2006-11-23  2:13 ` amodra at bigpond dot net dot au
@ 2006-11-23  2:31 ` dje at gcc dot gnu dot org
  2006-11-23  5:05 ` richard at codesourcery dot com
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: dje at gcc dot gnu dot org @ 2006-11-23  2:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from dje at gcc dot gnu dot org  2006-11-23 02:31 -------
If GCC is not creating the alias correctly, that is a bug.  However, we
previously agreed in PR 28598 that changing sections behind GCC's back is not
guaranteed to work.


-- 


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (5 preceding siblings ...)
  2006-11-23  2:31 ` dje at gcc dot gnu dot org
@ 2006-11-23  5:05 ` richard at codesourcery dot com
  2006-11-23  8:01 ` amodra at bigpond dot net dot au
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: richard at codesourcery dot com @ 2006-11-23  5:05 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from richard at codesourcery dot com  2006-11-23 05:04 -------
Subject: Re:  [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC

"amodra at bigpond dot net dot au" <gcc-bugzilla@gcc.gnu.org> writes:
>          AssignedTo|unassigned at gcc dot gnu   |amodra at bigpond dot net
>                    |dot org                     |dot au

Thanks for taking this Alan.  I'm happy to look at it if you like though.
If it's section-anchor related, then it's my bug.

Richard


-- 


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (6 preceding siblings ...)
  2006-11-23  5:05 ` richard at codesourcery dot com
@ 2006-11-23  8:01 ` amodra at bigpond dot net dot au
  2006-11-23 12:45 ` patchapp at dberlin dot org
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at bigpond dot net dot au @ 2006-11-23  8:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from amodra at bigpond dot net dot au  2006-11-23 08:01 -------
This is the simple patch I've bootstrapped and am currently regression testing.

Index: varasm.c
===================================================================
--- varasm.c    (revision 119100)
+++ varasm.c    (working copy)
@@ -981,6 +981,10 @@ use_blocks_for_decl_p (tree decl)
   if (DECL_INITIAL (decl) == decl)
     return false;

+  /* If this decl is an alias, then we don't want to emit a definition.  */
+  if (lookup_attribute ("alias", DECL_ATTRIBUTES (decl)))
+    return false;
+
   return true;
 }

Another possibility is to check for named sections in handle_alias_attribute
(and alias attributes in handle_section_attribute), possibly giving a
diagnostic.  It's clear that code like

extern int a __attribute__ ((section (".sec1")));
extern int b __attribute__ ((section (".sec2")))
  __attribute__ ((alias ("a")));

is invalid;  b can't alias a and be in a different section.  However, from the
previous discussion over 28598 I gather we don't want to go down the path of
checking section attributes.


-- 


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (7 preceding siblings ...)
  2006-11-23  8:01 ` amodra at bigpond dot net dot au
@ 2006-11-23 12:45 ` patchapp at dberlin dot org
  2006-11-23 20:26 ` amodra at bigpond dot net dot au
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: patchapp at dberlin dot org @ 2006-11-23 12:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from patchapp at dberlin dot org  2006-11-23 12:45 -------
Subject: Bug number PR29943

A patch for this bug has been added to the patch tracker.
The mailing list url for the patch is
http://gcc.gnu.org/ml/gcc-patches/2006-11/msg01613.html


-- 


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


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

* [Bug target/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (8 preceding siblings ...)
  2006-11-23 12:45 ` patchapp at dberlin dot org
@ 2006-11-23 20:26 ` amodra at bigpond dot net dot au
  2007-01-15 13:38 ` [Bug middle-end/29943] " schwab at suse dot de
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at bigpond dot net dot au @ 2006-11-23 20:26 UTC (permalink / raw)
  To: gcc-bugs



-- 

amodra at bigpond dot net dot au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|amodra at bigpond dot net   |unassigned at gcc dot gnu
                   |dot au                      |dot org
             Status|ASSIGNED                    |NEW


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


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

* [Bug middle-end/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (9 preceding siblings ...)
  2006-11-23 20:26 ` amodra at bigpond dot net dot au
@ 2007-01-15 13:38 ` schwab at suse dot de
  2007-01-21 21:47 ` pinskia at gcc dot gnu dot org
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: schwab at suse dot de @ 2007-01-15 13:38 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from schwab at suse dot de  2007-01-15 13:38 -------
Any news on this one?  AFAICS Richard Sandiford was ok with the patch.


-- 

schwab at suse dot de changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |schwab at suse dot de


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


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

* [Bug middle-end/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (10 preceding siblings ...)
  2007-01-15 13:38 ` [Bug middle-end/29943] " schwab at suse dot de
@ 2007-01-21 21:47 ` pinskia at gcc dot gnu dot org
  2007-02-14 20:25 ` arekm at pld-linux dot org
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: pinskia at gcc dot gnu dot org @ 2007-01-21 21:47 UTC (permalink / raw)
  To: gcc-bugs



-- 

pinskia at gcc dot gnu dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
   Target Milestone|---                         |4.2.0


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


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

* [Bug middle-end/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (11 preceding siblings ...)
  2007-01-21 21:47 ` pinskia at gcc dot gnu dot org
@ 2007-02-14 20:25 ` arekm at pld-linux dot org
  2007-02-19 20:45 ` mmitchel at gcc dot gnu dot org
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: arekm at pld-linux dot org @ 2007-02-14 20:25 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from arekm at pld-linux dot org  2007-02-14 20:25 -------
*** Bug 30796 has been marked as a duplicate of this bug. ***


-- 

arekm at pld-linux dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |arekm at pld-linux dot org


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


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

* [Bug middle-end/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (12 preceding siblings ...)
  2007-02-14 20:25 ` arekm at pld-linux dot org
@ 2007-02-19 20:45 ` mmitchel at gcc dot gnu dot org
  2007-02-20  1:26 ` amodra at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: mmitchel at gcc dot gnu dot org @ 2007-02-19 20:45 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from mmitchel at gcc dot gnu dot org  2007-02-19 20:45 -------
Alan --

This patch is OK.  Would you please apply to 4.2 and mainline?

Thanks,

-- Mark


-- 

mmitchel at gcc dot gnu dot org changed:

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


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


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

* [Bug middle-end/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (13 preceding siblings ...)
  2007-02-19 20:45 ` mmitchel at gcc dot gnu dot org
@ 2007-02-20  1:26 ` amodra at gcc dot gnu dot org
  2007-02-20  1:28 ` amodra at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at gcc dot gnu dot org @ 2007-02-20  1:26 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from amodra at gcc dot gnu dot org  2007-02-20 01:25 -------
Subject: Bug 29943

Author: amodra
Date: Tue Feb 20 01:25:41 2007
New Revision: 122148

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=122148
Log:
        PR target/29943
        * varasm.c (use_blocks_for_decl_p): Return false for decls with
        alias attribute.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/varasm.c


-- 


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


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

* [Bug middle-end/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (14 preceding siblings ...)
  2007-02-20  1:26 ` amodra at gcc dot gnu dot org
@ 2007-02-20  1:28 ` amodra at gcc dot gnu dot org
  2007-02-20  1:29 ` amodra at bigpond dot net dot au
  2007-02-20  1:29 ` amodra at bigpond dot net dot au
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at gcc dot gnu dot org @ 2007-02-20  1:28 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from amodra at gcc dot gnu dot org  2007-02-20 01:28 -------
Subject: Bug 29943

Author: amodra
Date: Tue Feb 20 01:28:01 2007
New Revision: 122149

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=122149
Log:
        PR target/29943
        * varasm.c (use_blocks_for_decl_p): Return false for decls with
        alias attribute.


Modified:
    branches/gcc-4_2-branch/gcc/ChangeLog
    branches/gcc-4_2-branch/gcc/varasm.c


-- 


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


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

* [Bug middle-end/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (15 preceding siblings ...)
  2007-02-20  1:28 ` amodra at gcc dot gnu dot org
@ 2007-02-20  1:29 ` amodra at bigpond dot net dot au
  2007-02-20  1:29 ` amodra at bigpond dot net dot au
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at bigpond dot net dot au @ 2007-02-20  1:29 UTC (permalink / raw)
  To: gcc-bugs



-- 

amodra at bigpond dot net dot au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         AssignedTo|unassigned at gcc dot gnu   |amodra at bigpond dot net
                   |dot org                     |dot au
             Status|NEW                         |ASSIGNED
   Last reconfirmed|2006-11-23 02:12:55         |2007-02-20 01:28:56
               date|                            |


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


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

* [Bug middle-end/29943] [4.2/4.3 Regression] gcc generate incorrect alias symbols for PPC
  2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
                   ` (16 preceding siblings ...)
  2007-02-20  1:29 ` amodra at bigpond dot net dot au
@ 2007-02-20  1:29 ` amodra at bigpond dot net dot au
  17 siblings, 0 replies; 19+ messages in thread
From: amodra at bigpond dot net dot au @ 2007-02-20  1:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from amodra at bigpond dot net dot au  2007-02-20 01:29 -------
Patch applied


-- 

amodra at bigpond dot net dot au changed:

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


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


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

end of thread, other threads:[~2007-02-20  1:29 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-11-22 16:40 [Bug target/29943] New: gcc generate incorrect alias symbols for PPC raj dot khem at gmail dot com
2006-11-22 22:21 ` [Bug target/29943] [4.2 Regression] " amodra at bigpond dot net dot au
2006-11-22 22:27 ` [Bug target/29943] [4.2/4.3 " amodra at bigpond dot net dot au
2006-11-22 22:31 ` pinskia at gcc dot gnu dot org
2006-11-22 22:41 ` amodra at bigpond dot net dot au
2006-11-23  2:13 ` amodra at bigpond dot net dot au
2006-11-23  2:31 ` dje at gcc dot gnu dot org
2006-11-23  5:05 ` richard at codesourcery dot com
2006-11-23  8:01 ` amodra at bigpond dot net dot au
2006-11-23 12:45 ` patchapp at dberlin dot org
2006-11-23 20:26 ` amodra at bigpond dot net dot au
2007-01-15 13:38 ` [Bug middle-end/29943] " schwab at suse dot de
2007-01-21 21:47 ` pinskia at gcc dot gnu dot org
2007-02-14 20:25 ` arekm at pld-linux dot org
2007-02-19 20:45 ` mmitchel at gcc dot gnu dot org
2007-02-20  1:26 ` amodra at gcc dot gnu dot org
2007-02-20  1:28 ` amodra at gcc dot gnu dot org
2007-02-20  1:29 ` amodra at bigpond dot net dot au
2007-02-20  1:29 ` amodra at bigpond dot net dot au

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).