This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc 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]

Fix function name in scalbln_test call to END


libm-test.inc:scalbln_test used the wrong function name in the call to
END, meaning that any ulps would have been attributed to the wrong
function.  This patch fixes the function name used.  Tested x86_64 and
x86.

2013-05-14  Joseph Myers  <joseph@codesourcery.com>

	* math/libm-test.inc (scalbln_test): Correct function name in END
	call.

diff --git a/math/libm-test.inc b/math/libm-test.inc
index 8a3d41b..82b7d8b 100644
--- a/math/libm-test.inc
+++ b/math/libm-test.inc
@@ -13317,7 +13317,7 @@ scalbln_test (void)
 
   START (scalbln);
   RUN_TEST_LOOP_fl_f (scalbln, scalbln_test_data, );
-  END (scalbn);
+  END (scalbln);
 }
 
 

-- 
Joseph S. Myers
joseph@codesourcery.com


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