2002-12-02 Carlos O'Donell <carlos@baldric.uwo.ca>

* sysdeps/hppa/fpu/fesetround.c (fesetround): Use ~FE_DOWNWARD so both
	bits of RM are cleared.
This commit is contained in:
Roland McGrath 2002-12-03 02:50:52 +00:00
parent 8545e2d25e
commit b7d5c13d9d
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ fesetround (int round)
/* Get the current status word. */
__asm__ ("fstd %%fr0,0(%1)" : "=m" (*sw) : "r" (sw));
sw[0] &= ~FE_UPWARD;
sw[0] &= ~FE_DOWNWARD;
sw[0] |= round;
__asm__ ("fldd 0(%0),%%fr0" : : "r" (sw));