public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c/34587]  New: gcc.dg/initpri1.c fails on powerpc-apple-darwin
@ 2007-12-25 16:44 howarth at nitro dot med dot uc dot edu
  2008-01-24 16:01 ` [Bug c/34587] " dominiq at lps dot ens dot fr
                   ` (17 more replies)
  0 siblings, 18 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2007-12-25 16:44 UTC (permalink / raw)
  To: gcc-bugs

The gcc.dg/initpri1.c testcase aborts on powerpc-apple-darwin9 in the following
sections...

void c2() {
  if (i++ != 2)
    abort ();   <===
}
[....]
void c3() {
  if (i++ != 1)
    abort ();   <===
}
[...]
void d2() {
  if (--i != 2)
    abort ();  <===
}
[...]
void d3() {
  if (j != 2)
    abort ();
  if (--i != 1)
    abort ();   <====
}

I assume this should have been reported before but can't find any PR for it.
The order of
the aborts are...

in c2
in c3
in d3 i
in d2


-- 
           Summary: gcc.dg/initpri1.c fails on powerpc-apple-darwin
           Product: gcc
           Version: 4.3.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: c
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: howarth at nitro dot med dot uc dot edu
 GCC build triplet: powerpc-apple-darwin9
  GCC host triplet: powerpc-apple-darwin9
GCC target triplet: powerpc-apple-darwin9


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


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

* [Bug c/34587] gcc.dg/initpri1.c fails on powerpc-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
@ 2008-01-24 16:01 ` dominiq at lps dot ens dot fr
  2008-01-25  0:16 ` dominiq at lps dot ens dot fr
                   ` (16 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: dominiq at lps dot ens dot fr @ 2008-01-24 16:01 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #1 from dominiq at lps dot ens dot fr  2008-01-24 15:55 -------
Confirmed on i686-apple-darwin9 on both 32 and 64 bit modes.


-- 


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


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

* [Bug c/34587] gcc.dg/initpri1.c fails on powerpc-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
  2008-01-24 16:01 ` [Bug c/34587] " dominiq at lps dot ens dot fr
