This is the mail archive of the gcc-testresults@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Results for 4.8.0 20120907 (experimental) (GCC) testsuite on x86_64-apple-darwin12.2.0


r191069 with

libstdc++-v3/


2012-09-07  Ulrich Drepper  <drepper@gmail.com>
	    Dominique d'Humieres <dominiq@lps.ens.fr>
	    Jack Howarth <howarth@bromo.med.uc.edu>

	PR bootstrap/54419
	* acinclude.m4: Define GLIBCXX_CHECK_X86_RDRAND.
	* configure.ac: Use GLIBCXX_CHECK_X86_RDRAND to test for rdrand 
	support in assembler.
	* src/c++11/random.cc: (__x86_rdrand): Depend on _GLIBCXX_X86_RDRAND.
	random_device::_M_init): Likewise.
	(random_device::_M_getval): Likewise.
	* configure: Regenerated.
	* config.h.in: Regenerated.

Index: libstdc++-v3/src/c++11/random.cc
===================================================================
--- libstdc++-v3/src/c++11/random.cc	(revision 191071)
+++ libstdc++-v3/src/c++11/random.cc	(working copy)
@@ -50,7 +50,7 @@ namespace std _GLIBCXX_VISIBILITY(defaul
       return __ret;
     }
 
-#if defined __i386__ || defined __x86_64__
+#if (defined __i386__ || defined __x86_64__) && defined _GLIBCXX_X86_RDRAND
     unsigned int
     __attribute__ ((target("rdrnd")))
     __x86_rdrand(void)
