Commit 6ef98271 by Francois-Xavier Coudert Committed by François-Xavier Coudert

re PR libfortran/47972 (error.c:158:7: warning: return makes pointer from integer without a cast)

	PR libfortran/47972
	* runtime/error.c (gf_strerror): Silence warning.

From-SVN: r181180
parent e948157d
2011-11-08 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR libfortran/47972
* runtime/error.c (gf_strerror): Silence warning.
2011-11-08 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR libfortran/47970
* intrinsics/c99_functions.c (round): Move higher in the file.
......
......@@ -219,19 +219,13 @@ gf_strerror (int errnum,
size_t buflen __attribute__((unused)))
{
#ifdef HAVE_STRERROR_R
/* TODO: How to prevent the compiler warning due to strerror_r of
the untaken branch having the wrong return type? */
if (__builtin_classify_type (strerror_r (0, buf, 0)) == 5)
{
return
__builtin_choose_expr (__builtin_classify_type (strerror_r (0, buf, 0))
== 5,
/* GNU strerror_r() */
return strerror_r (errnum, buf, buflen);
}
else
{
strerror_r (errnum, buf, buflen),
/* POSIX strerror_r () */
strerror_r (errnum, buf, buflen);
return buf;
}
(strerror_r (errnum, buf, buflen), buf));
#else
/* strerror () is not necessarily thread-safe, but should at least
be available everywhere. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment