re PR target/63260 ([SH] fabs, fneg do not need fp-mode setting and do not use fpscr)

gcc/testsuite/
	PR target/63260
	* gcc.target/sh/pr63260.c: Fix typo __builtin_fabs vs. __builtin_abs.

From-SVN: r216317
This commit is contained in:
Oleg Endo 2014-10-16 12:32:24 +00:00
parent 745583f953
commit f6d2e222bc
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2014-10-16 Oleg Endo <olegendo@gcc.gnu.org>
PR target/63260
* gcc.target/sh/pr63260.c: Fix typo __builtin_fabs vs. __builtin_abs.
2014-10-16 Richard Biener <rguenther@suse.de>
PR middle-end/63554

View File

@ -26,5 +26,5 @@ test_2 (float x)
double
test_3 (double x)
{
return __builtin_abs (x);
return __builtin_fabs (x);
}