Index: ChangeLog
===================================================================
--- ChangeLog	(revision 193774)
+++ ChangeLog	(working copy)
@@ -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>

Index: quadmath-rounding-mode.h
===================================================================
--- quadmath-rounding-mode.h	(revision 193774)
+++ quadmath-rounding-mode.h	(working copy)
@@ -33,7 +33,7 @@
 {
 #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
