about summary refs log tree commit diff
path: root/sysdeps/ieee754/dbl-64/e_exp.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2001-03-12 07:57:09 +0000
committerUlrich Drepper <drepper@redhat.com>2001-03-12 07:57:09 +0000
commit50944bca4bfeefc5de2ec205ad549eb669ed1008 (patch)
tree8b9a7141aef238c00893d27a39d3a34247374a82 /sysdeps/ieee754/dbl-64/e_exp.c
parent445028e348508c6bcf7cc41ffab4af1b984a11d2 (diff)
downloadglibc-50944bca4bfeefc5de2ec205ad549eb669ed1008.tar.gz
glibc-50944bca4bfeefc5de2ec205ad549eb669ed1008.tar.xz
glibc-50944bca4bfeefc5de2ec205ad549eb669ed1008.zip
Fix warnings.
Diffstat (limited to 'sysdeps/ieee754/dbl-64/e_exp.c')
-rw-r--r--sysdeps/ieee754/dbl-64/e_exp.c14
1 files changed, 10 insertions, 4 deletions
diff --git a/sysdeps/ieee754/dbl-64/e_exp.c b/sysdeps/ieee754/dbl-64/e_exp.c
index 30d3941887..190c5667d6 100644
--- a/sysdeps/ieee754/dbl-64/e_exp.c
+++ b/sysdeps/ieee754/dbl-64/e_exp.c
@@ -45,8 +45,11 @@ double __slowexp(double);
 /***************************************************************************/
 double __ieee754_exp(double x) {
   double bexp, t, eps, del, base, y, al, bet, res, rem, cor;
-  mynumber junk1, junk2, binexp  = {0,0};
-  int4 k,i,j,m,n,ex;
+  mynumber junk1, junk2, binexp  = {{0,0}};
+#if 0
+  int4 k;
+#endif
+  int4 i,j,m,n,ex;
 
   junk1.x = x;
   m = junk1.i[HIGH_HALF];
@@ -149,8 +152,11 @@ double __ieee754_exp(double x) {
 
 double __exp1(double x, double xx, double error) {
   double bexp, t, eps, del, base, y, al, bet, res, rem, cor;
-  mynumber junk1, junk2, binexp  = {0,0};
-  int4 k,i,j,m,n,ex;
+  mynumber junk1, junk2, binexp  = {{0,0}};
+#if 0
+  int4 k;
+#endif
+  int4 i,j,m,n,ex;
 
   junk1.x = x;
   m = junk1.i[HIGH_HALF];