Hi Guys, I am applying the patch below as an obvious fix for a typo in the check_effective_target_trapping proc in the testsuite's target-supports.exp file.
Cheers Nick gcc/testsuite/ChangeLog 2014-06-26 Nick Clifton <ni...@redhat.com> * lib/target-supports.exp (check_effective_target_trapping): Fix typo. Index: testsuite/lib/target-supports.exp =================================================================== --- testsuite/lib/target-supports.exp (revision 212014) +++ testsuite/lib/target-supports.exp (working copy) @@ -706,7 +706,7 @@ # Return 1 if trapping arithmetic is available, 0 otherwise. proc check_effective_target_trapping {} { - return [check_no_compiler_messages scheduling object { + return [check_no_compiler_messages trapping object { add (int a, int b) { return a + b; } } "-ftrapv"] }