From a784e502472fb3a1afa4d01a47c66b52d23e00f6 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 7 Jan 2012 23:57:22 -0500 Subject: Remove pre-ISO C support No more __const. --- math/math_private.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'math/math_private.h') diff --git a/math/math_private.h b/math/math_private.h index 04c112f..602a271 100644 --- a/math/math_private.h +++ b/math/math_private.h @@ -353,10 +353,10 @@ extern double __slowpow (double __x, double __y, double __z); extern void __docos (double __x, double __dx, double __v[]); #ifndef math_opt_barrier -#define math_opt_barrier(x) \ +# define math_opt_barrier(x) \ ({ __typeof (x) __x = (x); __asm ("" : "+m" (__x)); __x; }) -#define math_force_eval(x) \ -({ __typeof (x) __x = (x); __asm __volatile ("" : : "m" (__x)); }) +# define math_force_eval(x) \ +({ __typeof (x) __x = (x); __asm __volatile__ ("" : : "m" (__x)); }) #endif -- cgit v1.1