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 3.5-tree-ssa 20040225 (merged 20040211) testsuite on sparc-sun-solaris2.9


Additional patches used:

Index: builtins.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/builtins.c,v
retrieving revision 1.152.2.51
diff -u -r1.152.2.51 builtins.c
--- builtins.c	16 Feb 2004 12:35:41 -0000	1.152.2.51
+++ builtins.c	28 Feb 2004 17:32:54 -0000
@@ -7513,9 +7513,13 @@
   STRIP_NOPS (exp);
 
   if (TREE_CODE (exp) == ADDR_EXPR)
-    return decl_readonly_section (TREE_OPERAND (exp, 0), 0);
-  else
-    return false;
+    {
+      enum tree_code code = TREE_CODE (TREE_OPERAND (exp, 0));
+      char ch = TREE_CODE_CLASS (code);
+      if (ch == 'c' || ch == 'd' || code == CONSTRUCTOR)
+        return decl_readonly_section (TREE_OPERAND (exp, 0), 0);
+    }
+  return false;
 }
 
 /* Front-end to the simplify_builtin_XXX routines.
Index: calls.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/calls.c,v
retrieving revision 1.229.2.45
diff -u -r1.229.2.45 calls.c
--- calls.c	19 Feb 2004 09:05:19 -0000	1.229.2.45
+++ calls.c	28 Feb 2004 17:32:54 -0000
@@ -2264,7 +2264,8 @@
 		  || (ACCUMULATE_OUTGOING_ARGS
 		      && stack_arg_under_construction
 		      && structure_value_addr == virtual_outgoing_args_rtx)
-		  ? copy_addr_to_reg (structure_value_addr)
+		  ? copy_addr_to_reg (convert_memory_address 
+				      (Pmode, structure_value_addr))
 		  : structure_value_addr);
 
       actparms
Index: except.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/except.c,v
retrieving revision 1.227.2.24
diff -u -r1.227.2.24 except.c
--- except.c	13 Feb 2004 13:11:23 -0000	1.227.2.24
+++ except.c	28 Feb 2004 17:32:54 -0000
@@ -3202,6 +3202,7 @@
 
   /* Then adjust to find the real return address.  */
 #if defined (RETURN_ADDR_OFFSET)
+  addr = force_reg (Pmode, addr);
   addr = plus_constant (addr, RETURN_ADDR_OFFSET);
 #endif
 
Index: tree-ssa.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/Attic/tree-ssa.c,v
retrieving revision 1.1.4.206
diff -u -r1.1.4.206 tree-ssa.c
--- tree-ssa.c	26 Feb 2004 12:59:42 -0000	1.1.4.206
+++ tree-ssa.c	28 Feb 2004 17:32:56 -0000
@@ -2429,7 +2429,7 @@
 	}
 
       /* A VDEF kills any expression using a virtual operand.  */
-      if (NUM_VDEFS (VDEF_OPS (ann)) > 0)
+      if ((NUM_VDEFS (VDEF_OPS (ann)) > 0) || ann->has_volatile_ops)
         kill_virtual_exprs (tab, true);
     }
 }
Index: varasm.c
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/varasm.c,v
retrieving revision 1.295.2.46
diff -u -r1.295.2.46 varasm.c
--- varasm.c	19 Feb 2004 09:05:35 -0000	1.295.2.46
+++ varasm.c	28 Feb 2004 17:32:56 -0000
@@ -4603,7 +4603,12 @@
 	ret = SECCAT_RODATA;
     }
   else
-    ret = SECCAT_RODATA;
+    {
+      char ch = TREE_CODE_CLASS (TREE_CODE (decl));
+      if (ch != 'd' && ch != 'c')
+        abort ();
+      ret = SECCAT_RODATA;
+    }
 
   /* There are no read-only thread-local sections.  */
   if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL (decl))
Index: config/sparc/sparc.md
===================================================================
RCS file: /cvsroot/gcc/gcc/gcc/config/sparc/sparc.md,v
retrieving revision 1.175.2.12
diff -u -r1.175.2.12 sparc.md
--- config/sparc/sparc.md	13 Feb 2004 13:13:21 -0000	1.175.2.12
+++ config/sparc/sparc.md	28 Feb 2004 17:33:13 -0000
@@ -1938,7 +1938,7 @@
 (define_insn "movsi_lo_sum_pic"
   [(set (match_operand:SI 0 "register_operand" "=r")
         (lo_sum:SI (match_operand:SI 1 "register_operand" "r")
-                   (unspec:SI [(match_operand:SI 2 "immediate_operand" "in")] UNSPEC_MOVE_PIC)))]
+                   (unspec:SI [(match_operand:SI 2 "" "")] UNSPEC_MOVE_PIC)))]
   "flag_pic"
   "or\\t%1, %%lo(%a2), %0")
 
@@ -2240,7 +2240,7 @@
 (define_insn "movdi_lo_sum_pic"
   [(set (match_operand:DI 0 "register_operand" "=r")
         (lo_sum:DI (match_operand:DI 1 "register_operand" "r")
-                   (unspec:DI [(match_operand:DI 2 "immediate_operand" "in")] UNSPEC_MOVE_PIC)))]
+                   (unspec:DI [(match_operand:DI 2 "" "")] UNSPEC_MOVE_PIC)))]
   "TARGET_ARCH64 && flag_pic"
   "or\\t%1, %%lo(%a2), %0")
 
LAST_UPDATED: 
Native configuration is sparc-sun-solaris2.9

		=== g++ tests ===


Running target unix
WARNING: program timed out.
FAIL: g++.dg/eh/cleanup1.C (test for excess errors)
WARNING: g++.dg/eh/simd-1.C compilation failed to produce executable
WARNING: g++.dg/eh/simd-2.C compilation failed to produce executable
ERROR: g++.dg/opt/nothrow1.C: error executing dg-final: couldn't open "nothrow1.C.t46.optimized nothrow1.C.t50.optimized": no such file or directory
UNRESOLVED: g++.dg/opt/nothrow1.C: error executing dg-final: couldn't open "nothrow1.C.t46.optimized nothrow1.C.t50.optimized": no such file or directory
ERROR: g++.dg/tree-ssa/nothrow-1.C: error executing dg-final: couldn't open "nothrow-1.C.t14.cfg nothrow-1.C.t15.cfg": no such file or directory
UNRESOLVED: g++.dg/tree-ssa/nothrow-1.C: error executing dg-final: couldn't open "nothrow-1.C.t14.cfg nothrow-1.C.t15.cfg": no such file or directory
FAIL: 258: expected branch percentages not found: 25
FAIL: g++.dg/gcov/gcov-1.C gcov: 0 failures in line counts, 1 in branch percentages, 0 in return percentages
FAIL: 23:is 2:should be 1
FAIL: g++.dg/gcov/gcov-2.C gcov: 1 failures in line counts, 0 in branch percentages, 0 in return percentages
XPASS: g++.dg/special/conpr-2.C execution test
XPASS: g++.dg/special/initp1.C execution test
ERROR: g++.dg/tree-ssa/nothrow-1.C: error executing dg-final: couldn't open "nothrow-1.C.t14.cfg nothrow-1.C.t15.cfg": no such file or directory
UNRESOLVED: g++.dg/tree-ssa/nothrow-1.C: error executing dg-final: couldn't open "nothrow-1.C.t14.cfg nothrow-1.C.t15.cfg": no such file or directory
FAIL: g++.old-deja/g++.brendan/crash13.C  (test for errors, line 34)
FAIL: g++.old-deja/g++.bugs/900213_02.C  (test for errors, line 19)
FAIL: g++.old-deja/g++.bugs/900213_02.C (test for excess errors)
FAIL: g++.old-deja/g++.law/friend5.C  (test for errors, line 19)
FAIL: g++.old-deja/g++.law/friend5.C  (test for errors, line 24)
WARNING: g++.old-deja/g++.mike/p10769a.C compilation failed to produce executable
WARNING: g++.old-deja/g++.other/enum5.C compilation failed to produce executable
WARNING: g++.old-deja/g++.pt/friend44.C compilation failed to produce executable
FAIL: g++.old-deja/g++.pt/static10.C  (test for errors, line 14)
FAIL: g++.old-deja/g++.pt/static10.C (test for excess errors)

		=== g++ Summary ===

