mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-25 22:40:05 +00:00
Cleanup feenableexcept to use the same logic as the ARM version. No functional changes.
This commit is contained in:
parent
3a84f1a651
commit
a7b00c1101
@ -1,3 +1,8 @@
|
||||
2014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
|
||||
|
||||
* sysdeps/aarch64/fpu/feenablxcpt.c (feenableexcept):
|
||||
Simplify logic.
|
||||
|
||||
2014-10-24 Wilco Dijkstra <wdijkstr@arm.com>
|
||||
|
||||
* sysdeps/aarch64/fpu/fedisblxcpt.c (fedisableexcept):
|
||||
|
@ -24,14 +24,9 @@ feenableexcept (int excepts)
|
||||
{
|
||||
fpu_control_t fpcr;
|
||||
fpu_control_t fpcr_new;
|
||||
int original_excepts;
|
||||
|
||||
_FPU_GETCW (fpcr);
|
||||
|
||||
original_excepts = (fpcr >> FE_EXCEPT_SHIFT) & FE_ALL_EXCEPT;
|
||||
|
||||
excepts &= FE_ALL_EXCEPT;
|
||||
|
||||
fpcr_new = fpcr | (excepts << FE_EXCEPT_SHIFT);
|
||||
|
||||
if (fpcr != fpcr_new)
|
||||
@ -50,5 +45,5 @@ feenableexcept (int excepts)
|
||||
return -1;
|
||||
}
|
||||
|
||||
return original_excepts;
|
||||
return (fpcr >> FE_EXCEPT_SHIFT) & FE_ALL_EXCEPT;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user