Results for 4.6.0 20100827 (experimental) (GCC) testsuite on x86_64-apple-darwin10.5.0

Jack Howarth howarth@bromo.med.uc.edu
Fri Aug 27 12:08:00 GMT 2010


r163579 with http://gcc.gnu.org/ml/gcc-patches/2010-08/msg01827.html,
http://gcc.gnu.org/ml/gcc-patches/2010-08/msg01770.html and

Index: gcc/lto-cgraph.c
===================================================================
--- gcc/lto-cgraph.c    (revision 163572)
+++ gcc/lto-cgraph.c    (working copy)
@@ -512,6 +512,8 @@
                     || referenced_from_other_partition_p (&node->ref_list, set, vset)), 1);
   bp_pack_value (&bp, node->lowered, 1);
   bp_pack_value (&bp, in_other_partition, 1);
+  if (node->in_other_partition)
+    DECL_WEAK (node->decl) = 1;
   bp_pack_value (&bp, node->alias, 1);
   bp_pack_value (&bp, node->finalized_by_frontend, 1);
   bp_pack_value (&bp, node->frequency, 2);
@@ -952,6 +954,8 @@
   node->lowered = bp_unpack_value (bp, 1);
   node->analyzed = tag == LTO_cgraph_analyzed_node;
   node->in_other_partition = bp_unpack_value (bp, 1);
+  if (node->in_other_partition)
+    DECL_WEAK (node->decl) = 1;
   node->alias = bp_unpack_value (bp, 1);
   node->finalized_by_frontend = bp_unpack_value (bp, 1);
   node->frequency = (enum node_frequency)bp_unpack_value (bp, 2);