# of expected passes		9443
# of unexpected failures	12
# of unexpected successes	2
# of expected failures		80
# of unresolved testcases	3
# of unsupported tests		66
/home/thales/ehrhardt/gcc-ssa-cvs/build2/gcc/testsuite/../g++ version 3.5-tree-ssa 20040225 (merged 20040211)

		=== gcc tests ===


Running target unix
WARNING: program timed out.
FAIL: gcc.c-torture/compile/20001226-1.c (test for excess errors)
FAIL: gcc.c-torture/compile/20010605-1.c (test for excess errors)
FAIL: gcc.c-torture/compile/20010605-1.c (test for excess errors)
UNRESOLVED: gcc.c-torture/execute/simd-4.c execution,  -O0 
UNRESOLVED: gcc.dg/compat/vector-1 c_compat_x_tst.o-c_compat_y_tst.o link 
UNRESOLVED: gcc.dg/compat/vector-1 c_compat_x_tst.o-c_compat_y_tst.o execute 
UNRESOLVED: gcc.dg/compat/vector-2 c_compat_x_tst.o-c_compat_y_tst.o link 
UNRESOLVED: gcc.dg/compat/vector-2 c_compat_x_tst.o-c_compat_y_tst.o execute 
FAIL: gcc.dg/cpp/trad/recurse-1.c  (test for errors, line 7)
FAIL: gcc.dg/cpp/trad/recurse-1.c  (test for errors, line 10)
FAIL: gcc.dg/cpp/trad/recurse-1.c (test for excess errors)
FAIL: gcc.dg/20020425-1.c (test for excess errors)
WARNING: gcc.dg/20021014-1.c compilation failed to produce executable
FAIL: gcc.dg/builtins-10.c (test for excess errors)
FAIL: gcc.dg/builtins-26.c (test for excess errors)
FAIL: gcc.dg/builtins-7.c (test for excess errors)
WARNING: program timed out.
FAIL: gcc.dg/c99-intconst-1.c (test for excess errors)
FAIL: gcc.dg/fwritable-strings-1.c  (test for errors, line )
XPASS: gcc.dg/uninit-1.c uninitialized variable warning (test for bogus messages, line 16)
XPASS: gcc.dg/uninit-3.c uninitialized variable warning (test for bogus messages, line 11)
XPASS: gcc.dg/uninit-8.c uninitialized variable warning (test for bogus messages, line 14)
XPASS: gcc.dg/uninit-9.c uninitialized variable warning (test for bogus messages, line 26)
FAIL: gcc.dg/warn-1.c  (test for warnings, line 8)
FAIL: gcc.dg/format/c90-printf-2.c %A in C90 (test for warnings, line 23)
FAIL: gcc.dg/torture/builtin-explog-1.c (test for excess errors)
FAIL: gcc.dg/torture/builtin-explog-1.c (test for excess errors)
FAIL: gcc.dg/torture/builtin-explog-1.c (test for excess errors)
FAIL: gcc.dg/torture/builtin-explog-1.c (test for excess errors)
FAIL: gcc.dg/torture/builtin-explog-1.c (test for excess errors)
FAIL: gcc.dg/torture/builtin-explog-1.c (test for excess errors)
ERROR: gcc.dg/tree-ssa/20030530-2.c: error executing dg-final: couldn't open "20030530-2.c.t40.dom3 20030530-2.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030530-2.c: error executing dg-final: couldn't open "20030530-2.c.t40.dom3 20030530-2.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030611-1.c: error executing dg-final: couldn't open "20030611-1.c.t40.dom3 20030611-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030611-1.c: error executing dg-final: couldn't open "20030611-1.c.t40.dom3 20030611-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030703-1.c: error executing dg-final: couldn't open "20030703-1.c.t40.dom3 20030703-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030703-1.c: error executing dg-final: couldn't open "20030703-1.c.t40.dom3 20030703-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030703-2.c: error executing dg-final: couldn't open "20030703-2.c.t40.dom3 20030703-2.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030703-2.c: error executing dg-final: couldn't open "20030703-2.c.t40.dom3 20030703-2.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030708-1.c: error executing dg-final: couldn't open "20030708-1.c.t40.dom3 20030708-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030708-1.c: error executing dg-final: couldn't open "20030708-1.c.t40.dom3 20030708-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030709-1.c: error executing dg-final: couldn't open "20030709-1.c.t46.optimized 20030709-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030709-1.c: error executing dg-final: couldn't open "20030709-1.c.t46.optimized 20030709-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20030709-2.c: error executing dg-final: couldn't open "20030709-2.c.t42.cddce 20030709-2.c.t45.cddce": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030709-2.c: error executing dg-final: couldn't open "20030709-2.c.t42.cddce 20030709-2.c.t45.cddce": no such file or directory
ERROR: gcc.dg/tree-ssa/20030709-3.c: error executing dg-final: couldn't open "20030709-3.c.t40.dom3 20030709-3.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030709-3.c: error executing dg-final: couldn't open "20030709-3.c.t40.dom3 20030709-3.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030710-1.c: error executing dg-final: couldn't open "20030710-1.c.t40.dom3 20030710-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030710-1.c: error executing dg-final: couldn't open "20030710-1.c.t40.dom3 20030710-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030711-1.c: error executing dg-final: couldn't open "20030711-1.c.t40.dom3 20030711-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030711-1.c: error executing dg-final: couldn't open "20030711-1.c.t40.dom3 20030711-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030711-2.c: error executing dg-final: couldn't open "20030711-2.c.t40.dom3 20030711-2.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030711-2.c: error executing dg-final: couldn't open "20030711-2.c.t40.dom3 20030711-2.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030711-3.c: error executing dg-final: couldn't open "20030711-3.c.t40.dom3 20030711-3.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030711-3.c: error executing dg-final: couldn't open "20030711-3.c.t40.dom3 20030711-3.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030714-1.c: error executing dg-final: couldn't open "20030714-1.c.t40.dom3 20030714-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030714-1.c: error executing dg-final: couldn't open "20030714-1.c.t40.dom3 20030714-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030714-2.c: error executing dg-final: couldn't open "20030714-2.c.t40.dom3 20030714-2.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030714-2.c: error executing dg-final: couldn't open "20030714-2.c.t40.dom3 20030714-2.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030728-1.c: error executing dg-final: couldn't open "20030728-1.c.t46.optimized 20030728-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030728-1.c: error executing dg-final: couldn't open "20030728-1.c.t46.optimized 20030728-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20030729-1.c: error executing dg-final: couldn't open "20030729-1.c.t40.dom3 20030729-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030729-1.c: error executing dg-final: couldn't open "20030729-1.c.t40.dom3 20030729-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030730-1.c: error executing dg-final: couldn't open "20030730-1.c.t40.dom3 20030730-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030730-1.c: error executing dg-final: couldn't open "20030730-1.c.t40.dom3 20030730-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030730-2.c: error executing dg-final: couldn't open "20030730-2.c.t40.dom3 20030730-2.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030730-2.c: error executing dg-final: couldn't open "20030730-2.c.t40.dom3 20030730-2.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030731-1.c: error executing dg-final: couldn't open "20030731-1.c.t40.dom3 20030731-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030731-1.c: error executing dg-final: couldn't open "20030731-1.c.t40.dom3 20030731-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030731-2.c: error executing dg-final: couldn't open "20030731-2.c.t36.ccp 20030731-2.c.t39.ccp": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030731-2.c: error executing dg-final: couldn't open "20030731-2.c.t36.ccp 20030731-2.c.t39.ccp": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-1.c: error executing dg-final: couldn't open "20030807-1.c.t40.dom3 20030807-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-1.c: error executing dg-final: couldn't open "20030807-1.c.t40.dom3 20030807-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-10.c: error executing dg-final: couldn't open "20030807-10.c.t40.dom3 20030807-10.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-10.c: error executing dg-final: couldn't open "20030807-10.c.t40.dom3 20030807-10.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-11.c: error executing dg-final: couldn't open "20030807-11.c.t40.dom3 20030807-11.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-11.c: error executing dg-final: couldn't open "20030807-11.c.t40.dom3 20030807-11.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-2.c: error executing dg-final: couldn't open "20030807-2.c.t40.dom3 20030807-2.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-2.c: error executing dg-final: couldn't open "20030807-2.c.t40.dom3 20030807-2.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-3.c: error executing dg-final: couldn't open "20030807-3.c.t40.dom3 20030807-3.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-3.c: error executing dg-final: couldn't open "20030807-3.c.t40.dom3 20030807-3.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-5.c: error executing dg-final: couldn't open "20030807-5.c.t40.dom3 20030807-5.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-5.c: error executing dg-final: couldn't open "20030807-5.c.t40.dom3 20030807-5.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-6.c: error executing dg-final: couldn't open "20030807-6.c.t40.dom3 20030807-6.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-6.c: error executing dg-final: couldn't open "20030807-6.c.t40.dom3 20030807-6.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-7.c: error executing dg-final: couldn't open "20030807-7.c.t40.dom3 20030807-7.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-7.c: error executing dg-final: couldn't open "20030807-7.c.t40.dom3 20030807-7.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-8.c: error executing dg-final: couldn't open "20030807-8.c.t40.dom3 20030807-8.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-8.c: error executing dg-final: couldn't open "20030807-8.c.t40.dom3 20030807-8.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030807-9.c: error executing dg-final: couldn't open "20030807-9.c.t40.dom3 20030807-9.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030807-9.c: error executing dg-final: couldn't open "20030807-9.c.t40.dom3 20030807-9.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030808-1.c: error executing dg-final: couldn't open "20030808-1.c.t42.cddce 20030808-1.c.t45.cddce": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030808-1.c: error executing dg-final: couldn't open "20030808-1.c.t42.cddce 20030808-1.c.t45.cddce": no such file or directory
ERROR: gcc.dg/tree-ssa/20030814-1.c: error executing dg-final: couldn't open "20030814-1.c.t40.dom3 20030814-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030814-1.c: error executing dg-final: couldn't open "20030814-1.c.t40.dom3 20030814-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030814-2.c: error executing dg-final: couldn't open "20030814-2.c.t40.dom3 20030814-2.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030814-2.c: error executing dg-final: couldn't open "20030814-2.c.t40.dom3 20030814-2.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030814-3.c: error executing dg-final: couldn't open "20030814-3.c.t40.dom3 20030814-3.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030814-3.c: error executing dg-final: couldn't open "20030814-3.c.t40.dom3 20030814-3.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030814-4.c: error executing dg-final: couldn't open "20030814-4.c.t40.dom3 20030814-4.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030814-4.c: error executing dg-final: couldn't open "20030814-4.c.t40.dom3 20030814-4.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030814-5.c: error executing dg-final: couldn't open "20030814-5.c.t40.dom3 20030814-5.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030814-5.c: error executing dg-final: couldn't open "20030814-5.c.t40.dom3 20030814-5.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030814-6.c: error executing dg-final: couldn't open "20030814-6.c.t40.dom3 20030814-6.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030814-6.c: error executing dg-final: couldn't open "20030814-6.c.t40.dom3 20030814-6.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030814-7.c: error executing dg-final: couldn't open "20030814-7.c.t40.dom3 20030814-7.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030814-7.c: error executing dg-final: couldn't open "20030814-7.c.t40.dom3 20030814-7.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030815-1.c: error executing dg-final: couldn't open "20030815-1.c.t40.dom3 20030815-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030815-1.c: error executing dg-final: couldn't open "20030815-1.c.t40.dom3 20030815-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030821-1.c: error executing dg-final: couldn't open "20030821-1.c.t46.optimized 20030821-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030821-1.c: error executing dg-final: couldn't open "20030821-1.c.t46.optimized 20030821-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20030824-1.c: error executing dg-final: couldn't open "20030824-1.c.t46.optimized 20030824-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030824-1.c: error executing dg-final: couldn't open "20030824-1.c.t46.optimized 20030824-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20030824-2.c: error executing dg-final: couldn't open "20030824-2.c.t46.optimized 20030824-2.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030824-2.c: error executing dg-final: couldn't open "20030824-2.c.t46.optimized 20030824-2.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20030825-1.c: error executing dg-final: couldn't open "20030825-1.c.t46.optimized 20030825-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030825-1.c: error executing dg-final: couldn't open "20030825-1.c.t46.optimized 20030825-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20030907-1.c: error executing dg-final: couldn't open "20030907-1.c.t46.optimized 20030907-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030907-1.c: error executing dg-final: couldn't open "20030907-1.c.t46.optimized 20030907-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20030917-1.c: error executing dg-final: couldn't open "20030917-1.c.t36.ccp 20030917-1.c.t39.ccp": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030917-1.c: error executing dg-final: couldn't open "20030917-1.c.t36.ccp 20030917-1.c.t39.ccp": no such file or directory
ERROR: gcc.dg/tree-ssa/20030917-3.c: error executing dg-final: couldn't open "20030917-3.c.t36.ccp 20030917-3.c.t39.ccp": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030917-3.c: error executing dg-final: couldn't open "20030917-3.c.t36.ccp 20030917-3.c.t39.ccp": no such file or directory
ERROR: gcc.dg/tree-ssa/20030922-1.c: error executing dg-final: couldn't open "20030922-1.c.t40.dom3 20030922-1.c.t43.dom3": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030922-1.c: error executing dg-final: couldn't open "20030922-1.c.t40.dom3 20030922-1.c.t43.dom3": no such file or directory
ERROR: gcc.dg/tree-ssa/20030922-2.c: error executing dg-final: couldn't open "20030922-2.c.t19.dom1 20030922-2.c.t20.dom1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20030922-2.c: error executing dg-final: couldn't open "20030922-2.c.t19.dom1 20030922-2.c.t20.dom1": no such file or directory
ERROR: gcc.dg/tree-ssa/20031021-1.c: error executing dg-final: couldn't open "20031021-1.c.t46.optimized 20031021-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031021-1.c: error executing dg-final: couldn't open "20031021-1.c.t46.optimized 20031021-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20031022-1.c: error executing dg-final: couldn't open "20031022-1.c.t19.dom1 20031022-1.c.t20.dom1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031022-1.c: error executing dg-final: couldn't open "20031022-1.c.t19.dom1 20031022-1.c.t20.dom1": no such file or directory
ERROR: gcc.dg/tree-ssa/20031106-1.c: error executing dg-final: couldn't open "20031106-1.c.t46.optimized 20031106-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031106-1.c: error executing dg-final: couldn't open "20031106-1.c.t46.optimized 20031106-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20031106-2.c: error executing dg-final: couldn't open "20031106-2.c.t46.optimized 20031106-2.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031106-2.c: error executing dg-final: couldn't open "20031106-2.c.t46.optimized 20031106-2.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20031106-3.c: error executing dg-final: couldn't open "20031106-3.c.t46.optimized 20031106-3.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031106-3.c: error executing dg-final: couldn't open "20031106-3.c.t46.optimized 20031106-3.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20031106-4.c: error executing dg-final: couldn't open "20031106-4.c.t46.optimized 20031106-4.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031106-4.c: error executing dg-final: couldn't open "20031106-4.c.t46.optimized 20031106-4.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20031106-5.c: error executing dg-final: couldn't open "20031106-5.c.t46.optimized 20031106-5.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031106-5.c: error executing dg-final: couldn't open "20031106-5.c.t46.optimized 20031106-5.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20031106-6.c: error executing dg-final: couldn't open "20031106-6.c.t46.optimized 20031106-6.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031106-6.c: error executing dg-final: couldn't open "20031106-6.c.t46.optimized 20031106-6.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20031216-1.c: error executing dg-final: couldn't open "20031216-1.c.t46.optimized 20031216-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20031216-1.c: error executing dg-final: couldn't open "20031216-1.c.t46.optimized 20031216-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20040204-1.c: error executing dg-final: couldn't open "20040204-1.c.t46.optimized 20040204-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20040204-1.c: error executing dg-final: couldn't open "20040204-1.c.t46.optimized 20040204-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/20040210-1.c: error executing dg-final: couldn't open "20040210-1.c.t23.phiopt1 20040210-1.c.t24.phiopt1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/20040210-1.c: error executing dg-final: couldn't open "20040210-1.c.t23.phiopt1 20040210-1.c.t24.phiopt1": no such file or directory
ERROR: gcc.dg/tree-ssa/asm-1.c: error executing dg-final: couldn't open "asm-1.c.t50.optimized asm-1.c.t46.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/asm-1.c: error executing dg-final: couldn't open "asm-1.c.t50.optimized asm-1.c.t46.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/cfgcleanup-1.c: error executing dg-final: couldn't open "cfgcleanup-1.c.t18.dce1 cfgcleanup-1.c.t19.dce1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/cfgcleanup-1.c: error executing dg-final: couldn't open "cfgcleanup-1.c.t18.dce1 cfgcleanup-1.c.t19.dce1": no such file or directory
ERROR: gcc.dg/tree-ssa/sra-1.c: error executing dg-final: couldn't open "sra-1.c.t46.optimized sra-1.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/sra-1.c: error executing dg-final: couldn't open "sra-1.c.t46.optimized sra-1.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/sra-2.c: error executing dg-final: couldn't open "sra-2.c.t46.optimized sra-2.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/sra-2.c: error executing dg-final: couldn't open "sra-2.c.t46.optimized sra-2.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/sra-3.c: error executing dg-final: couldn't open "sra-3.c.t46.optimized sra-3.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/sra-3.c: error executing dg-final: couldn't open "sra-3.c.t46.optimized sra-3.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-ccp-1.c: error executing dg-final: couldn't open "ssa-ccp-1.c.t36.ccp ssa-ccp-1.c.t39.ccp": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-ccp-1.c: error executing dg-final: couldn't open "ssa-ccp-1.c.t36.ccp ssa-ccp-1.c.t39.ccp": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-ccp-10.c: error executing dg-final: couldn't open "ssa-ccp-10.c.t38.fab ssa-ccp-10.c.t41.fab": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-ccp-10.c: error executing dg-final: couldn't open "ssa-ccp-10.c.t38.fab ssa-ccp-10.c.t41.fab": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-ccp-11.c: error executing dg-final: couldn't open "ssa-ccp-11.c.t46.optimized ssa-ccp-11.c.t50.optimized": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-ccp-11.c: error executing dg-final: couldn't open "ssa-ccp-11.c.t46.optimized ssa-ccp-11.c.t50.optimized": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-ccp-2.c: error executing dg-final: couldn't open "ssa-ccp-2.c.t36.ccp ssa-ccp-2.c.t39.ccp": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-ccp-2.c: error executing dg-final: couldn't open "ssa-ccp-2.c.t36.ccp ssa-ccp-2.c.t39.ccp": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-ccp-3.c: error executing dg-final: couldn't open "ssa-ccp-3.c.t36.ccp ssa-ccp-3.c.t39.ccp": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-ccp-3.c: error executing dg-final: couldn't open "ssa-ccp-3.c.t36.ccp ssa-ccp-3.c.t39.ccp": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-ccp-7.c: error executing dg-final: couldn't open "ssa-ccp-7.c.t36.ccp ssa-ccp-7.c.t39.ccp": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-ccp-7.c: error executing dg-final: couldn't open "ssa-ccp-7.c.t36.ccp ssa-ccp-7.c.t39.ccp": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-ccp-9.c: error executing dg-final: couldn't open "ssa-ccp-9.c.t36.ccp ssa-ccp-9.c.t39.ccp": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-ccp-9.c: error executing dg-final: couldn't open "ssa-ccp-9.c.t36.ccp ssa-ccp-9.c.t39.ccp": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-dce-1.c: error executing dg-final: couldn't open "ssa-dce-1.c.t18.dce1 ssa-dce-1.c.t19.dce1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-dce-1.c: error executing dg-final: couldn't open "ssa-dce-1.c.t18.dce1 ssa-dce-1.c.t19.dce1": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-dce-2.c: error executing dg-final: couldn't open "ssa-dce-2.c.t18.dce1 ssa-dce-2.c.t19.dce1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-dce-2.c: error executing dg-final: couldn't open "ssa-dce-2.c.t18.dce1 ssa-dce-2.c.t19.dce1": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-dom-ccp-1.c: error executing dg-final: couldn't open "ssa-dom-ccp-1.c.t19.dom1 ssa-dom-ccp-1.c.t20.dom1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-dom-ccp-1.c: error executing dg-final: couldn't open "ssa-dom-ccp-1.c.t19.dom1 ssa-dom-ccp-1.c.t20.dom1": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-dom-cse-1.c: error executing dg-final: couldn't open "ssa-dom-cse-1.c.t19.dom1 ssa-dom-cse-1.c.t20.dom1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-dom-cse-1.c: error executing dg-final: couldn't open "ssa-dom-cse-1.c.t19.dom1 ssa-dom-cse-1.c.t20.dom1": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-dom-thread-1.c: error executing dg-final: couldn't open "ssa-dom-thread-1.c.t19.dom1 ssa-dom-thread-1.c.t20.dom1": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-dom-thread-1.c: error executing dg-final: couldn't open "ssa-dom-thread-1.c.t19.dom1 ssa-dom-thread-1.c.t20.dom1": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-pre-1.c: error executing dg-final: couldn't open "ssa-pre-1.c.t39.pre ssa-pre-1.c.t42.pre": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-pre-1.c: error executing dg-final: couldn't open "ssa-pre-1.c.t39.pre ssa-pre-1.c.t42.pre": no such file or directory
ERROR: gcc.dg/tree-ssa/ssa-pre-2.c: error executing dg-final: couldn't open "ssa-pre-2.c.t39.pre ssa-pre-2.c.t42.pre": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/ssa-pre-2.c: error executing dg-final: couldn't open "ssa-pre-2.c.t39.pre ssa-pre-2.c.t42.pre": no such file or directory
ERROR: gcc.dg/tree-ssa/tailcall-1.c: error executing dg-final: couldn't open "tailcall-1.c.t45.tailc tailcall-1.c.t49.tailc": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/tailcall-1.c: error executing dg-final: couldn't open "tailcall-1.c.t45.tailc tailcall-1.c.t49.tailc": no such file or directory
ERROR: gcc.dg/tree-ssa/tailrecursion-1.c: error executing dg-final: couldn't open "tailrecursion-1.c.t34.tailr tailrecursion-1.c.t37.tailr": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/tailrecursion-1.c: error executing dg-final: couldn't open "tailrecursion-1.c.t34.tailr tailrecursion-1.c.t37.tailr": no such file or directory
ERROR: gcc.dg/tree-ssa/tailrecursion-2.c: error executing dg-final: couldn't open "tailrecursion-2.c.t34.tailr tailrecursion-2.c.t37.tailr": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/tailrecursion-2.c: error executing dg-final: couldn't open "tailrecursion-2.c.t34.tailr tailrecursion-2.c.t37.tailr": no such file or directory
ERROR: gcc.dg/tree-ssa/tailrecursion-3.c: error executing dg-final: couldn't open "tailrecursion-3.c.t34.tailr tailrecursion-3.c.t37.tailr": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/tailrecursion-3.c: error executing dg-final: couldn't open "tailrecursion-3.c.t34.tailr tailrecursion-3.c.t37.tailr": no such file or directory
ERROR: gcc.dg/tree-ssa/tailrecursion-4.c: error executing dg-final: couldn't open "tailrecursion-4.c.t34.tailr tailrecursion-4.c.t37.tailr": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/tailrecursion-4.c: error executing dg-final: couldn't open "tailrecursion-4.c.t34.tailr tailrecursion-4.c.t37.tailr": no such file or directory
ERROR: gcc.dg/tree-ssa/useless-1.c: error executing dg-final: couldn't open "useless-1.c.t10.useless useless-1.c.t11.useless": no such file or directory
UNRESOLVED: gcc.dg/tree-ssa/useless-1.c: error executing dg-final: couldn't open "useless-1.c.t10.useless useless-1.c.t11.useless": no such file or directory
FAIL: 209: expected branch percentages not found: 25
FAIL: gcc.misc-tests/gcov-4b.c gcov: 0 failures in line counts, 1 in branch percentages, 0 in return percentages

		=== gcc Summary ===

