~siretart/gxine/bug.542506

« back to all changes in this revision

Viewing changes to src/spidermonkey/fdlibm/e_sinh.c

  • Committer: Bazaar Package Importer
  • Author(s): Siggi Langauf
  • Date: 2005-01-05 01:49:18 UTC
  • mto: (2.1.1 etch) (1.1.9 upstream)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20050105014918-wgldiqcd79ck2b0v
Tags: upstream-0.4.1
ImportĀ upstreamĀ versionĀ 0.4.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
106
106
 
107
107
    /* |x| in [log(maxdouble), overflowthresold] */
108
108
        lx = *( (((*(unsigned*)&one)>>29)) + (unsigned*)&x);
109
 
        if (ix<0x408633CE || (ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d)) {
 
109
        if (ix<0x408633CE || ((ix==0x408633ce)&&(lx<=(unsigned)0x8fb9f87d))) {
110
110
            w = __ieee754_exp(0.5*fd_fabs(x));
111
111
            t = h*w;
112
112
            return t*w;