mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-26 15:00:06 +00:00
(feclearexcept): Right shift FE_ALL_EXCEPT before complimenting.
This commit is contained in:
parent
69751d3f42
commit
4db359168e
@ -29,7 +29,7 @@ feclearexcept (int excepts)
|
||||
__asm__ ("fstd %%fr0,0(%1)" : "=m" (*sw) : "r" (sw));
|
||||
|
||||
/* Clear all the relevant bits. */
|
||||
sw[0] &= ~(excepts & FE_ALL_EXCEPT) << 27;
|
||||
sw[0] &= ~((excepts & FE_ALL_EXCEPT) << 27);
|
||||
__asm__ ("fldd 0(%0),%%fr0" : : "r" (sw));
|
||||
|
||||
/* Success. */
|
||||
|
Loading…
Reference in New Issue
Block a user