From: Ulrich Drepper Date: Thu, 17 Aug 2000 20:31:43 +0000 (+0000) Subject: Update. X-Git-Tag: upstream/2.20~17839 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=319b400bb50e6e70c97d7fabdbb365cd946780ac;p=platform%2Fupstream%2Flinaro-glibc.git Update. * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Use type-correct code. (_FPU_SETCW): Likewise. Patch by Franz Sirl . --- diff --git a/ChangeLog b/ChangeLog index 9cad0a7..9373e08 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2000-08-17 Ulrich Drepper + * sysdeps/powerpc/fpu_control.h (_FPU_GETCW): Use type-correct code. + (_FPU_SETCW): Likewise. + Patch by Franz Sirl . + * stdio-common/printf_fp.c: Fix chars_needed computation. Patch by Greg McGary . diff --git a/sysdeps/powerpc/fpu_control.h b/sysdeps/powerpc/fpu_control.h index ed54ecb..cb6a772 100644 --- a/sysdeps/powerpc/fpu_control.h +++ b/sysdeps/powerpc/fpu_control.h @@ -50,15 +50,15 @@ typedef unsigned int fpu_control_t __attribute__ ((__mode__ (__SI__))); /* Macros for accessing the hardware control word. */ #define _FPU_GETCW(cw) ( { \ - fpu_control_t tmp[2] __attribute__ ((__aligned__(8))); \ - __asm__ ("mffs 0; stfd 0,%0" : "=m" (*tmp) : : "fr0"); \ - (cw)=tmp[1]; \ - tmp[1]; } ) + union { double d; fpu_control_t cw[2]; } tmp __attribute__ ((__aligned__(8))); \ + __asm__ ("mffs 0; stfd 0,%0" : "=m" (tmp.d) : : "fr0"); \ + (cw)=tmp.cw[1]; \ + tmp.cw[1]; } ) #define _FPU_SETCW(cw) { \ - fpu_control_t tmp[2] __attribute__ ((__aligned__(8))); \ - tmp[0] = 0xFFF80000; /* More-or-less arbitrary; this is a QNaN. */ \ - tmp[1] = cw; \ - __asm__ ("lfd 0,%0; mtfsf 255,0" : : "m" (*tmp) : "fr0"); \ + union { double d; fpu_control_t cw[2]; } tmp __attribute__ ((__aligned__(8))); \ + tmp.cw[0] = 0xFFF80000; /* More-or-less arbitrary; this is a QNaN. */ \ + tmp.cw[1] = cw; \ + __asm__ ("lfd 0,%0; mtfsf 255,0" : : "m" (tmp.d) : "fr0"); \ } /* Default control word set at startup. */