# of expected passes		25340
# of unexpected failures	22
# of unexpected successes	4
# of expected failures		58
# of unresolved testcases	89
# of untested testcases		7
# of unsupported tests		298
/home/thales/ehrhardt/gcc-ssa-cvs/build2/gcc/xgcc version 3.5-tree-ssa 20040225 (merged 20040211)

		=== libmudflap tests ===


Running target unix
FAIL: libmudflap.c/fail1-frag.c (test for excess errors)
WARNING: libmudflap.c/fail1-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail10-frag.c (test for excess errors)
WARNING: libmudflap.c/fail10-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail11-frag.c (test for excess errors)
WARNING: libmudflap.c/fail11-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail12-frag.c (test for excess errors)
WARNING: libmudflap.c/fail12-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail13-frag.c (test for excess errors)
WARNING: libmudflap.c/fail13-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail14-frag.c (test for excess errors)
WARNING: libmudflap.c/fail14-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail15-frag.c (test for excess errors)
WARNING: libmudflap.c/fail15-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail16-frag.c (test for excess errors)
WARNING: libmudflap.c/fail16-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail17-frag.c (test for excess errors)
WARNING: libmudflap.c/fail17-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail18-frag.c (test for excess errors)
WARNING: libmudflap.c/fail18-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail19-frag.c (test for excess errors)
WARNING: libmudflap.c/fail19-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail2-frag.c (test for excess errors)
WARNING: libmudflap.c/fail2-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail20-frag.c (test for excess errors)
WARNING: libmudflap.c/fail20-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail21-frag.c (test for excess errors)
WARNING: libmudflap.c/fail21-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail22-frag.c (test for excess errors)
WARNING: libmudflap.c/fail22-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail23-frag.c (test for excess errors)
WARNING: libmudflap.c/fail23-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail25-frag.c (test for excess errors)
WARNING: libmudflap.c/fail25-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail26-frag.c (test for excess errors)
WARNING: libmudflap.c/fail26-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail27-frag.c (test for excess errors)
WARNING: libmudflap.c/fail27-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail28-frag.c (test for excess errors)
WARNING: libmudflap.c/fail28-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail29-frag.c (test for excess errors)
WARNING: libmudflap.c/fail29-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail3-frag.c (test for excess errors)
WARNING: libmudflap.c/fail3-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail30-frag.c (test for excess errors)
WARNING: libmudflap.c/fail30-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail31-frag.c (test for excess errors)
WARNING: libmudflap.c/fail31-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail4-frag.c (test for excess errors)
WARNING: libmudflap.c/fail4-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail5-frag.c (test for excess errors)
WARNING: libmudflap.c/fail5-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail6-frag.c (test for excess errors)
WARNING: libmudflap.c/fail6-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail7-frag.c (test for excess errors)
WARNING: libmudflap.c/fail7-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail8-frag.c (test for excess errors)
WARNING: libmudflap.c/fail8-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail9-frag.c (test for excess errors)
WARNING: libmudflap.c/fail9-frag.c compilation failed to produce executable
FAIL: libmudflap.c/hook-allocstuff.c (test for excess errors)
WARNING: libmudflap.c/hook-allocstuff.c compilation failed to produce executable
FAIL: libmudflap.c/pass-stratcliff.c (test for excess errors)
WARNING: libmudflap.c/pass-stratcliff.c compilation failed to produce executable
FAIL: libmudflap.c/pass1-frag.c (test for excess errors)
WARNING: libmudflap.c/pass1-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass10-frag.c (test for excess errors)
WARNING: libmudflap.c/pass10-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass11-frag.c (test for excess errors)
WARNING: libmudflap.c/pass11-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass12-frag.c (test for excess errors)
WARNING: libmudflap.c/pass12-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass13-frag.c (test for excess errors)
WARNING: libmudflap.c/pass13-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass14-frag.c (test for excess errors)
WARNING: libmudflap.c/pass14-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass15-frag.c (test for excess errors)
WARNING: libmudflap.c/pass15-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass16-frag.c (test for excess errors)
WARNING: libmudflap.c/pass16-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass17-frag.c (test for excess errors)
WARNING: libmudflap.c/pass17-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass18-frag.c (test for excess errors)
WARNING: libmudflap.c/pass18-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass19-frag.c (test for excess errors)
WARNING: libmudflap.c/pass19-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass2-frag.c (test for excess errors)
WARNING: libmudflap.c/pass2-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass20-frag.c (test for excess errors)
WARNING: libmudflap.c/pass20-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass21-frag.c (test for excess errors)
WARNING: libmudflap.c/pass21-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass22-frag.c (test for excess errors)
WARNING: libmudflap.c/pass22-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass23-frag.c (test for excess errors)
WARNING: libmudflap.c/pass23-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass24-frag.c (test for excess errors)
WARNING: libmudflap.c/pass24-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass25-frag.c (test for excess errors)
WARNING: libmudflap.c/pass25-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass26-frag.c (test for excess errors)
WARNING: libmudflap.c/pass26-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass29-frag.c (test for excess errors)
WARNING: libmudflap.c/pass29-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass3-frag.c (test for excess errors)
WARNING: libmudflap.c/pass3-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass30-frag.c (test for excess errors)
WARNING: libmudflap.c/pass30-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass32-frag.c (test for excess errors)
WARNING: libmudflap.c/pass32-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass33-frag.c (test for excess errors)
WARNING: libmudflap.c/pass33-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass34-frag.c (test for excess errors)
WARNING: libmudflap.c/pass34-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass35-frag.c (test for excess errors)
WARNING: libmudflap.c/pass35-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass36-frag.c (test for excess errors)
WARNING: libmudflap.c/pass36-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass38-frag.c (test for excess errors)
WARNING: libmudflap.c/pass38-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass4-frag.c (test for excess errors)
WARNING: libmudflap.c/pass4-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass42-frag.c (test for excess errors)
WARNING: libmudflap.c/pass42-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass43-frag.c (test for excess errors)
WARNING: libmudflap.c/pass43-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass44-frag.c (test for excess errors)
WARNING: libmudflap.c/pass44-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass45-frag.c (test for excess errors)
WARNING: libmudflap.c/pass45-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass46-frag.c (test for excess errors)
WARNING: libmudflap.c/pass46-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass5-frag.c (test for excess errors)
WARNING: libmudflap.c/pass5-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass6-frag.c (test for excess errors)
WARNING: libmudflap.c/pass6-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass7-frag.c (test for excess errors)
WARNING: libmudflap.c/pass7-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass8-frag.c (test for excess errors)
WARNING: libmudflap.c/pass8-frag.c compilation failed to produce executable
FAIL: libmudflap.c/pass9-frag.c (test for excess errors)
WARNING: libmudflap.c/pass9-frag.c compilation failed to produce executable
FAIL: libmudflap.c/fail1-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail1-frag.c (-static) crash test
FAIL: libmudflap.c/fail10-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail10-frag.c (-static) crash test
FAIL: libmudflap.c/fail11-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail11-frag.c (-static) crash test
FAIL: libmudflap.c/fail12-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail12-frag.c (-static) crash test
FAIL: libmudflap.c/fail13-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail13-frag.c (-static) crash test
FAIL: libmudflap.c/fail14-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail14-frag.c (-static) crash test
FAIL: libmudflap.c/fail15-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail15-frag.c (-static) crash test
FAIL: libmudflap.c/fail16-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail16-frag.c (-static) crash test
FAIL: libmudflap.c/fail17-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail17-frag.c (-static) crash test
FAIL: libmudflap.c/fail18-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail18-frag.c (-static) crash test
FAIL: libmudflap.c/fail19-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail19-frag.c (-static) crash test
FAIL: libmudflap.c/fail2-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail2-frag.c (-static) crash test
FAIL: libmudflap.c/fail20-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail21-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail21-frag.c (-static) crash test
FAIL: libmudflap.c/fail22-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail22-frag.c (-static) crash test
FAIL: libmudflap.c/fail23-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail23-frag.c (-static) crash test
FAIL: libmudflap.c/fail23-frag.c (-static) output pattern test
FAIL: libmudflap.c/fail25-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail25-frag.c (-static) crash test
FAIL: libmudflap.c/fail26-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail27-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail27-frag.c (-static) crash test
FAIL: libmudflap.c/fail28-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail28-frag.c (-static) crash test
FAIL: libmudflap.c/fail29-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail29-frag.c (-static) crash test
FAIL: libmudflap.c/fail3-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail3-frag.c (-static) crash test
FAIL: libmudflap.c/fail30-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail30-frag.c (-static) crash test
FAIL: libmudflap.c/fail31-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail31-frag.c (-static) crash test
FAIL: libmudflap.c/fail4-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail4-frag.c (-static) crash test
FAIL: libmudflap.c/fail5-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail5-frag.c (-static) crash test
FAIL: libmudflap.c/fail6-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail6-frag.c (-static) crash test
FAIL: libmudflap.c/fail7-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail7-frag.c (-static) crash test
FAIL: libmudflap.c/fail8-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail8-frag.c (-static) crash test
FAIL: libmudflap.c/fail9-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail9-frag.c (-static) crash test
FAIL: libmudflap.c/hook-allocstuff.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass-stratcliff.c (-static) (test for excess errors)
WARNING: libmudflap.c/pass-stratcliff.c (-static) compilation failed to produce executable
FAIL: libmudflap.c/pass1-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass10-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass11-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass12-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass13-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass14-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass15-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass16-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass17-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass18-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass19-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass2-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass20-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass21-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass22-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass23-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass24-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass25-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass26-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass29-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass3-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass30-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass32-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass33-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass34-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass35-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass36-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass38-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass4-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass42-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass43-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass44-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass45-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass46-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass5-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass6-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass7-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass8-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/pass9-frag.c (-static) (test for excess errors)
FAIL: libmudflap.c/fail1-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail1-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail10-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail10-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail11-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail11-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail12-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail12-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail13-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail13-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail14-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail14-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail15-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail15-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail16-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail16-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail17-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail17-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail18-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail18-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail19-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail19-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail2-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail2-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail20-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail20-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail21-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail21-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail22-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail22-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail23-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail23-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail25-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail25-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail26-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail26-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail27-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail27-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail28-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail28-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail29-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail29-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail3-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail3-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail30-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail30-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail31-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail31-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail4-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail4-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail5-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail5-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail6-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail6-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail7-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail7-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail8-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail8-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail9-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/fail9-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/hook-allocstuff.c (-O2) (test for excess errors)
WARNING: libmudflap.c/hook-allocstuff.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass-stratcliff.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass-stratcliff.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass1-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass1-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass10-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass10-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass11-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass11-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass12-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass12-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass13-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass13-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass14-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass14-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass15-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass15-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass16-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass16-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass17-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass17-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass18-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass18-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass19-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass19-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass2-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass2-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass20-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass20-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass21-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass21-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass22-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass22-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass23-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass23-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass24-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass24-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass25-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass25-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass26-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass26-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass29-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass29-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass3-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass3-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass30-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass30-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass32-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass32-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass33-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass33-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass34-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass34-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass35-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass35-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass36-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass36-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass38-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass38-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass4-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass4-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass42-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass42-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass43-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass43-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass44-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass44-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass45-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass45-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass46-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass46-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass5-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass5-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass6-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass6-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass7-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass7-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass8-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass8-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/pass9-frag.c (-O2) (test for excess errors)
WARNING: libmudflap.c/pass9-frag.c (-O2) compilation failed to produce executable
FAIL: libmudflap.c/fail1-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail1-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail10-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail10-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail11-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail11-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail12-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail12-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail13-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail13-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail14-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail14-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail15-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail15-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail16-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail16-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail17-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail17-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail18-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail18-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail19-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail19-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail2-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail2-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail20-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail20-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail21-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail21-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail22-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail22-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail23-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail23-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail25-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail25-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail26-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail26-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail27-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail27-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail28-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail28-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail29-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail29-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail3-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail3-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail30-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail30-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail31-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail31-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail4-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail4-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail5-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail5-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail6-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail6-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail7-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail7-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail8-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail8-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/fail9-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/fail9-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/hook-allocstuff.c (-O3) (test for excess errors)
WARNING: libmudflap.c/hook-allocstuff.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass-stratcliff.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass-stratcliff.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass1-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass1-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass10-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass10-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass11-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass11-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass12-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass12-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass13-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass13-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass14-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass14-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass15-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass15-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass16-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass16-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass17-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass17-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass18-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass18-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass19-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass19-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass2-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass2-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass20-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass20-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass21-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass21-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass22-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass22-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass23-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass23-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass24-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass24-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass25-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass25-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass26-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass26-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass29-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass29-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass3-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass3-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass30-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass30-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass32-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass32-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass33-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass33-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass34-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass34-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass35-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass35-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass36-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass36-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass38-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass38-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass4-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass4-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass42-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass42-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass43-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass43-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass44-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass44-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass45-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass45-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass46-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass46-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass5-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass5-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass6-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass6-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass7-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass7-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass8-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass8-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c/pass9-frag.c (-O3) (test for excess errors)
WARNING: libmudflap.c/pass9-frag.c (-O3) compilation failed to produce executable
FAIL: libmudflap.c++/fail24-frag.cxx (test for excess errors)
WARNING: libmudflap.c++/fail24-frag.cxx compilation failed to produce executable
FAIL: libmudflap.c++/pass27-frag.cxx (test for excess errors)
WARNING: libmudflap.c++/pass27-frag.cxx compilation failed to produce executable
FAIL: libmudflap.c++/pass28-frag.cxx (test for excess errors)
WARNING: libmudflap.c++/pass28-frag.cxx compilation failed to produce executable
FAIL: libmudflap.c++/pass31-frag.cxx (test for excess errors)
WARNING: libmudflap.c++/pass31-frag.cxx compilation failed to produce executable
FAIL: libmudflap.c++/pass41-frag.cxx (test for excess errors)
WARNING: libmudflap.c++/pass41-frag.cxx compilation failed to produce executable
FAIL: libmudflap.c++/fail24-frag.cxx (-static) (test for excess errors)
FAIL: libmudflap.c++/fail24-frag.cxx (-static) crash test
FAIL: libmudflap.c++/pass27-frag.cxx (-static) (test for excess errors)
FAIL: libmudflap.c++/pass28-frag.cxx (-static) (test for excess errors)
FAIL: libmudflap.c++/pass31-frag.cxx (-static) (test for excess errors)
FAIL: libmudflap.c++/pass41-frag.cxx (-static) (test for excess errors)
FAIL: libmudflap.c++/fail24-frag.cxx (-O2) (test for excess errors)
WARNING: libmudflap.c++/fail24-frag.cxx (-O2) compilation failed to produce executable
FAIL: libmudflap.c++/pass27-frag.cxx (-O2) (test for excess errors)
WARNING: libmudflap.c++/pass27-frag.cxx (-O2) compilation failed to produce executable
FAIL: libmudflap.c++/pass28-frag.cxx (-O2) (test for excess errors)
WARNING: libmudflap.c++/pass28-frag.cxx (-O2) compilation failed to produce executable
FAIL: libmudflap.c++/pass31-frag.cxx (-O2) (test for excess errors)
WARNING: libmudflap.c++/pass31-frag.cxx (-O2) compilation failed to produce executable
FAIL: libmudflap.c++/pass41-frag.cxx (-O2) (test for excess errors)
WARNING: libmudflap.c++/pass41-frag.cxx (-O2) compilation failed to produce executable
FAIL: libmudflap.c++/fail24-frag.cxx (-O3) (test for excess errors)
WARNING: libmudflap.c++/fail24-frag.cxx (-O3) compilation failed to produce executable
FAIL: libmudflap.c++/pass27-frag.cxx (-O3) (test for excess errors)
WARNING: libmudflap.c++/pass27-frag.cxx (-O3) compilation failed to produce executable
FAIL: libmudflap.c++/pass28-frag.cxx (-O3) (test for excess errors)
WARNING: libmudflap.c++/pass28-frag.cxx (-O3) compilation failed to produce executable
FAIL: libmudflap.c++/pass31-frag.cxx (-O3) (test for excess errors)
WARNING: libmudflap.c++/pass31-frag.cxx (-O3) compilation failed to produce executable
FAIL: libmudflap.c++/pass41-frag.cxx (-O3) (test for excess errors)
WARNING: libmudflap.c++/pass41-frag.cxx (-O3) compilation failed to produce executable
FAIL: libmudflap.cth/pass37-frag.c (test for excess errors)
FAIL: libmudflap.cth/pass37-frag.c execution test
FAIL: libmudflap.cth/pass37-frag.c output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 1) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 1) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 2) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 2) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 3) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 3) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 4) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 4) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 5) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 5) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 6) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 6) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 7) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 7) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 8) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 8) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 9) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 9) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 10) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 10) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 11) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 11) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 12) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 12) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 13) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 13) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 14) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 14) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 15) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 15) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 16) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 16) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 17) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 17) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 18) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 18) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (rerun 19) execution test
FAIL: libmudflap.cth/pass37-frag.c (rerun 19) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (test for excess errors)
FAIL: libmudflap.cth/pass39-frag.c execution test
FAIL: libmudflap.cth/pass39-frag.c output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 1) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 1) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 2) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 2) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 3) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 3) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 4) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 4) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 5) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 5) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 6) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 6) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 7) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 7) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 8) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 8) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 9) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 9) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 10) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 10) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 11) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 11) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 12) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 12) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 13) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 13) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 14) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 14) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 15) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 15) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 16) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 16) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 17) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 17) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 18) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 18) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (rerun 19) execution test
FAIL: libmudflap.cth/pass39-frag.c (rerun 19) output pattern test
FAIL: libmudflap.cth/pass40-frag.c (test for excess errors)
FAIL: libmudflap.cth/pass40-frag.c execution test
FAIL: libmudflap.cth/pass40-frag.c output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-static -DSTATIC) (test for excess errors)
WARNING: libmudflap.cth/pass37-frag.c (-static -DSTATIC) compilation failed to produce executable
FAIL: libmudflap.cth/pass39-frag.c (-static -DSTATIC) (test for excess errors)
WARNING: libmudflap.cth/pass39-frag.c (-static -DSTATIC) compilation failed to produce executable
FAIL: libmudflap.cth/pass40-frag.c (-static -DSTATIC) (test for excess errors)
WARNING: libmudflap.cth/pass40-frag.c (-static -DSTATIC) compilation failed to produce executable
FAIL: libmudflap.cth/pass37-frag.c (-O2) (test for excess errors)
FAIL: libmudflap.cth/pass37-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 1) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 1) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 2) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 2) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 3) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 3) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 4) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 4) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 5) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 5) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 6) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 6) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 7) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 7) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 8) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 8) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 9) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 9) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 10) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 10) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 11) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 11) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 12) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 12) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 13) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 13) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 14) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 14) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 15) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 15) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 16) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 16) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 17) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 17) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 18) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 18) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 19) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O2) (rerun 19) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (test for excess errors)
FAIL: libmudflap.cth/pass39-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 1) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 1) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 2) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 2) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 3) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 3) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 4) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 4) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 5) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 5) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 6) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 6) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 7) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 7) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 8) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 8) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 9) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 9) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 10) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 10) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 11) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 11) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 12) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 12) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 13) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 13) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 14) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 14) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 15) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 15) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 16) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 16) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 17) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 17) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 18) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 18) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 19) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O2) (rerun 19) output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O2) (test for excess errors)
FAIL: libmudflap.cth/pass40-frag.c (-O2) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O2) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (test for excess errors)
FAIL: libmudflap.cth/pass37-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 1) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 1) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 2) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 2) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 3) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 3) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 4) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 4) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 5) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 5) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 6) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 6) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 7) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 7) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 8) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 8) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 9) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 9) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 10) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 10) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 11) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 11) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 12) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 12) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 13) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 13) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 14) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 14) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 15) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 15) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 16) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 16) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 17) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 17) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 18) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 18) output pattern test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 19) execution test
FAIL: libmudflap.cth/pass37-frag.c (-O3) (rerun 19) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (test for excess errors)
FAIL: libmudflap.cth/pass39-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 1) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 1) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 2) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 2) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 3) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 3) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 4) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 4) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 5) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 5) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 6) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 6) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 7) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 7) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 8) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 8) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 9) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 9) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 10) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 10) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 11) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 11) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 12) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 12) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 13) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 13) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 14) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 14) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 15) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 15) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 16) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 16) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 17) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 17) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 18) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 18) output pattern test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 19) execution test
FAIL: libmudflap.cth/pass39-frag.c (-O3) (rerun 19) output pattern test
FAIL: libmudflap.cth/pass40-frag.c (-O3) (test for excess errors)
FAIL: libmudflap.cth/pass40-frag.c (-O3) execution test
FAIL: libmudflap.cth/pass40-frag.c (-O3) output pattern test

		=== libmudflap Summary ===