@@ -75,7 +75,7 @@ namespace std _GLIBCXX_VISIBILITY(defaul
 
     if (token == "default")
       {
-#if defined __i386__ || defined __x86_64__
+#if (defined __i386__ || defined __x86_64__) && defined _GLIBCXX_X86_RDRAND
 	unsigned int eax, ebx, ecx, edx;
 	// Check availability of cpuid and, for now at least, also the
 	// CPU signature for Intel's
@@ -118,7 +118,7 @@ namespace std _GLIBCXX_VISIBILITY(defaul
   random_device::result_type
   random_device::_M_getval()
   {
-#if (defined __i386__ || defined __x86_64__)
+#if (defined __i386__ || defined __x86_64__) && defined _GLIBCXX_X86_RDRAND
     if (! _M_file)
       return __x86_rdrand();
 #endif
Index: libstdc++-v3/configure.ac
===================================================================
--- libstdc++-v3/configure.ac	(revision 191071)
+++ libstdc++-v3/configure.ac	(working copy)
@@ -330,6 +330,9 @@ case "$target" in
 esac
 GLIBCXX_CONDITIONAL(GLIBCXX_LDBL_COMPAT, test $ac_ldbl_compat = yes)
 
+# Check if assembler supports rdrand opcode.
+GLIBCXX_CHECK_X86_RDRAND
+
 # This depends on GLIBCXX_ENABLE_SYMVERS and GLIBCXX_IS_NATIVE.
 GLIBCXX_CONFIGURE_TESTSUITE
 
Index: libstdc++-v3/acinclude.m4
===================================================================
--- libstdc++-v3/acinclude.m4	(revision 191071)
+++ libstdc++-v3/acinclude.m4	(working copy)
@@ -3360,6 +3360,26 @@ AC_DEFUN([AC_LC_MESSAGES], [
 ])
 
 dnl
+dnl Check whether rdrand is supported in the assembler.
+AC_DEFUN([GLIBCXX_CHECK_X86_RDRAND], [
+  AC_MSG_CHECKING([for rdrand support in assembler])
+  AC_CACHE_VAL($ac_cv_x86_rdrand, [
+  ac_cv_x86_rdrand=no
+  case "$target" in
+    i?86-*-* | \
+    x86_64-*-*)
+    AC_TRY_COMPILE(, [asm("rdrand %eax");],
+		[ac_cv_x86_rdrand=yes], [ac_cv_x86_rdrand=no])
+  esac
+  ])
+  if test $ac_cv_x86_rdrand = yes; then
+    AC_DEFINE(_GLIBCXX_X86_RDRAND, 1,
+		[ Defined if as can handle rdrand. ])
+  fi
+  AC_MSG_RESULT($ac_cv_x86_rdrand)
+])
+
+dnl
 dnl Check whether get_nprocs is available in <sys/sysinfo.h>, and define _GLIBCXX_USE_GET_NPROCS.
 dnl
 AC_DEFUN([GLIBCXX_CHECK_GET_NPROCS], [


Native configuration is x86_64-apple-darwin12.2.0

		=== g++ tests ===


Running target unix/-m32
FAIL: g++.dg/debug/dwarf2/nested-4.C -std=gnu++98  scan-assembler-times debug_types 2
FAIL: g++.dg/debug/dwarf2/nested-4.C -std=gnu++11  scan-assembler-times debug_types 2
WARNING: g++.dg/ext/label13.C -std=gnu++98 compilation failed to produce executable
WARNING: g++.dg/ext/label13.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++98  (test for errors, line 21)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++98  (test for errors, line 22)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++98 (test for excess errors)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++11  (test for errors, line 21)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++11  (test for errors, line 22)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++11 (test for excess errors)

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

# of expected passes		48153
# of unexpected failures	8
# of expected failures		286
# of unsupported tests		430

Running target unix/-m64
FAIL: g++.dg/debug/dwarf2/nested-4.C -std=gnu++98  scan-assembler-times debug_types 2
FAIL: g++.dg/debug/dwarf2/nested-4.C -std=gnu++11  scan-assembler-times debug_types 2
WARNING: g++.dg/ext/label13.C -std=gnu++98 compilation failed to produce executable
WARNING: g++.dg/ext/label13.C -std=gnu++11 compilation failed to produce executable
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++98  (test for errors, line 21)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++98  (test for errors, line 22)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++98 (test for excess errors)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++11  (test for errors, line 21)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++11  (test for errors, line 22)
FAIL: g++.dg/other/darwin-cfstring1.C -std=gnu++11 (test for excess errors)

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

# of expected passes		48950
# of unexpected failures	8
# of expected failures		286
# of unsupported tests		656

		=== g++ Summary ===

# of expected passes		97103
# of unexpected failures	16
# of expected failures		572
# of unsupported tests		1086
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/testsuite/g++/../../g++  version 4.8.0 20120907 (experimental) (GCC) 

		=== gcc tests ===


Running target unix/-m32
XPASS: gcc.dg/Wstrict-overflow-18.c  (test for bogus messages, line 20)
FAIL: gcc.dg/pr52558-1.c scan-tree-dump-times lim1 "MEM count_lsm.. count_lsm_flag" 1
FAIL: gcc.dg/pr52558-2.c scan-tree-dump-times lim1 "MEM.*g_2_lsm_flag" 1
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O0 -flto -flto-partition=none 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O0 -flto -flto-partition=none 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O0 -flto -flto-partition=none 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O2 -flto -flto-partition=none 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O2 -flto -flto-partition=none 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O2 -flto -flto-partition=none 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O0 -flto -flto-partition=1to1 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O0 -flto -flto-partition=1to1 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O0 -flto -flto-partition=1to1 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O2 -flto -flto-partition=1to1 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O2 -flto -flto-partition=1to1 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O2 -flto -flto-partition=1to1 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O0 -flto 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O0 -flto 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O0 -flto 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O2 -flto
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O2 -flto
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O2 -flto
FAIL: gcc.dg/tm/reg-promotion.c scan-tree-dump-times lim1 "MEM count_lsm.. count_lsm_flag" 1
FAIL: gcc.dg/torture/pr51106-2.c  -O0  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O0  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O1  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O1  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O2  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O2  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O3 -fomit-frame-pointer  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O3 -fomit-frame-pointer  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O3 -g  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O3 -g  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -Os  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -Os  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O2 -flto -flto-partition=none  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O2 -flto -flto-partition=none  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O2 -flto  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O2 -flto  (test for excess errors)
FAIL: gcc.dg/torture/pr53922.c  -O0  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O0  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O1  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O1  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O2  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O2  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O3 -fomit-frame-pointer  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O3 -fomit-frame-pointer  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O3 -g  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O3 -g  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -Os  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -Os  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O2 -flto -flto-partition=none  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O2 -flto -flto-partition=none  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O2 -flto  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O2 -flto  compilation failed to produce executable
FAIL: gcc.dg/tree-prof/pr44777.c execution,    -fprofile-generate -D_PROFILE_GENERATE
UNRESOLVED: gcc.dg/tree-prof/pr44777.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr44777.c execution,    -fprofile-use -D_PROFILE_USE
FAIL: gcc.dg/tree-prof/pr52027.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr52027.c execution,    -fprofile-use -D_PROFILE_USE

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

# of expected passes		84301
# of unexpected failures	35
# of unexpected successes	1
# of expected failures		258
# of unresolved testcases	15
# of unsupported tests		1970

Running target unix/-m64
XPASS: gcc.dg/Wstrict-overflow-18.c  (test for bogus messages, line 20)
FAIL: gcc.dg/framework-1.c (test for excess errors)
FAIL: gcc.dg/pr52558-1.c scan-tree-dump-times lim1 "MEM count_lsm.. count_lsm_flag" 1
FAIL: gcc.dg/pr52558-2.c scan-tree-dump-times lim1 "MEM.*g_2_lsm_flag" 1
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O0 -flto -flto-partition=none 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O0 -flto -flto-partition=none 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O0 -flto -flto-partition=none 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O2 -flto -flto-partition=none 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O2 -flto -flto-partition=none 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O2 -flto -flto-partition=none 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O0 -flto -flto-partition=1to1 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O0 -flto -flto-partition=1to1 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O0 -flto -flto-partition=1to1 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O2 -flto -flto-partition=1to1 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O2 -flto -flto-partition=1to1 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O2 -flto -flto-partition=1to1 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O0 -flto 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O0 -flto 
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O0 -flto 
FAIL: gcc.dg/lto/pr52634 c_lto_pr52634_1.o assemble, -O2 -flto
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o link -O2 -flto
UNRESOLVED: gcc.dg/lto/pr52634 c_lto_pr52634_0.o-c_lto_pr52634_1.o execute -O2 -flto
FAIL: gcc.dg/tm/reg-promotion.c scan-tree-dump-times lim1 "MEM count_lsm.. count_lsm_flag" 1
FAIL: gcc.dg/torture/pr51106-2.c  -O0  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O0  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O1  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O1  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O2  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O2  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O3 -fomit-frame-pointer  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O3 -fomit-frame-pointer  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O3 -g  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O3 -g  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -Os  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -Os  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O2 -flto -flto-partition=none  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O2 -flto -flto-partition=none  (test for excess errors)
FAIL: gcc.dg/torture/pr51106-2.c  -O2 -flto  (internal compiler error)
FAIL: gcc.dg/torture/pr51106-2.c  -O2 -flto  (test for excess errors)
FAIL: gcc.dg/torture/pr53922.c  -O0  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O0  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O1  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O1  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O2  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O2  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O3 -fomit-frame-pointer  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O3 -fomit-frame-pointer  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O3 -g  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O3 -g  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -Os  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -Os  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O2 -flto -flto-partition=none  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O2 -flto -flto-partition=none  compilation failed to produce executable
FAIL: gcc.dg/torture/pr53922.c  -O2 -flto  (test for excess errors)
WARNING: gcc.dg/torture/pr53922.c  -O2 -flto  compilation failed to produce executable
FAIL: gcc.dg/tree-prof/pr34999.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr34999.c execution,    -fprofile-use -D_PROFILE_USE
FAIL: gcc.dg/tree-prof/pr52027.c compilation,  -fprofile-use -D_PROFILE_USE
UNRESOLVED: gcc.dg/tree-prof/pr52027.c execution,    -fprofile-use -D_PROFILE_USE
FAIL: gcc.target/i386/pad-10.c scan-assembler-not nop
FAIL: gcc.target/i386/pr49866.c (test for excess errors)

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

# of expected passes		84559
# of unexpected failures	38
# of unexpected successes	1
# of expected failures		261
# of unresolved testcases	14
# of unsupported tests		2286

		=== gcc Summary ===

# of expected passes		168860
# of unexpected failures	73
# of unexpected successes	2
# of expected failures		519
# of unresolved testcases	29
# of unsupported tests		4256
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/xgcc  version 4.8.0 20120907 (experimental) (GCC) 

		=== gfortran tests ===


Running target unix/-m32
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto -flto-partition=none  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto -flto-partition=none 
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto -flto-partition=1to1  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto -flto-partition=1to1 
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto -flto-partition=none  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto -flto-partition=none 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto -flto-partition=1to1  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto -flto-partition=1to1 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto 

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

# of expected passes		41813
# of unexpected failures	6
# of expected failures		56
# of unresolved testcases	6
# of unsupported tests		210

Running target unix/-m64
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto -flto-partition=none  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto -flto-partition=none 
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto -flto-partition=1to1  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto -flto-partition=1to1 
FAIL: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o link, -O0 -flto  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586-2 f_lto_pr45586-2_0.o-f_lto_pr45586-2_0.o execute -O0 -flto 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto -flto-partition=none  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto -flto-partition=none 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto -flto-partition=1to1  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto -flto-partition=1to1 
FAIL: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o link, -O0 -flto  (internal compiler error)
UNRESOLVED: gfortran.dg/lto/pr45586 f_lto_pr45586_0.o-f_lto_pr45586_0.o execute -O0 -flto 

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

# of expected passes		42100
# of unexpected failures	6
# of expected failures		56
# of unresolved testcases	6
# of unsupported tests		72

		=== gfortran Summary ===

# of expected passes		83913
# of unexpected failures	12
# of expected failures		112
# of unresolved testcases	12
# of unsupported tests		282
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/testsuite/gfortran/../../gfortran  version 4.8.0 20120907 (experimental) (GCC) 

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


Running target unix/-m32
FAIL: obj-c++.dg/cxx-ivars-3.mm -fnext-runtime execution test
FAIL: obj-c++.dg/gnu-api-2-objc.mm -fnext-runtime execution test
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime  (test for warnings, line 22)
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime  (test for warnings, line 23)
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime  (test for warnings, line 25)
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime  (test for warnings, line 26)
FAIL: obj-c++.dg/torture/strings/string1.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/torture/strings/string1.mm  -O2 -flto  -fnext-runtime (test for excess errors)

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

# of expected passes		3151
# of unexpected failures	8
# of expected failures		2
# of unsupported tests		68

Running target unix/-m64
FAIL: obj-c++.dg/gnu-api-2-objc.mm -fnext-runtime execution test
FAIL: obj-c++.dg/method-12.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/proto-lossage-7.mm -fnext-runtime (internal compiler error)
FAIL: obj-c++.dg/proto-lossage-7.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/syntax-error-1.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/property/at-property-13.mm -fgnu-runtime execution test
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime  (test for warnings, line 22)
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime  (test for warnings, line 23)
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime  (test for warnings, line 25)
FAIL: obj-c++.dg/strings/const-cfstring-2.mm -fnext-runtime  (test for warnings, line 26)
FAIL: obj-c++.dg/strings/const-cfstring-5.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/strings/const-str-12.mm -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-10.mm  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-11.mm  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: obj-c++.dg/torture/strings/const-str-9.mm  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: obj-c++.dg/torture/strings/string1.mm  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: obj-c++.dg/torture/strings/string1.mm  -O2 -flto  -fnext-runtime (test for excess errors)

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

# of expected passes		3024
# of unexpected failures	38
# of expected failures		19
# of unresolved testcases	48
# of unsupported tests		73

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

# of expected passes		6175
# of unexpected failures	46
# of expected failures		21
# of unresolved testcases	48
# of unsupported tests		141
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/testsuite/obj-c++/../../g++  version 4.8.0 20120907 (experimental) (GCC) 

		=== objc tests ===


Running target unix/-m32
FAIL: objc.dg/gnu-api-2-objc.m -fnext-runtime execution test
FAIL: objc.dg/no-extra-load.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/no-extra-load.m -fnext-runtime  scan-assembler-not L_objc_msgSend\\\\\$non_lazy_ptr
FAIL: objc.dg/objc-foreach-4.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/objc-foreach-5.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/objc-foreach-5.m -fnext-runtime  scan-assembler _addStuffUp:
FAIL: objc.dg/torture/strings/string1.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string1.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string2.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string2.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string3.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string3.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string4.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string4.m  -O2 -flto  -fnext-runtime (test for excess errors)

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

# of expected passes		6085
# of unexpected failures	12
# of expected failures		6
# of unresolved testcases	2
# of unsupported tests		85

Running target unix/-m64
FAIL: objc.dg/encode-7-next-64bit.m -fnext-runtime (test for excess errors)
WARNING: objc.dg/encode-7-next-64bit.m -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/gnu-api-2-objc.m -fnext-runtime execution test
FAIL: objc.dg/image-info.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/image-info.m -fnext-runtime  scan-assembler \\t.section __DATA, __objc_imageinfo.*\\n\\t.align.*\\nL_OBJC_ImageInfo.*:\\n\\t.long\\t0\\n\\t.long\\t17
FAIL: objc.dg/method-6.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/no-extra-load.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/no-extra-load.m -fnext-runtime  scan-assembler-not L_objc_msgSend\\\\\$non_lazy_ptr
FAIL: objc.dg/objc-foreach-4.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/objc-foreach-5.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/objc-foreach-5.m -fnext-runtime  scan-assembler _addStuffUp:
FAIL: objc.dg/pr23214.m -fnext-runtime (test for excess errors)
WARNING: objc.dg/pr23214.m -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/proto-lossage-7.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/symtab-1.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/symtab-1.m -fnext-runtime  scan-assembler-not L_OBJC_Symbols
FAIL: objc.dg/zero-link-1.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/zero-link-1.m -fnext-runtime  scan-assembler-not _OBJC_ClassRef_Base
UNRESOLVED: objc.dg/zero-link-1.m -fnext-runtime  scan-assembler objc_getClass
FAIL: objc.dg/zero-link-2.m -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/zero-link-2.m -fnext-runtime  scan-assembler _OBJC_ClassRef_Base
UNRESOLVED: objc.dg/zero-link-2.m -fnext-runtime  scan-assembler-not objc_getClass
FAIL: objc.dg/zero-link-3.m -fnext-runtime (test for excess errors)
WARNING: objc.dg/zero-link-3.m -fnext-runtime compilation failed to produce executable
FAIL: objc.dg/property/at-property-13.m -fgnu-runtime execution test
FAIL: objc.dg/strings/const-cfstring-5.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/strings/const-str-12b.m -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/const-str-10.m  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-10.m  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-10.m  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-11.m  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-11.m  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._XStr\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O0  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O0  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O0  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O1  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O1  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O1  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O2  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O3 -fomit-frame-pointer  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O3 -fomit-frame-pointer  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O3 -g  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O3 -g  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O3 -g  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -Os  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -Os  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -Os  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2 -flto -flto-partition=none  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/const-str-9.m  -O2 -flto  -fnext-runtime (test for excess errors)
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2 -flto  -fnext-runtime  scan-assembler .section __DATA, __objc_stringobj
UNRESOLVED: objc.dg/torture/strings/const-str-9.m  -O2 -flto  -fnext-runtime  scan-assembler .quad\\t_OBJC_CLASS_._NSConstantString\\n\\t.quad\\t.*\\n\\t.long\\t5\\n\\t.space
FAIL: objc.dg/torture/strings/string1.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string1.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string2.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string2.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string3.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string3.m  -O2 -flto  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string4.m  -O2 -flto -flto-partition=none  -fnext-runtime (test for excess errors)
FAIL: objc.dg/torture/strings/string4.m  -O2 -flto  -fnext-runtime (test for excess errors)

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

# of expected passes		5944
# of unexpected failures	48
# of expected failures		14
# of unresolved testcases	56
# of unsupported tests		91

		=== objc Summary ===

# of expected passes		12029
# of unexpected failures	60
# of expected failures		20
# of unresolved testcases	58
# of unsupported tests		176
/sw/src/fink.build/gcc48-4.8.0-1000/darwin_objdir/gcc/xgcc  version 4.8.0 20120907 (experimental) (GCC) 

		=== boehm-gc tests ===


Running target unix/-m32

		=== boehm-gc Summary for unix/-m32 ===

# of expected passes		12
# of unsupported tests		1

Running target unix/-m64

		=== boehm-gc Summary for unix/-m64 ===

# of expected passes		12
# of unsupported tests		1

		=== boehm-gc Summary ===

# of expected passes		24
# of unsupported tests		2
		=== libatomic tests ===


Running target unix/-m32

		=== libatomic Summary for unix/-m32 ===

# of expected passes		44
# of unsupported tests		5

Running target unix/-m64

		=== libatomic Summary for unix/-m64 ===

# of expected passes		54

		=== libatomic Summary ===

# of expected passes		98
# of unsupported tests		5
		=== libffi tests ===


Running target unix/-m32

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

# of expected passes		1659
# of unsupported tests		55

Running target unix/-m64

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

# of expected passes		1659
# of unsupported tests		55

		=== libffi Summary ===

# of expected passes		3318
# of unsupported tests		110
		=== libgomp tests ===


Running target unix/-m32

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

# of expected passes		2973
# of unsupported tests		3

Running target unix/-m64

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

# of expected passes		2973
# of unsupported tests		3

		=== libgomp Summary ===

# of expected passes		5946
# of unsupported tests		6
		=== libitm tests ===


Running target unix/-m32

		=== libitm Summary for unix/-m32 ===

# of expected passes		26
# of expected failures		3
# of unsupported tests		1

Running target unix/-m64

		=== libitm Summary for unix/-m64 ===

# of expected passes		26
# of expected failures		3
# of unsupported tests		1

		=== libitm Summary ===

# of expected passes		52
# of expected failures		6
# of unsupported tests		2
		=== 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
FAIL: PR16923 run
FAIL: Throw_2 execution - source compiled test
FAIL: Throw_2 -findirect-dispatch execution - source compiled test
FAIL: Throw_2 -O3 execution - source compiled test
FAIL: Throw_2 -O3 -findirect-dispatch execution - source compiled test

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

# of expected passes		2565
# of unexpected failures	5
# of untested testcases		5

		=== libjava Summary ===

# of expected passes		5137
# of unexpected failures	6
# of untested testcases		5
		=== libstdc++ tests ===


Running target unix/-m32

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

# of expected passes		7926
# of expected failures		42
# of unsupported tests		607

Running target unix/-m64

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

# of expected passes		7924
# of expected failures		42
# of unsupported tests		608

		=== libstdc++ Summary ===

# of expected passes		15850
# of expected failures		84
# of unsupported tests		1215

Compiler version: 4.8.0 20120907 (experimental) (GCC) 
Platform: x86_64-apple-darwin12.2.0
configure flags: --prefix=/sw --prefix=/sw/lib/gcc4.8 --mandir=/sw/share/man --infodir=/sw/lib/gcc4.8/info --enable-languages=c,c++,fortran,lto,objc,obj-c++,java --with-gmp=/sw --with-libiconv-prefix=/sw --with-isl=/sw --with-cloog=/sw --with-mpc=/sw --with-system-zlib --enable-checking=yes --x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib --program-suffix=-fsf-4.8


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]