Commit 1773438a by H.J. Lu Committed by H.J. Lu

Don't pass void to fegetround

	PR bootstrap/55455
	* quadmath-rounding-mode.h (get_rounding_mode): Don't pass
	void to fegetround.

From-SVN: r193775
parent 4197028d
2012-11-23 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/55455
* quadmath-rounding-mode.h (get_rounding_mode): Don't pass
void to fegetround.
2012-11-23 Tobias Burnus <burnus@net-b.de> 2012-11-23 Tobias Burnus <burnus@net-b.de>
Joseph Myers <joseph@codesourcery.com> Joseph Myers <joseph@codesourcery.com>
......
...@@ -33,7 +33,7 @@ get_rounding_mode (void) ...@@ -33,7 +33,7 @@ get_rounding_mode (void)
{ {
#if defined(HAVE_FENV_H) && (defined(FE_DOWNWARD) || defined(FE_TONEAREST) \ #if defined(HAVE_FENV_H) && (defined(FE_DOWNWARD) || defined(FE_TONEAREST) \
|| defined(FE_TOWARDZERO) || defined(FE_UPWARD)) || defined(FE_TOWARDZERO) || defined(FE_UPWARD))
return fegetround (void); return fegetround ();
#else #else
return 0; return 0;
#endif #endif
......
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