diff options
Diffstat (limited to 'storage/innobase/include/ut0ut.h')
-rw-r--r-- | storage/innobase/include/ut0ut.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/storage/innobase/include/ut0ut.h b/storage/innobase/include/ut0ut.h index bf127517051..3027004dbaf 100644 --- a/storage/innobase/include/ut0ut.h +++ b/storage/innobase/include/ut0ut.h @@ -72,9 +72,7 @@ typedef time_t ib_time_t; # define UT_RELAX_CPU() YieldProcessor() #elif defined(__powerpc__) && defined __GLIBC__ # include <sys/platform/ppc.h> -# define UT_RELAX_CPU() do { \ - volatile lint volatile_var = __ppc_get_timebase(); \ - } while (0) +# define UT_RELAX_CPU() __ppc_get_timebase() #else # define UT_RELAX_CPU() do { \ volatile int32 volatile_var; \ |