Index: gcc/varpool.c
===================================================================
--- gcc/varpool.c       (revision 163572)
+++ gcc/varpool.c       (working copy)
@@ -461,10 +461,11 @@
 
   if (!TREE_ASM_WRITTEN (decl)
       && !node->alias
-      && !node->in_other_partition
       && !DECL_EXTERNAL (decl)
       && (TREE_CODE (decl) != VAR_DECL || !DECL_HAS_VALUE_EXPR_P (decl)))
     {
+      if (node->in_other_partition)
+        DECL_WEAK (decl) = 1;
       assemble_variable (decl, 0, 1, 0);
       if (TREE_ASM_WRITTEN (decl))
        {

Native configuration is x86_64-apple-darwin10.5.0

		=== g++ tests ===


Running target unix/-m32
WARNING: g++.dg/ext/label13.C compilation failed to produce executable
FAIL: g++.dg/ext/visibility/anon6.C scan-assembler 1BIiE1cE
FAIL: g++.dg/lto/20100723-1 cp_lto_20100723-1_0.o-cp_lto_20100723-1_0.o link, -fcompare-debug -flto (internal compiler error)
UNRESOLVED: g++.dg/lto/20100723-1 cp_lto_20100723-1_0.o-cp_lto_20100723-1_0.o execute -fcompare-debug -flto
FAIL: g++.dg/lto/20100723-1 cp_lto_20100723-1_0.o-cp_lto_20100723-1_0.o link, -fcompare-debug -fwhopr (internal compiler error)
UNRESOLVED: g++.dg/lto/20100723-1 cp_lto_20100723-1_0.o-cp_lto_20100723-1_0.o execute -fcompare-debug -fwhopr
FAIL: g++.dg/torture/stackalign/eh-alloca-1.C  -O3 -g  execution test
FAIL: g++.dg/torture/stackalign/eh-vararg-1.C  -O3 -g  execution test
FAIL: g++.dg/torture/stackalign/eh-vararg-2.C  -O3 -g  execution test
FAIL: g++.dg/torture/stackalign/eh-alloca-1.C  -O3 -g  execution test
FAIL: g++.dg/torture/stackalign/eh-vararg-1.C  -O3 -g  execution test
FAIL: g++.dg/torture/stackalign/eh-vararg-2.C  -O3 -g  execution test
FAIL: g++.dg/tree-prof/partition1.C compilation,  -g  -fprofile-use
UNRESOLVED: g++.dg/tree-prof/partition1.C execution,    -g  -fprofile-use
FAIL: g++.dg/tree-prof/partition1.C compilation,  -O3 -g  -fprofile-use
UNRESOLVED: g++.dg/tree-prof/partition1.C execution,    -O3 -g  -fprofile-use

		=== g++ Summary for unix/-m32 ===

# of expected passes		24394
# of unexpected failures	11
# of expected failures		150
# of unresolved testcases	4
# of unsupported tests		171

Running target unix/-m64
WARNING: g++.dg/ext/label13.C compilation failed to produce executable
FAIL: g++.dg/ext/visibility/anon6.C scan-assembler 1BIiE1cE
FAIL: g++.dg/lto/20100723-1 cp_lto_20100723-1_0.o-cp_lto_20100723-1_0.o link, -fcompare-debug -flto (internal compiler error)
UNRESOLVED: g++.dg/lto/20100723-1 cp_lto_20100723-1_0.o-cp_lto_20100723-1_0.o execute -fcompare-debug -flto
FAIL: g++.dg/lto/20100723-1 cp_lto_20100723-1_0.o-cp_lto_20100723-1_0.o link, -fcompare-debug -fwhopr (internal compiler error)
UNRESOLVED: g++.dg/lto/20100723-1 cp_lto_20100723-1_0.o-cp_lto_20100723-1_0.o execute -fcompare-debug -fwhopr
FAIL: g++.dg/tree-prof/partition1.C compilation,  -g  -fprofile-use
UNRESOLVED: g++.dg/tree-prof/partition1.C execution,    -g  -fprofile-use
FAIL: g++.dg/tree-prof/partition1.C compilation,  -O3 -g  -fprofile-use
UNRESOLVED: g++.dg/tree-prof/partition1.C execution,    -O3 -g  -fprofile-use

		=== g++ Summary for unix/-m64 ===

# of expected passes		24640
# of unexpected failures	5
# of expected failures		150
# of unresolved testcases	4
# of unsupported tests		365

		=== g++ Summary ===

# of expected passes		49034
# of unexpected failures	16
# of expected failures		300
# of unresolved testcases	8
# of unsupported tests		536
/sw/src/fink.build/gcc46-4.6.0-1000/darwin_objdir/gcc/testsuite/g++/../../g++  version 4.6.0 20100827 (experimental) (GCC) 

		=== gcc tests ===


Running target unix/-m32
FAIL: gcc.dg/framework-1.c (test for excess errors)
XPASS: gcc.dg/tree-ssa/20031106-3.c scan-tree-dump-times optimized "link_error" 0
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times optimized "link_error" 0
XPASS: gcc.dg/tree-ssa/fre-vce-1.c scan-tree-dump-times fre "sv.i" 2

		=== gcc Summary for unix/-m32 ===

# of expected passes		71657
# of unexpected failures	1
# of unexpected successes	3
# of expected failures		213
# of unsupported tests		1288

Running target unix/-m64
FAIL: gcc.dg/framework-1.c (test for excess errors)
FAIL: gcc.dg/matrix/transpose-3.c execution,    -fprofile-use -fipa-matrix-reorg -fdump-ipa-matrix-reorg -O3 -fwhole-program -combine
XPASS: gcc.dg/tree-ssa/20031106-3.c scan-tree-dump-times optimized "link_error" 0
XPASS: gcc.dg/tree-ssa/20040204-1.c scan-tree-dump-times optimized "link_error" 0
XPASS: gcc.dg/tree-ssa/fre-vce-1.c scan-tree-dump-times fre "sv.i" 2
FAIL: gcc.target/x86_64/abi/callabi/leaf-1.c scan-assembler-not %rsp
FAIL: gcc.target/x86_64/abi/callabi/leaf-2.c scan-assembler-not %rsp

		=== gcc Summary for unix/-m64 ===

# of expected passes		71835
# of unexpected failures	4
# of unexpected successes	3
# of expected failures		214
# of unsupported tests		1615

		=== gcc Summary ===

# of expected passes		143492
# of unexpected failures	5
# of unexpected successes	6
# of expected failures		427
# of unsupported tests		2903
/sw/src/fink.build/gcc46-4.6.0-1000/darwin_objdir/gcc/xgcc  version 4.6.0 20100827 (experimental) (GCC) 

		=== gfortran tests ===


Running target unix/-m32

		=== gfortran Summary for unix/-m32 ===

# of expected passes		35840
# of expected failures		50
# of unsupported tests		128

Running target unix/-m64

		=== gfortran Summary for unix/-m64 ===

# of expected passes		35983
# of expected failures		50
# of unsupported tests		62

		=== gfortran Summary ===

# of expected passes		71823
# of expected failures		100
# of unsupported tests		190
/sw/src/fink.build/gcc46-4.6.0-1000/darwin_objdir/gcc/testsuite/gfortran/../../gfortran  version 4.6.0 20100827 (experimental) (GCC) 

		=== obj-c++ tests ===


Running target unix/-m32
WARNING: obj-c++.dg/lookup-2.mm -fgnu-runtime compilation failed to produce executable
WARNING: obj-c++.dg/try-catch-2.mm -fgnu-runtime compilation failed to produce executable
WARNING: obj-c++.dg/try-catch-9.mm -fgnu-runtime compilation failed to produce executable

		=== obj-c++ Summary for unix/-m32 ===

# of expected passes		1176
# of expected failures		3
# of unsupported tests		15

Running target unix/-m64
WARNING: obj-c++.dg/lookup-2.mm -fgnu-runtime compilation failed to produce executable
WARNING: obj-c++.dg/try-catch-2.mm -fgnu-runtime compilation failed to produce executable
WARNING: obj-c++.dg/try-catch-9.mm -fgnu-runtime compilation failed to produce executable
WARNING: obj-c++.dg/try-catch-2.mm -fnext-runtime compilation failed to produce executable
WARNING: obj-c++.dg/try-catch-9.mm -fnext-runtime compilation failed to produce executable

		=== obj-c++ Summary for unix/-m64 ===

# of expected passes		1084
# of expected failures		61
# of unsupported tests		19

		=== obj-c++ Summary ===

# of expected passes		2260
# of expected failures		64
# of unsupported tests		34
/sw/src/fink.build/gcc46-4.6.0-1000/darwin_objdir/gcc/testsuite/obj-c++/../../g++  version 4.6.0 20100827 (experimental) (GCC) 

		=== objc tests ===


Running target unix/-m32
FAIL: objc.dg/headers.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/no-extra-load.m -fnext-runtime (test for excess errors)
ERROR: objc.dg/no-extra-load.m: error executing dg-final: couldn't open "no-extra-load.s": no such file or directory
UNRESOLVED: objc.dg/no-extra-load.m: error executing dg-final: couldn't open "no-extra-load.s": no such file or directory

		=== objc Summary for unix/-m32 ===

# of expected passes		3997
# of unexpected failures	2
# of expected failures		7
# of unresolved testcases	1
# of unsupported tests		26

Running target unix/-m64
FAIL: objc.dg/headers.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/no-extra-load.m -fnext-runtime (test for excess errors)
ERROR: objc.dg/no-extra-load.m: error executing dg-final: couldn't open "no-extra-load.s": no such file or directory
UNRESOLVED: objc.dg/no-extra-load.m: error executing dg-final: couldn't open "no-extra-load.s": no such file or directory

		=== objc Summary for unix/-m64 ===

# of expected passes		2702
# of unexpected failures	2
# of expected failures		56
# of unresolved testcases	1
# of unsupported tests		31

		=== objc Summary ===

# of expected passes		6699
# of unexpected failures	4
# of expected failures		63
# of unresolved testcases	2
# of unsupported tests		57
/sw/src/fink.build/gcc46-4.6.0-1000/darwin_objdir/gcc/xgcc  version 4.6.0 20100827 (experimental) (GCC) 

		=== libffi tests ===


Running target unix/-m32

		=== libffi Summary for unix/-m32 ===

# of expected passes		1624
# of expected failures		10
# of unsupported tests		15

Running target unix/-m64

		=== libffi Summary for unix/-m64 ===

# of expected passes		1624
# of expected failures		10
# of unsupported tests		15

		=== libffi Summary ===

# of expected passes		3248
# of expected failures		20
# of unsupported tests		30
		=== libgomp tests ===


Running target unix/-m32

		=== libgomp Summary for unix/-m32 ===

# of expected passes		2536
# of unsupported tests		2

Running target unix/-m64

		=== libgomp Summary for unix/-m64 ===

# of expected passes		2536
# of unsupported tests		2

		=== libgomp Summary ===

# of expected passes		5072
# of unsupported tests		4
		=== libjava tests ===


Running target unix/-m32
FAIL: PR16923.c compilation

		=== libjava Summary for unix/-m32 ===

# of expected passes		2572
# of unexpected failures	1

Running target unix/-m64

		=== libjava Summary for unix/-m64 ===

# of expected passes		2574

		=== libjava Summary ===

# of expected passes		5146
# of unexpected failures	1
		=== libstdc++ tests ===


Running target unix/-m32

		=== libstdc++ Summary for unix/-m32 ===

# of expected passes		6659
# of expected failures		58
# of unsupported tests		554

Running target unix/-m64

		=== libstdc++ Summary for unix/-m64 ===

# of expected passes		6657
# of expected failures		58
# of unsupported tests		555

		=== libstdc++ Summary ===

# of expected passes		13316
# of expected failures		116
# of unsupported tests		1109

Compiler version: 4.6.0 20100827 (experimental) (GCC) 
Platform: x86_64-apple-darwin10.5.0
configure flags: --prefix=/sw --prefix=/sw/lib/gcc4.6 --mandir=/sw/share/man --infodir=/sw/lib/gcc4.6/info --enable-languages=c,c++,fortran,objc,obj-c++,java --with-gmp=/sw --with-libiconv-prefix=/sw --with-ppl=/sw --with-cloog=/sw --with-mpc=/sw --with-system-zlib --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib --program-suffix=-fsf-4.6 --enable-checking=yes



More information about the Gcc-testresults mailing list