Closed
Bug 621377
Opened 14 years ago
Closed 14 years ago
JM: Different output (interpreter vs JM) with given testcase
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 615065
Tracking | Status | |
---|---|---|
blocking2.0 | --- | betaN+ |
People
(Reporter: gkw, Unassigned)
References
Details
(Keywords: regression, testcase)
try {
function x() {}
(function() {
for (a = 0; a < 9; ++a) {
if (a == 1) {
function x()
function() {}
} else {
print(x)
}
}
})()
} catch(e) {}
without -m: (-j has the same output)
function x() {
}
function x() function () {};
function x() function () {};
function x() function () {};
function x() function () {};
function x() function () {};
function x() function () {};
function x() function () {};
with -m:
function x() {
}
function x() function () {};
function x() {
}
function x() {
}
function x() {
}
function x() {
}
function x() {
}
function x() {
}
Seems definitely related to methodjit.
Reporter | ||
Updated•14 years ago
|
blocking2.0: --- → ?
Comment 1•14 years ago
|
||
Related to bug 618007?
Updated•14 years ago
|
blocking2.0: ? → betaN+
Comment 2•14 years ago
|
||
Fixed by rev f3dae72f2b8e.
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•