[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-07-10 Thread iains at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

Iain Sandoe iains at gcc dot gnu.org changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED

--- Comment #14 from Iain Sandoe iains at gcc dot gnu.org 2012-07-10 08:52:47 
UTC ---
fixed on trunk, remaining CFString errors are a different problem, needs a new
PR.


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-07-09 Thread gseanmcg at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #12 from Sean McGovern gseanmcg at gmail dot com 2012-07-09 
13:32:25 UTC ---
This was OK'ed on the ML but not committed yet?


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-07-09 Thread iains at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #13 from Iain Sandoe iains at gcc dot gnu.org 2012-07-09 19:22:03 
UTC ---
Author: iains
Date: Mon Jul  9 19:21:59 2012
New Revision: 189391

URL: http://gcc.gnu.org/viewcvs?root=gccview=revrev=189391
Log:

PR target/53283
* config/i386/i386.c (ix86_fold_builtin): Call SUBTARGET_FOLD_BUILTIN
if defined.
* config/darwin.h: Rename TARGET_FOLD_BUILTIN to
SUBTARGET_FOLD_BUILTIN.
* config/rs6000/darwin.h: Map TARGET_FOLD_BUILTIN onto
SUBTARGET_FOLD_BUILTIN.


Modified:
trunk/gcc/ChangeLog
trunk/gcc/config/darwin.h
trunk/gcc/config/i386/i386.c
trunk/gcc/config/rs6000/darwin.h


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-06-25 Thread iains at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #11 from Iain Sandoe iains at gcc dot gnu.org 2012-06-25 07:57:25 
UTC ---
posted.
http://gcc.gnu.org/ml/gcc-patches/2012-06/msg01559.html


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-06-22 Thread gseanmcg at gmail dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #10 from Sean McGovern gseanmcg at gmail dot com 2012-06-22 
18:24:25 UTC ---
Any new action on this? I still can't build anything that depends on the
CFSTR() macro.


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-20 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #7 from Dominique d'Humieres dominiq at lps dot ens.fr 2012-05-20 
09:29:39 UTC ---
 The attached patch bootstrapped on *86*-darwin9/10, ppc-darwin9 - lightly
 tested ...  needs checking on Darwin11.

The patch in comment #6 (after a clean bootstrap) fixes most of the failures,
but

FAIL: g++.dg/other/darwin-cfstring1.C ...
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime ...

Note that an ICE has been recently introduced for
obj-c++.dg/ivar-invalid-type-1.mm (I'll open a new PR for it ASAP).

Thanks for the patch


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-20 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #8 from Dominique d'Humieres dominiq at lps dot ens.fr 2012-05-20 
09:38:24 UTC ---
 The patch in comment #6 (after a clean bootstrap) fixes most of the failures,
 but

 FAIL: g++.dg/other/darwin-cfstring1.C ...
 FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime ...

Note that these two tests fail also on powerpc-apple-darwin9 (without the patch
in comment #6).


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-20 Thread iains at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #9 from Iain Sandoe iains at gcc dot gnu.org 2012-05-20 09:42:03 
UTC ---
((In reply to comment #7)
  The attached patch bootstrapped on *86*-darwin9/10, ppc-darwin9 - lightly
  tested ...  needs checking on Darwin11.
 
 The patch in comment #6 (after a clean bootstrap) fixes most of the failures,
 but
 
 FAIL: g++.dg/other/darwin-cfstring1.C ...
 FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime ...

these are, AFAICT, the result of a different problem: viz folding of macro
expressions (not sure I understand what that's doing, exactly)

 
 Note that an ICE has been recently introduced for
 obj-c++.dg/ivar-invalid-type-1.mm (I'll open a new PR for it ASAP).

I also see this on *-d9, x86-64-d10 - (at present) I think it completely
unrelated, (failing apparently on a line with __thread)


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-19 Thread iains at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #6 from Iain Sandoe iains at gcc dot gnu.org 2012-05-19 16:51:27 
UTC ---
Created attachment 27441
  -- http://gcc.gnu.org/bugzilla/attachment.cgi?id=27441
fix (bootstrapped *darwin9,10, lightly tested).

.. well Darwin was already using TARGET_FOLD_BUILTIN which has now been
over-ridden in i386.c, leading to the breakage of CFString.

FWIW: since darwin has several targets - we try to keep common stuff in
config/darwin* .. so it's always worth a quick check there, as well as in
config/{i386,rs6000}/

The attached patch bootstrapped on *86*-darwin9/10, ppc-darwin9 - lightly
tested ...  needs checking on Darwin11.


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-10 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

--- Comment #2 from Dominique d'Humieres dominiq at lps dot ens.fr 2012-05-10 
12:36:32 UTC ---
 The builtin_target.c failure on Darwin seems related to this:

 http://gcc.gnu.org/ml/gcc-patches/2012-05/msg00455.html

and is fixed by r187365.


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-10 Thread mrs at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

m...@gcc.gnu.org mrs at gcc dot gnu.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 CC||mrs at gcc dot gnu.org
 Resolution||FIXED

--- Comment #3 from mrs at gcc dot gnu.org mrs at gcc dot gnu.org 2012-05-10 
16:10:12 UTC ---
:-)


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-10 Thread dominiq at lps dot ens.fr
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

Dominique d'Humieres dominiq at lps dot ens.fr changed:

   What|Removed |Added

 Status|RESOLVED|REOPENED
   Last reconfirmed||2012-05-10
 Resolution|FIXED   |
 Ever Confirmed|0   |1

--- Comment #4 from Dominique d'Humieres dominiq at lps dot ens.fr 2012-05-10 
17:49:55 UTC ---
 :-)

Only one test is fixed out of many: all the Darwin specific tests are still
failing.


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-10 Thread mrs at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

m...@gcc.gnu.org mrs at gcc dot gnu.org changed:

   What|Removed |Added

 Status|REOPENED|NEW

--- Comment #5 from mrs at gcc dot gnu.org mrs at gcc dot gnu.org 2012-05-10 
17:57:01 UTC ---
Oops.


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-08 Thread rguenth at gcc dot gnu.org
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

Richard Guenther rguenth at gcc dot gnu.org changed:

   What|Removed |Added

   Target Milestone|--- |4.8.0


[Bug target/53283] [4.8 Regression] Many failures on x86_64-apple-darwin10 after revision 186789

2012-05-08 Thread tmsriram at google dot com
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=53283

Sriraman Tallam tmsriram at google dot com changed:

   What|Removed |Added

 CC||tmsriram at google dot com

--- Comment #1 from Sriraman Tallam tmsriram at google dot com 2012-05-08 
17:23:00 UTC ---
The builtin_target.c failure on Darwin seems related to this:

http://gcc.gnu.org/ml/gcc-patches/2012-05/msg00455.html