[Webkit-unassigned] [Bug 20302] New: Wrong signbit implementation for solaris platform
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Aug 6 07:51:20 PDT 2008
https://bugs.webkit.org/show_bug.cgi?id=20302
Summary: Wrong signbit implementation for solaris platform
Product: WebKit
Version: 526+ (Nightly build)
Platform: PC
OS/Version: Mac OS X 10.5
Status: UNCONFIRMED
Severity: Normal
Priority: P2
Component: Platform
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: alexey.ushakov at sun.com
Solaris platform has incomplete implementation for signbit finction in
JavaScriptCore/wtf/MathExtras.h.
Here is correct implementation of this function:
inline bool signbit(double num) { return copysign(1.0, num) < 0; }
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list