Skip to content

Commit

Permalink
2005-07-20 Bob Wilson <bob.wilson@acm.org>
Browse files Browse the repository at this point in the history
            Darin Petkov <darin@tensilica.com>

	* sysdeps/ieee754/flt-32/e_atan2f.c (pi_lo): Correct exponent value.
  • Loading branch information
Ulrich Drepper committed Jul 20, 2005
1 parent 8a259a2 commit aa2ebe0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2005-07-20 Bob Wilson <bob.wilson@acm.org>
Darin Petkov <darin@tensilica.com>

* sysdeps/ieee754/flt-32/e_atan2f.c (pi_lo): Correct exponent value.

2005-07-20 Jakub Jelinek <jakub@redhat.com>

* include/stdio.h (__fxprintf): Remove wfmt argument.
Expand Down
2 changes: 1 addition & 1 deletion sysdeps/ieee754/flt-32/e_atan2f.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ zero = 0.0,
pi_o_4 = 7.8539818525e-01, /* 0x3f490fdb */
pi_o_2 = 1.5707963705e+00, /* 0x3fc90fdb */
pi = 3.1415927410e+00, /* 0x40490fdb */
pi_lo = -8.7422776573e-07; /* 0xb3bbbd2e */
pi_lo = -8.7422776573e-08; /* 0xb3bbbd2e */

#ifdef __STDC__
float __ieee754_atan2f(float y, float x)
Expand Down

0 comments on commit aa2ebe0

Please sign in to comment.