# of expected passes		84
# of unexpected failures	592
		=== libstdc++ tests ===


Running target unix
FAIL: 22_locale/collate/compare/wchar_t/2.cc (test for excess errors)
WARNING: 22_locale/collate/compare/wchar_t/2.cc compilation failed to produce executable
FAIL: 22_locale/collate/compare/wchar_t/wrapped_env.cc (test for excess errors)
WARNING: 22_locale/collate/compare/wchar_t/wrapped_env.cc compilation failed to produce executable
FAIL: 22_locale/collate/compare/wchar_t/wrapped_locale.cc (test for excess errors)
WARNING: 22_locale/collate/compare/wchar_t/wrapped_locale.cc compilation failed to produce executable
FAIL: 22_locale/collate/hash/wchar_t/2.cc (test for excess errors)
WARNING: 22_locale/collate/hash/wchar_t/2.cc compilation failed to produce executable
FAIL: 22_locale/collate/hash/wchar_t/wrapped_env.cc (test for excess errors)
WARNING: 22_locale/collate/hash/wchar_t/wrapped_env.cc compilation failed to produce executable
FAIL: 22_locale/collate/hash/wchar_t/wrapped_locale.cc (test for excess errors)
WARNING: 22_locale/collate/hash/wchar_t/wrapped_locale.cc compilation failed to produce executable
FAIL: 22_locale/collate/transform/wchar_t/2.cc (test for excess errors)
WARNING: 22_locale/collate/transform/wchar_t/2.cc compilation failed to produce executable
FAIL: 22_locale/collate/transform/wchar_t/wrapped_env.cc (test for excess errors)
WARNING: 22_locale/collate/transform/wchar_t/wrapped_env.cc compilation failed to produce executable
FAIL: 22_locale/collate/transform/wchar_t/wrapped_locale.cc (test for excess errors)
WARNING: 22_locale/collate/transform/wchar_t/wrapped_locale.cc compilation failed to produce executable
FAIL: 22_locale/num_get/get/wchar_t/4.cc execution test

		=== libstdc++ Summary ===