@ 2008-01-25  0:16 ` dominiq at lps dot ens dot fr
  2008-02-29 21:29 ` ismail at namtrac dot org
                   ` (15 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: dominiq at lps dot ens dot fr @ 2008-01-25  0:16 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #2 from dominiq at lps dot ens dot fr  2008-01-24 23:00 -------
This test case appeared in revision 122315 and failed on powerpc-apple-darwin
from revision 122323 (see
http://gcc.gnu.org/ml/gcc-testresults/2007-02/msg01022.html) up to now.


-- 


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


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

* [Bug c/34587] gcc.dg/initpri1.c fails on powerpc-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
  2008-01-24 16:01 ` [Bug c/34587] " dominiq at lps dot ens dot fr
  2008-01-25  0:16 ` dominiq at lps dot ens dot fr
@ 2008-02-29 21:29 ` ismail at namtrac dot org
  2008-11-18  4:06 ` [Bug target/34587] " howarth at nitro dot med dot uc dot edu
                   ` (14 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: ismail at namtrac dot org @ 2008-02-29 21:29 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #3 from ismail at namtrac dot org  2008-02-29 21:28 -------
This also fails on i686-apple-darwin9 so its not powerpc specific.


-- 

ismail at namtrac dot org changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ismail at namtrac dot org
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1
   Last reconfirmed|0000-00-00 00:00:00         |2008-02-29 21:28:54
               date|                            |


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on powerpc-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (2 preceding siblings ...)
  2008-02-29 21:29 ` ismail at namtrac dot org
@ 2008-11-18  4:06 ` howarth at nitro dot med dot uc dot edu
  2008-11-18  4:09 ` howarth at nitro dot med dot uc dot edu
                   ` (13 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2008-11-18  4:06 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #4 from howarth at nitro dot med dot uc dot edu  2008-11-18 04:05 -------
This test case appears to only fail for the default -fPIC on darwin. If
compiled with -fno-PIC, the test case passes on i686-apple-darwin9.


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on powerpc-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (3 preceding siblings ...)
  2008-11-18  4:06 ` [Bug target/34587] " howarth at nitro dot med dot uc dot edu
@ 2008-11-18  4:09 ` howarth at nitro dot med dot uc dot edu
  2008-11-18  4:11 ` howarth at nitro dot med dot uc dot edu
                   ` (12 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2008-11-18  4:09 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #5 from howarth at nitro dot med dot uc dot edu  2008-11-18 04:08 -------
Created an attachment (id=16714)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16714&action=view)
assembly file for gcc.dg/initpri1.c at -m32 on i686-apple-darwin9

created with...

/sw/src/fink.build/gcc44-4.3.999-20081117/darwin_objdir/gcc/xgcc
-B/sw/src/fink.build/gcc44-4.3.999-20081117/darwin_objdir/gcc/
/sw/src/fink.build/gcc44-4.3.999-20081117/gcc-4.4-20081117/gcc/testsuite/gcc.dg/initpri1.c
-ansi -pedantic-errors -lm -m32 --save-temps -o ./initpri1.exe


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on powerpc-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (4 preceding siblings ...)
  2008-11-18  4:09 ` howarth at nitro dot med dot uc dot edu
@ 2008-11-18  4:11 ` howarth at nitro dot med dot uc dot edu
  2008-11-18  4:20 ` howarth at nitro dot med dot uc dot edu
                   ` (11 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2008-11-18  4:11 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #6 from howarth at nitro dot med dot uc dot edu  2008-11-18 04:09 -------
Created an attachment (id=16715)
 --> (http://gcc.gnu.org/bugzilla/attachment.cgi?id=16715&action=view)
assembly file for gcc.dg/initpri1.c at -m32 with -fno-PIC on i686-apple-darwin9

created with...

/sw/src/fink.build/gcc44-4.3.999-20081117/darwin_objdir/gcc/xgcc
-B/sw/src/fink.build/gcc44-4.3.999-20081117/darwin_objdir/gcc/
/sw/src/fink.build/gcc44-4.3.999-20081117/gcc-4.4-20081117/gcc/testsuite/gcc.dg/initpri1.c
-ansi -pedantic-errors -lm -m32 -fno-PIC --save-temps -o ./initpri1.exe


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on powerpc-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (5 preceding siblings ...)
  2008-11-18  4:11 ` howarth at nitro dot med dot uc dot edu
@ 2008-11-18  4:20 ` howarth at nitro dot med dot uc dot edu
  2008-11-23  4:44 ` [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (10 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2008-11-18  4:20 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #7 from howarth at nitro dot med dot uc dot edu  2008-11-18 04:19 -------
Can confirm the same behavior with gcc 4.3.2 on powerpc-apple-darwin9. With...

gcc-4  -ansi -pedantic-errors -lm -m32 initpri1.c

the testcase aborts. With...

gcc-4 -ansi -pedantic-errors -lm -m32 -fno-PIC initpri1.c

it executes fine.


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (6 preceding siblings ...)
  2008-11-18  4:20 ` howarth at nitro dot med dot uc dot edu
@ 2008-11-23  4:44 ` howarth at nitro dot med dot uc dot edu
  2008-11-23  4:48 ` howarth at nitro dot med dot uc dot edu
                   ` (9 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2008-11-23  4:44 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #8 from howarth at nitro dot med dot uc dot edu  2008-11-23 04:43 -------
This backtraces on i686 darwin as...

jack-howarths-macbook-pro-17:temp6 howarth$ gcc-4  -g -ansi -pedantic-errors
-lm -m32 initpri1.c
jack-howarths-macbook-pro-17:temp6 howarth$ gdb ./a.out
GNU gdb 6.3.50-20050815 (Apple version gdb-1309) (Fri Oct 10 03:38:53 UTC 2008)
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "x86_64-apple-darwin"...Reading symbols for shared
libraries ... done

(gdb) r
Starting program: /Users/howarth/temp6/a.out 
Reading symbols for shared libraries ++. done

Program received signal SIGABRT, Aborted.
0x981d8ffe in __kill ()
(gdb) bt
#0  0x981d8ffe in __kill ()
#1  0x981d8ff1 in kill$UNIX2003 ()
#2  0x9824d39f in raise ()
#3  0x9825f190 in abort ()
#4  0x00001dc1 in c2 () at initpri1.c:19
#5  0x8fe146d8 in
__dyld__ZN16ImageLoaderMachO16doInitializationERKN11ImageLoader11LinkContextE
()
#6  0x8fe0ec6d in
__dyld__ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj ()
#7  0x8fe0ed59 in __dyld__ZN11ImageLoader15runInitializersERKNS_11LinkContextE
()
#8  0x8fe052e2 in __dyld__ZN4dyld24initializeMainExecutableEv ()
#9  0x8fe083e9 in __dyld__ZN4dyld5_mainEPK11mach_headermiPPKcS5_S5_ ()
#10 0x8fe01960 in __dyld__ZN13dyldbootstrap5startEPK11mach_headeriPPKcl ()
#11 0x8fe01057 in __dyld__dyld_start ()
(gdb) 


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (7 preceding siblings ...)
  2008-11-23  4:44 ` [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin howarth at nitro dot med dot uc dot edu
@ 2008-11-23  4:48 ` howarth at nitro dot med dot uc dot edu
  2008-12-07 21:19 ` danglin at gcc dot gnu dot org
                   ` (8 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2008-11-23  4:48 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #9 from howarth at nitro dot med dot uc dot edu  2008-11-23 04:47 -------
I am mainly trying to determine if this is a flaw in darwin linker or assembler
rather than a bug in gcc. If the former, we can at least file a radar bug
report with Apple.


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (8 preceding siblings ...)
  2008-11-23  4:48 ` howarth at nitro dot med dot uc dot edu
@ 2008-12-07 21:19 ` danglin at gcc dot gnu dot org
  2009-02-17  1:37 ` danglin at gcc dot gnu dot org
                   ` (7 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: danglin at gcc dot gnu dot org @ 2008-12-07 21:19 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #10 from danglin at gcc dot gnu dot org  2008-12-07 21:18 -------
g++.dg/special/initpri1.C also aborts in the same way:

Starting program: /Users/dave/gnu/gcc/objdir/gcc/testsuite/g++/initpri1.xg 
Reading symbols for shared libraries +++. done

Program received signal SIGABRT, Aborted.
0x90b74b9e in __kill ()
(gdb) bt
#0  0x90b74b9e in __kill ()
#1  0x90b74b91 in kill$UNIX2003 ()
#2  0x90bebec2 in raise ()
#3  0x90bfb47f in abort ()
#4  0x00001d07 in c2 ()
#5  0x8fe12e76 in
__dyld__ZN16ImageLoaderMachO18doModInitFunctionsERKN11ImageLoader11LinkContextE
()
#6  0x8fe0e723 in
__dyld__ZN11ImageLoader23recursiveInitializationERKNS_11LinkContextEj ()
#7  0x8fe0e809 in __dyld__ZN11ImageLoader15runInitializersERKNS_11LinkContextE
()
#8  0x8fe04102 in __dyld__ZN4dyld24initializeMainExecutableEv ()
#9  0x8fe07b5f in __dyld__ZN4dyld5_mainEPK11mach_headermiPPKcS5_S5_ ()
#10 0x8fe01872 in __dyld__ZN13dyldbootstrap5startEPK11mach_headeriPPKcl ()
#11 0x8fe01037 in __dyld__dyld_start ()


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (9 preceding siblings ...)
  2008-12-07 21:19 ` danglin at gcc dot gnu dot org
@ 2009-02-17  1:37 ` danglin at gcc dot gnu dot org
  2009-02-17 17:36 ` howarth at nitro dot med dot uc dot edu
                   ` (6 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: danglin at gcc dot gnu dot org @ 2009-02-17  1:37 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #11 from danglin at gcc dot gnu dot org  2009-02-17 01:37 -------
It is a limitation of the Apple assembler and linker.  From the Apple assembler
manual:

.mod_init_func
This is equivalent to .section __DATA, __mod_init_func, mod_init_funcs
This section is of type mod_init_funcs and has no attributes. The C++ compiler
places a pointer to a
function in this section for each function it creates to call the constructors
(if the module has them).

.mod_term_func
This is equivalent to .section __DATA, __mod_term_func, mod_term_funcs
This section is of type mod_term_funcs and has no attributes. The C++ compiler
places a pointer to a
function in this section for each function it creates to call the destructors
(if the module has them).

These directives don't allow for a priority.

It might be possible to sort constructors/destructors with collect2, but for
now it as if something like the following

/* The Apple linker does not support constructor priorities.  */
#undef SUPPORTS_INIT_PRIORITY
#define SUPPORTS_INIT_PRIORITY 0

should be added to darwin.h.


-- 

danglin at gcc dot gnu dot org changed:

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


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (10 preceding siblings ...)
  2009-02-17  1:37 ` danglin at gcc dot gnu dot org
@ 2009-02-17 17:36 ` howarth at nitro dot med dot uc dot edu
  2009-02-17 19:18 ` mrs at apple dot com
                   ` (5 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2009-02-17 17:36 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #12 from howarth at nitro dot med dot uc dot edu  2009-02-17 17:36 -------
John,
    Doesn't this also fix g++.dg/special/conpr-3.C as well? Are you planning to
submit this to gcc-patches so we can get it into gcc 4.4 before the branch?


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (11 preceding siblings ...)
  2009-02-17 17:36 ` howarth at nitro dot med dot uc dot edu
@ 2009-02-17 19:18 ` mrs at apple dot com
  2009-02-17 19:50 ` dave at hiauly1 dot hia dot nrc dot ca
                   ` (4 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: mrs at apple dot com @ 2009-02-17 19:18 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #13 from mrs at apple dot com  2009-02-17 19:18 -------
Ok to add that to darwin.h.


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (12 preceding siblings ...)
  2009-02-17 19:18 ` mrs at apple dot com
@ 2009-02-17 19:50 ` dave at hiauly1 dot hia dot nrc dot ca
  2009-02-17 23:43 ` danglin at gcc dot gnu dot org
                   ` (3 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: dave at hiauly1 dot hia dot nrc dot ca @ 2009-02-17 19:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #14 from dave at hiauly1 dot hia dot nrc dot ca  2009-02-17 19:49 -------
Subject: Re:  gcc.dg/initpri1.c fails on *-apple-darwin

> John,
>     Doesn't this also fix g++.dg/special/conpr-3.C as well? Are you planning to
> submit this to gcc-patches so we can get it into gcc 4.4 before the branch?

I'll know when I get home.  Ran a full build and check with the change
last night.  There might be some testsuite issues.

Dave


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (13 preceding siblings ...)
  2009-02-17 19:50 ` dave at hiauly1 dot hia dot nrc dot ca
@ 2009-02-17 23:43 ` danglin at gcc dot gnu dot org
  2009-02-17 23:50 ` danglin at gcc dot gnu dot org
                   ` (2 subsequent siblings)
  17 siblings, 0 replies; 19+ messages in thread
From: danglin at gcc dot gnu dot org @ 2009-02-17 23:43 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #15 from danglin at gcc dot gnu dot org  2009-02-17 23:43 -------
Subject: Bug 34587

Author: danglin
Date: Tue Feb 17 23:42:44 2009
New Revision: 144251

URL: http://gcc.gnu.org/viewcvs?root=gcc&view=rev&rev=144251
Log:
        PR target/34587
        * config/darwin.h (SUPPORTS_INIT_PRIORITY): Define.


Modified:
    trunk/gcc/ChangeLog
    trunk/gcc/config/darwin.h


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (14 preceding siblings ...)
  2009-02-17 23:43 ` danglin at gcc dot gnu dot org
@ 2009-02-17 23:50 ` danglin at gcc dot gnu dot org
  2009-02-18  0:31 ` danglin at gcc dot gnu dot org
  2009-02-18  2:49 ` howarth at nitro dot med dot uc dot edu
  17 siblings, 0 replies; 19+ messages in thread
From: danglin at gcc dot gnu dot org @ 2009-02-17 23:50 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #16 from danglin at gcc dot gnu dot org  2009-02-17 23:50 -------
Fixed on trunk.


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (15 preceding siblings ...)
  2009-02-17 23:50 ` danglin at gcc dot gnu dot org
@ 2009-02-18  0:31 ` danglin at gcc dot gnu dot org
  2009-02-18  2:49 ` howarth at nitro dot med dot uc dot edu
  17 siblings, 0 replies; 19+ messages in thread
From: danglin at gcc dot gnu dot org @ 2009-02-18  0:31 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #17 from danglin at gcc dot gnu dot org  2009-02-18 00:31 -------
*** Bug 38441 has been marked as a duplicate of this bug. ***


-- 


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


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

* [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin
  2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
                   ` (16 preceding siblings ...)
  2009-02-18  0:31 ` danglin at gcc dot gnu dot org
@ 2009-02-18  2:49 ` howarth at nitro dot med dot uc dot edu
  17 siblings, 0 replies; 19+ messages in thread
From: howarth at nitro dot med dot uc dot edu @ 2009-02-18  2:49 UTC (permalink / raw)
  To: gcc-bugs



------- Comment #18 from howarth at nitro dot med dot uc dot edu  2009-02-18 02:49 -------
Fixed in current gcc trunk.


-- 

howarth at nitro dot med dot uc dot edu changed:

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


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


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

end of thread, other threads:[~2009-02-18  2:49 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-12-25 16:44 [Bug c/34587] New: gcc.dg/initpri1.c fails on powerpc-apple-darwin howarth at nitro dot med dot uc dot edu
2008-01-24 16:01 ` [Bug c/34587] " dominiq at lps dot ens dot fr
2008-01-25  0:16 ` dominiq at lps dot ens dot fr
2008-02-29 21:29 ` ismail at namtrac dot org
2008-11-18  4:06 ` [Bug target/34587] " howarth at nitro dot med dot uc dot edu
2008-11-18  4:09 ` howarth at nitro dot med dot uc dot edu
2008-11-18  4:11 ` howarth at nitro dot med dot uc dot edu
2008-11-18  4:20 ` howarth at nitro dot med dot uc dot edu
2008-11-23  4:44 ` [Bug target/34587] gcc.dg/initpri1.c fails on *-apple-darwin howarth at nitro dot med dot uc dot edu
2008-11-23  4:48 ` howarth at nitro dot med dot uc dot edu
2008-12-07 21:19 ` danglin at gcc dot gnu dot org
2009-02-17  1:37 ` danglin at gcc dot gnu dot org
2009-02-17 17:36 ` howarth at nitro dot med dot uc dot edu
2009-02-17 19:18 ` mrs at apple dot com
2009-02-17 19:50 ` dave at hiauly1 dot hia dot nrc dot ca
2009-02-17 23:43 ` danglin at gcc dot gnu dot org
2009-02-17 23:50 ` danglin at gcc dot gnu dot org
2009-02-18  0:31 ` danglin at gcc dot gnu dot org
2009-02-18  2:49 ` howarth at nitro dot med dot uc dot edu

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