Closed
Bug 455758
Opened 17 years ago
Closed 17 years ago
TM: "Assertion failure: (m != JSVAL_INT) || isInt32(*vp)" with %(-0)
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: jruderman, Assigned: dvander)
Details
(Keywords: assertion, crash, testcase)
Attachments
(1 file)
|
447 bytes,
patch
|
gal
:
review+
|
Details | Diff | Splinter Review |
~/tracemonkey/js/src/Darwin_DBG.OBJ/js -j
js> (function() { for (var j = 0; j < 5; ++j) { var t = 3 % (-0); } })()
Assertion failure: (m != JSVAL_INT) || isInt32(*vp), at jstracer.cpp:1571
~/tracemonkey/js/src/Darwin_DBG.OBJ/js -j
js> (function() { for (var j = 0; j < 5; ++j) { 3 % (-0); } })()
Floating point exception: divide by zero [@ js_imod]
| Assignee | ||
Comment 1•17 years ago
|
||
Fixes both problems.
Updated•17 years ago
|
Attachment #339318 -
Flags: review?(gal) → review+
Comment 2•17 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 17 years ago
Resolution: --- → FIXED
Comment 3•17 years ago
|
||
/cvsroot/mozilla/js/tests/js1_5/Regress/regress-455758-01.js,v <-- regress-455758-01.js
initial revision: 1.1
/cvsroot/mozilla/js/tests/js1_5/Regress/regress-455758-02.js,v <-- regress-455758-02.js
initial revision: 1.1
http://hg.mozilla.org/mozilla-central/rev/6d9b6a1e6cd9
Flags: in-testsuite+
Flags: in-litmus-
You need to log in
before you can comment on or make changes to this bug.
Description
•