Skip to content
Snippets Groups Projects
Commit 8dd3a6aa authored by Raymond Toy's avatar Raymond Toy
Browse files

Initialize t to get rid of a compiler warning from clang.

The compiler thinks t might not be initialized  because the if on line
90 might not be true, leaving t uninitialized.  We know that the
condition is always true because |x| < -2^-27 in the previous line.
parent c2e152be
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,8 @@ qS4 = 7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */ ...@@ -73,7 +73,8 @@ qS4 = 7.70381505559019352791e-02; /* 0x3FB3B8C5, 0xB12E9282 */
double x; double x;
#endif #endif
{ {
double t,w,p,q,c,r,s; double t = 0;
double w,p,q,c,r,s;
int hx,ix; int hx,ix;
union { int i[2]; double d; } ux; union { int i[2]; double d; } ux;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment