Skip to content

Commit

Permalink
ldbl-128 fmal compile fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubjelinek authored and drepper committed Nov 22, 2010
1 parent 6db52fb commit 3bf8d1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2010-10-20 Jakub Jelinek <[email protected]>

* sysdeps/ieee754/ldbl-128/s_fmal.c (__fmal): Fix up inline asm.

2010-05-31 Petr Baudis <[email protected]>

[BZ #11149]
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/ieee754/ldbl-128/s_fmal.c
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ __fmal (long double x, long double y, long double z)
u.ieee.mantissa3 |= fetestexcept (FE_INEXACT) != 0;
v.d = a1 + u.d;
/* Ensure the addition is not scheduled after fetestexcept call. */
asm volatile ("" : "m" (v));
asm volatile ("" : : "m" (v));
int j = fetestexcept (FE_INEXACT) != 0;
feupdateenv (&env);
/* Ensure the following computations are performed in default rounding
Expand Down

0 comments on commit 3bf8d1b

Please sign in to comment.