Hi, I've committed the attached obvious patch as r216317.
Cheers, Oleg gcc/testsuite/ChangeLog: PR target/63260 * gcc.target/sh/pr63260.c: Fix typo __builtin_fabs vs. __builtin_abs.
Index: gcc/testsuite/gcc.target/sh/pr63260.c =================================================================== --- gcc/testsuite/gcc.target/sh/pr63260.c (revision 216313) +++ gcc/testsuite/gcc.target/sh/pr63260.c (working copy) @@ -26,5 +26,5 @@ double test_3 (double x) { - return __builtin_abs (x); + return __builtin_fabs (x); }