mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
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
This commit is contained in:
parent
4197028d21
commit
1773438a1b
@ -1,3 +1,9 @@
|
||||
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>
|
||||
Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
|
@ -33,7 +33,7 @@ get_rounding_mode (void)
|
||||
{
|
||||
#if defined(HAVE_FENV_H) && (defined(FE_DOWNWARD) || defined(FE_TONEAREST) \
|
||||
|| defined(FE_TOWARDZERO) || defined(FE_UPWARD))
|
||||
return fegetround (void);
|
||||
return fegetround ();
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user