# of expected passes		2511
# of unexpected failures	10
# of expected failures		3
		=== libstdc++ tests ===


Running target unix/-m64
FAIL: 21_strings/basic_string/inserters_extractors/pod/10081-in.cc (test for excess errors)
WARNING: 21_strings/basic_string/inserters_extractors/pod/10081-in.cc compilation failed to produce executable
FAIL: 21_strings/basic_string/inserters_extractors/pod/10081-out.cc (test for excess errors)
WARNING: 21_strings/basic_string/inserters_extractors/pod/10081-out.cc compilation failed to produce executable
FAIL: 22_locale/collate/compare/wchar_t/2.cc (test for excess errors)
WARNING: 22_locale/collate/compare/wchar_t/2.cc compilation failed to produce executable
FAIL: 22_locale/collate/compare/wchar_t/wrapped_env.cc (test for excess errors)
WARNING: 22_locale/collate/compare/wchar_t/wrapped_env.cc compilation failed to produce executable
FAIL: 22_locale/collate/compare/wchar_t/wrapped_locale.cc (test for excess errors)
WARNING: 22_locale/collate/compare/wchar_t/wrapped_locale.cc compilation failed to produce executable
FAIL: 22_locale/collate/hash/wchar_t/2.cc (test for excess errors)
WARNING: 22_locale/collate/hash/wchar_t/2.cc compilation failed to produce executable
FAIL: 22_locale/collate/hash/wchar_t/wrapped_env.cc (test for excess errors)
WARNING: 22_locale/collate/hash/wchar_t/wrapped_env.cc compilation failed to produce executable
FAIL: 22_locale/collate/hash/wchar_t/wrapped_locale.cc (test for excess errors)
WARNING: 22_locale/collate/hash/wchar_t/wrapped_locale.cc compilation failed to produce executable
FAIL: 22_locale/collate/transform/wchar_t/2.cc (test for excess errors)
WARNING: 22_locale/collate/transform/wchar_t/2.cc compilation failed to produce executable
FAIL: 22_locale/collate/transform/wchar_t/wrapped_env.cc (test for excess errors)
WARNING: 22_locale/collate/transform/wchar_t/wrapped_env.cc compilation failed to produce executable
FAIL: 22_locale/collate/transform/wchar_t/wrapped_locale.cc (test for excess errors)
WARNING: 22_locale/collate/transform/wchar_t/wrapped_locale.cc compilation failed to produce executable
FAIL: 22_locale/numpunct/members/pod/1.cc (test for excess errors)
WARNING: 22_locale/numpunct/members/pod/1.cc compilation failed to produce executable
FAIL: 22_locale/numpunct/members/pod/2.cc (test for excess errors)
WARNING: 22_locale/numpunct/members/pod/2.cc compilation failed to produce executable
FAIL: 27_io/basic_istream/sentry/pod/1.cc (test for excess errors)
WARNING: 27_io/basic_istream/sentry/pod/1.cc compilation failed to produce executable
FAIL: 27_io/basic_ostream/sentry/pod/1.cc (test for excess errors)
WARNING: 27_io/basic_ostream/sentry/pod/1.cc compilation failed to produce executable

		=== libstdc++ Summary ===

# of expected passes		2500
# of unexpected failures	15
# of expected failures		3

Compiler version: 3.5-tree-ssa 20040225 (merged 20040211) 
Platform: sparc-sun-solaris2.9
configure flags: --enable-checking --enable-languages=c,c++ --prefix=/home/thales/ehrhardt/gcc-ssa-cvs/install2 --with-ld=/usr/local/bin/ld --with-gnu-ld --with-as=/usr/local/bin/as --with-gnu-as --disable-nls --with-libbanshee --with-libbanshee


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