Results for 3.1.1 20020717 (prerelease) testsuite on arm-unknown-elf
velco@fadata.bg
velco@fadata.bg
Wed Jul 17 07:44:00 GMT 2002
Test results of 3.1.1 branch with the following patches applied. No
regressions, except on gcc.dg/format/c90-printf-1.c and
gcc.dg/format/attr-3.c, where the problem seems to be the testsuite
itself - compiler output somehow got truncated.
Index: gcc/reload1.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/reload1.c,v
retrieving revision 1.325.2.8
diff -u -d -p -r1.325.2.8 reload1.c
--- gcc/reload1.c 21 May 2002 23:42:54 -0000 1.325.2.8
+++ gcc/reload1.c 17 Jul 2002 13:12:36 -0000
@@ -3843,7 +3843,7 @@ reload_as_needed (live_known)
else if (INSN_P (insn))
{
- rtx oldpat = PATTERN (insn);
+ rtx oldpat = copy_rtx (PATTERN (insn));
/* If this is a USE and CLOBBER of a MEM, ensure that any
references to eliminable registers have been removed. */
Index: gcc/config/arm/arm.c
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/arm/arm.c,v
retrieving revision 1.196.2.4
diff -u -d -p -r1.196.2.4 arm.c
--- gcc/config/arm/arm.c 20 Mar 2002 15:06:03 -0000 1.196.2.4
+++ gcc/config/arm/arm.c 17 Jul 2002 13:12:49 -0000
@@ -8032,11 +8032,23 @@ arm_compute_initial_elimination_offset (
reg_mask = reg_mask & ~ (reg_mask & - reg_mask);
}
- if (regs_ever_live[LR_REGNUM]
- /* If a stack frame is going to be created, the LR will
- be saved as part of that, so we do not need to allow
- for it here. */
- && ! frame_pointer_needed)
+ /* Figure out if we need to save LR. */
+ if (
+ /* If a stack frame is going to be created, the LR will be
+ saved as part of that, so we do not need to allow for it
+ here. */
+ ! frame_pointer_needed
+ /* If we use the link register we need to save it. */
+ && (regs_ever_live [LR_REGNUM]
+ /* If we are pushing other registers onto the stack, we
+ can save an instruction in the epilogue by pushing
+ the link register now and then popping it back into
+ the PC. We only do it when optimising for size, and
+ only if we know that we will not need a fancy return
+ sequence. */
+ || (call_saved_registers
+ && optimize_size
+ && ARM_FUNC_TYPE (func_type) == ARM_FT_NORMAL)))
call_saved_registers += 4;
/* If the hard floating point registers are going to be
Index: gcc/config/arm/arm.md
===================================================================
RCS file: /cvs/gcc/gcc/gcc/config/arm/arm.md,v
retrieving revision 1.89.2.5
diff -u -d -p -r1.89.2.5 arm.md
--- gcc/config/arm/arm.md 10 Apr 2002 14:25:51 -0000 1.89.2.5
+++ gcc/config/arm/arm.md 17 Jul 2002 13:12:57 -0000
@@ -3390,7 +3390,7 @@
[(set (match_operand:SI 0 "s_register_operand" "")
(zero_extend:SI (subreg:QI (match_operand:SI 1 "" "") 0)))
(clobber (match_operand:SI 2 "s_register_operand" ""))]
- "TARGET_ARM && (GET_CODE (operands[1]) != MEM)"
+ "TARGET_ARM && (GET_CODE (operands[1]) != MEM) && ! BYTES_BIG_ENDIAN"
[(set (match_dup 2) (match_dup 1))
(set (match_dup 0) (and:SI (match_dup 2) (const_int 255)))]
""
@@ -4288,7 +4288,7 @@
[(set (match_dup 4) (match_dup 3))
(set (match_dup 2)
(ashiftrt:SI (match_operand 0 "" "") (const_int 8)))
- (set (match_operand 1 "" "") (subreg:QI (match_dup 2) 0))]
+ (set (match_operand 1 "" "") (subreg:QI (match_dup 2) 3))]
"TARGET_ARM"
"
{
@@ -4312,7 +4312,7 @@
(define_expand "storeinthi"
[(set (match_operand 0 "" "")
(subreg:QI (match_operand 1 "" "") 0))
- (set (match_dup 3) (subreg:QI (match_dup 2) 0))]
+ (set (match_dup 3) (match_dup 2))]
"TARGET_ARM"
"
{
@@ -4351,6 +4351,7 @@
operands[3] = adjust_address (op0, QImode, 1);
operands[0] = adjust_address (operands[0], QImode, 0);
+ operands[2] = gen_lowpart (QImode, operands[2]);
}"
)
@@ -4413,7 +4414,7 @@
}
emit_insn (gen_movsi (reg, GEN_INT (val)));
- operands[1] = gen_rtx_SUBREG (HImode, reg, 0);
+ operands[1] = gen_lowpart (HImode, reg);
}
else if (!arm_arch4)
{
@@ -4810,7 +4811,7 @@
rtx reg = gen_reg_rtx (SImode);
emit_insn (gen_movsi (reg, operands[1]));
- operands[1] = gen_rtx_SUBREG (QImode, reg, 0);
+ operands[1] = gen_lowpart (QImode, reg);
}
if (GET_CODE (operands[0]) == MEM)
operands[1] = force_reg (QImode, operands[1]);
@@ -4853,7 +4854,7 @@
if (GET_CODE (operands[0]) != REG)
abort ();
- operands[0] = gen_rtx (SUBREG, SImode, operands[0], 0);
+ operands[0] = gen_rtx_SUBREG (SImode, operands[0], 0);
emit_insn (gen_movsi (operands[0], operands[1]));
DONE;
}
LAST_UPDATED: Wed Jul 17 11:23:38 UTC 2002
Target is arm-unknown-elf
Host is i686-pc-linux-gnu
=== gcc tests ===
Running target arm-sim/-marm/-mbig-endian
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O0
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O1
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O2
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer -funroll-loops
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -g
FAIL: gcc.c-torture/execute/20020307-2.c execution, -Os
FAIL: gcc.c-torture/execute/20020404-1.c execution, -O2
FAIL: gcc.c-torture/execute/20020404-1.c execution, -Os
FAIL: gcc.c-torture/execute/920501-8.c execution, -O0
FAIL: gcc.c-torture/execute/920501-8.c execution, -O1
FAIL: gcc.c-torture/execute/920501-8.c execution, -O2
FAIL: gcc.c-torture/execute/920501-8.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/920501-8.c execution, -O3 -g
FAIL: gcc.c-torture/execute/920501-8.c execution, -Os
FAIL: gcc.c-torture/execute/920501-9.c execution, -O0
FAIL: gcc.c-torture/execute/920501-9.c execution, -O1
FAIL: gcc.c-torture/execute/920501-9.c execution, -O2
FAIL: gcc.c-torture/execute/920501-9.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/920501-9.c execution, -O3 -g
FAIL: gcc.c-torture/execute/920501-9.c execution, -Os
FAIL: gcc.c-torture/execute/920726-1.c execution, -O0
FAIL: gcc.c-torture/execute/920726-1.c execution, -O1
FAIL: gcc.c-torture/execute/920726-1.c execution, -O2
FAIL: gcc.c-torture/execute/920726-1.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/920726-1.c execution, -O3 -fomit-frame-pointer -funroll-loops
FAIL: gcc.c-torture/execute/920726-1.c execution, -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions
FAIL: gcc.c-torture/execute/920726-1.c execution, -O3 -g
FAIL: gcc.c-torture/execute/920726-1.c execution, -Os
FAIL: gcc.c-torture/execute/930513-1.c execution, -O0
FAIL: gcc.c-torture/execute/930513-1.c execution, -O1
FAIL: gcc.c-torture/execute/930513-1.c execution, -O2
FAIL: gcc.c-torture/execute/930513-1.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/930513-1.c execution, -O3 -g
FAIL: gcc.c-torture/execute/930513-1.c execution, -Os
FAIL: gcc.c-torture/execute/960327-1.c execution, -O0
FAIL: gcc.c-torture/execute/960327-1.c execution, -O1
FAIL: gcc.c-torture/execute/960327-1.c execution, -O2
FAIL: gcc.c-torture/execute/960327-1.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/960327-1.c execution, -O3 -fomit-frame-pointer -funroll-loops
FAIL: gcc.c-torture/execute/960327-1.c execution, -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions
FAIL: gcc.c-torture/execute/960327-1.c execution, -O3 -g
FAIL: gcc.c-torture/execute/960327-1.c execution, -Os
FAIL: gcc.c-torture/execute/990208-1.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/990208-1.c execution, -O3 -g
FAIL: gcc.c-torture/execute/ieee/920810-1.c execution, -O0
FAIL: gcc.c-torture/execute/ieee/920810-1.c execution, -O1
FAIL: gcc.c-torture/execute/ieee/920810-1.c execution, -O2
FAIL: gcc.c-torture/execute/ieee/920810-1.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/ieee/920810-1.c execution, -O3 -g
FAIL: gcc.c-torture/execute/ieee/920810-1.c execution, -Os
XPASS: gcc.dg/setjmp-1.c spurious clobbered warning (test for bogus messages, line 16)
FAIL: gcc.dg/wchar_t-1.c (test for excess errors)
FAIL: gcc.dg/wint_t-1.c (test for excess errors)
FAIL: gcc.dg/format/attr-3.c format_arg ret unsigned char string (test for errors, line 70)
FAIL: gcc.dg/format/attr-3.c (test for excess errors)
FAIL: gcc.dg/format/attr-3.c format_arg ret unsigned char string (test for errors, line 70)
FAIL: gcc.dg/format/attr-3.c (test for excess errors)
FAIL: gcc.dg/format/c90-printf-1.c %n with NULL (test for warnings, line 235)
FAIL: gcc.dg/format/c90-printf-1.c %s with NULL (test for warnings, line 236)
FAIL: gcc.dg/format/c90-printf-1.c (test for excess errors)
FAIL: gcc.misc-tests/bprob-1.c compilation, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -g -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -g -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O0 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O0 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O1 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O1 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O2 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O2 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O3 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O3 -g -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -g -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -Os -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -Os -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -g -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -g -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O0 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O0 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O1 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O1 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O2 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O2 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O3 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O3 -g -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -g -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -Os -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -Os -fbranch-probabilities
=== gcc Summary ===
# of expected passes 18245
# of unexpected failures 75
# of unexpected successes 1
# of expected failures 65
# of unresolved testcases 42
# of unsupported tests 127
/home/velco/build/arm-sim/gcc-3.1.1-reload-fix/gcc/xgcc version 3.1.1 20020717 (prerelease)
Host is i686-pc-linux-gnu
=== gcc tests ===
Running target arm-sim/-marm/-mlittle-endian
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O0
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O1
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O2
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer -funroll-loops
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -g
FAIL: gcc.c-torture/execute/20020307-2.c execution, -Os
FAIL: gcc.c-torture/execute/20020404-1.c execution, -O2
FAIL: gcc.c-torture/execute/20020404-1.c execution, -Os
FAIL: gcc.c-torture/execute/990208-1.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/990208-1.c execution, -O3 -g
XPASS: gcc.dg/setjmp-1.c spurious clobbered warning (test for bogus messages, line 16)
FAIL: gcc.dg/wchar_t-1.c (test for excess errors)
FAIL: gcc.dg/wint_t-1.c (test for excess errors)
FAIL: gcc.dg/format/c90-printf-1.c %n with NULL (test for warnings, line 235)
FAIL: gcc.dg/format/c90-printf-1.c %s with NULL (test for warnings, line 236)
FAIL: gcc.dg/format/c90-printf-1.c (test for excess errors)
FAIL: gcc.misc-tests/bprob-1.c compilation, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -g -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -g -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O0 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O0 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O1 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O1 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O2 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O2 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O3 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O3 -g -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -g -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -Os -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -Os -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -g -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -g -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O0 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O0 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O1 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O1 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O2 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O2 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O3 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O3 -g -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -g -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -Os -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -Os -fbranch-probabilities
=== gcc Summary ===
# of expected passes 18289
# of unexpected failures 31
# of unexpected successes 1
# of expected failures 65
# of unresolved testcases 42
# of unsupported tests 127
/home/velco/build/arm-sim/gcc-3.1.1-reload-fix/gcc/xgcc version 3.1.1 20020717 (prerelease)
Host is i686-pc-linux-gnu
=== gcc tests ===
Running target arm-sim/-mthumb/-mbig-endian
FAIL: gcc.c-torture/compile/920428-7.c, -Os
FAIL: gcc.c-torture/execute/20001026-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/20001026-1.c execution, -Os
FAIL: gcc.c-torture/execute/20010910-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/20010910-1.c execution, -Os
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O0
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O1
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O2
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer -funroll-loops
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -g
FAIL: gcc.c-torture/execute/20020307-2.c execution, -Os
FAIL: gcc.c-torture/execute/20020402-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/20020402-1.c execution, -Os
FAIL: gcc.c-torture/execute/920501-5.c compilation, -O1
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -O1
FAIL: gcc.c-torture/execute/920501-5.c compilation, -O2
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -O2
FAIL: gcc.c-torture/execute/920501-5.c compilation, -O3 -fomit-frame-pointer
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/920501-5.c compilation, -O3 -g
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -O3 -g
FAIL: gcc.c-torture/execute/920501-5.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -Os
FAIL: gcc.c-torture/execute/921013-1.c compilation, -O1
UNRESOLVED: gcc.c-torture/execute/921013-1.c execution, -O1
FAIL: gcc.c-torture/execute/930614-2.c compilation, -O1
UNRESOLVED: gcc.c-torture/execute/930614-2.c execution, -O1
FAIL: gcc.c-torture/execute/930614-2.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/930614-2.c execution, -Os
FAIL: gcc.c-torture/execute/930628-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/930628-1.c execution, -Os
FAIL: gcc.c-torture/execute/941014-1.c execution, -O0
FAIL: gcc.c-torture/execute/991228-1.c compilation, -O1
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -O1
FAIL: gcc.c-torture/execute/991228-1.c compilation, -O2
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -O2
FAIL: gcc.c-torture/execute/991228-1.c compilation, -O3 -fomit-frame-pointer
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/991228-1.c compilation, -O3 -g
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -O3 -g
FAIL: gcc.c-torture/execute/991228-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -Os
FAIL: gcc.c-torture/execute/loop-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/loop-1.c execution, -Os
FAIL: gcc.c-torture/unsorted/arr.c, -O1
FAIL: gcc.c-torture/unsorted/arr.c, -O2
FAIL: gcc.c-torture/unsorted/arr.c, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/unsorted/arr.c, -O3 -g
FAIL: gcc.c-torture/unsorted/arr.c, -Os
FAIL: gcc.dg/20020312-2.c (test for excess errors)
WARNING: gcc.dg/20020312-2.c compilation failed to produce executable
FAIL: gcc.dg/struct-alias-1.c (test for excess errors)
FAIL: gcc.dg/wchar_t-1.c (test for excess errors)
FAIL: gcc.dg/wint_t-1.c (test for excess errors)
FAIL: gcc.dg/format/attr-3.c format_arg ret unsigned char string (test for errors, line 70)
FAIL: gcc.dg/format/attr-3.c (test for excess errors)
FAIL: gcc.dg/format/c90-printf-1.c %n with NULL (test for warnings, line 235)
FAIL: gcc.dg/format/c90-printf-1.c %s with NULL (test for warnings, line 236)
FAIL: gcc.dg/format/c90-printf-1.c (test for excess errors)
FAIL: gcc.dg/format/c90-printf-1.c %n with NULL (test for warnings, line 235)
FAIL: gcc.dg/format/c90-printf-1.c %s with NULL (test for warnings, line 236)
FAIL: gcc.dg/format/c90-printf-1.c (test for excess errors)
FAIL: gcc.misc-tests/bprob-1.c compilation, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -g -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -g -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O0 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O0 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O1 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O1 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O2 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O2 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O3 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O3 -g -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -g -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -Os -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -Os -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -g -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -g -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O0 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O0 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O1 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O1 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O2 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O2 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O3 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O3 -g -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -g -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -Os -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -Os -fbranch-probabilities
=== gcc Summary ===
# of expected passes 18242
# of unexpected failures 59
# of expected failures 66
# of unresolved testcases 60
# of unsupported tests 127
/home/velco/build/arm-sim/gcc-3.1.1-reload-fix/gcc/xgcc version 3.1.1 20020717 (prerelease)
Host is i686-pc-linux-gnu
=== gcc tests ===
Running target arm-sim/-mthumb/-mlittle-endian
FAIL: gcc.c-torture/compile/920428-7.c, -Os
FAIL: gcc.c-torture/execute/20001026-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/20001026-1.c execution, -Os
FAIL: gcc.c-torture/execute/20010910-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/20010910-1.c execution, -Os
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O0
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O1
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O2
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer -funroll-loops
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -fomit-frame-pointer -funroll-all-loops -finline-functions
FAIL: gcc.c-torture/execute/20020307-2.c execution, -O3 -g
FAIL: gcc.c-torture/execute/20020307-2.c execution, -Os
FAIL: gcc.c-torture/execute/20020402-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/20020402-1.c execution, -Os
FAIL: gcc.c-torture/execute/920501-5.c compilation, -O1
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -O1
FAIL: gcc.c-torture/execute/920501-5.c compilation, -O2
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -O2
FAIL: gcc.c-torture/execute/920501-5.c compilation, -O3 -fomit-frame-pointer
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/920501-5.c compilation, -O3 -g
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -O3 -g
FAIL: gcc.c-torture/execute/920501-5.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/920501-5.c execution, -Os
FAIL: gcc.c-torture/execute/921013-1.c compilation, -O1
UNRESOLVED: gcc.c-torture/execute/921013-1.c execution, -O1
FAIL: gcc.c-torture/execute/930614-2.c compilation, -O1
UNRESOLVED: gcc.c-torture/execute/930614-2.c execution, -O1
FAIL: gcc.c-torture/execute/930614-2.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/930614-2.c execution, -Os
FAIL: gcc.c-torture/execute/930628-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/930628-1.c execution, -Os
FAIL: gcc.c-torture/execute/941014-1.c execution, -O0
FAIL: gcc.c-torture/execute/991228-1.c compilation, -O1
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -O1
FAIL: gcc.c-torture/execute/991228-1.c compilation, -O2
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -O2
FAIL: gcc.c-torture/execute/991228-1.c compilation, -O3 -fomit-frame-pointer
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/execute/991228-1.c compilation, -O3 -g
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -O3 -g
FAIL: gcc.c-torture/execute/991228-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/991228-1.c execution, -Os
FAIL: gcc.c-torture/execute/loop-1.c compilation, -Os
UNRESOLVED: gcc.c-torture/execute/loop-1.c execution, -Os
FAIL: gcc.c-torture/unsorted/arr.c, -O1
FAIL: gcc.c-torture/unsorted/arr.c, -O2
FAIL: gcc.c-torture/unsorted/arr.c, -O3 -fomit-frame-pointer
FAIL: gcc.c-torture/unsorted/arr.c, -O3 -g
FAIL: gcc.c-torture/unsorted/arr.c, -Os
FAIL: gcc.dg/20020312-2.c (test for excess errors)
WARNING: gcc.dg/20020312-2.c compilation failed to produce executable
FAIL: gcc.dg/struct-alias-1.c (test for excess errors)
FAIL: gcc.dg/wchar_t-1.c (test for excess errors)
FAIL: gcc.dg/wint_t-1.c (test for excess errors)
FAIL: gcc.dg/format/attr-3.c format_arg ret unsigned char string (test for errors, line 70)
FAIL: gcc.dg/format/attr-3.c (test for excess errors)
FAIL: gcc.dg/format/c90-printf-1.c %n with NULL (test for warnings, line 235)
FAIL: gcc.dg/format/c90-printf-1.c %s with NULL (test for warnings, line 236)
FAIL: gcc.dg/format/c90-printf-1.c (test for excess errors)
FAIL: gcc.misc-tests/bprob-1.c compilation, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -g -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -g -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O0 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O0 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O1 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O1 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O2 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O2 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O3 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -O3 -g -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -O3 -g -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-1.c compilation, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-1.c compilation, -Os -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-1.c execution, -Os -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -g -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -g -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -g -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O0 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O0 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O0 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O1 -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O1 -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O1 -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O2 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O2 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O2 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O3 -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -g -DPERFTIME -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -O3 -g -DPERFTIME -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -O3 -g -DPERFTIME -fbranch-probabilities
FAIL: gcc.misc-tests/bprob-2.c compilation, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -Os -fprofile-arcs
UNRESOLVED: gcc.misc-tests/bprob-2.c compilation, -Os -fbranch-probabilities
UNRESOLVED: gcc.misc-tests/bprob-2.c execution, -Os -fbranch-probabilities
=== gcc Summary ===
# of expected passes 18245
# of unexpected failures 56
# of expected failures 66
# of unresolved testcases 60
# of unsupported tests 127
/home/velco/build/arm-sim/gcc-3.1.1-reload-fix/gcc/xgcc version 3.1.1 20020717 (prerelease)
Compiler version: 3.1.1 20020717 (prerelease)
Platform: arm-unknown-elf
configure flags: --host=i686-pc-linux-gnu --prefix=/home/velco/sim --target=arm-elf --enable-languages=c --with-cpu=arm7tdmi
More information about the Gcc-testresults
mailing list