diff mbox

Commit: Testsuite: Fix typo in proc check_effective_target_trapping

Message ID 874mz8qbyy.fsf@redhat.com
State New
Headers show

Commit Message

Nick Clifton June 26, 2014, 9:03 a.m. UTC
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  <nickc@redhat.com>

	* lib/target-supports.exp (check_effective_target_trapping): Fix
	typo.
diff mbox

Patch

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"]
 }