Closed Bug 676283 Opened 13 years ago Closed 13 years ago

TI: Assertion failure: !cx->regs().inlined(), at vm/Stack.cpp:597

Categories

(Core :: JavaScript Engine, defect)

x86_64
Linux
defect
Not set
critical

Tracking

()

RESOLVED DUPLICATE of bug 676491

People

(Reporter: decoder, Unassigned)

References

Details

(Keywords: assertion, testcase)

The following testcase asserts on TI revision e1508f49adc4 (run with -j -m -n -a), tested on 64 bit:


function checkDataProperty(obj, p, expect, msg) {
    d = Object.getOwnPropertyDescriptor(obj, p)
    assertEq(d.value, expect.value,  + ": bad value for " + p)
}
function checkRegExp(r, msg, lastIndex, global, ignoreCase, multiline) {
    expect={
        value: lastIndex
    }
    checkDataProperty(r, "lastIndex", expect, msg);
}
r=/abcd/mg;
checkRegExp(r, "/abcd/mg initially", 0, true, false, true);
var obj = r.lastIndex={};
checkRegExp(r, "/cde/ig after lastIndex", obj, true, true, false);
checkRegExp(r, "/a/g initially", 0, true, false, false);
Status: NEW → RESOLVED
Closed: 13 years ago
Resolution: --- → DUPLICATE
A testcase for this bug was already added in the original bug (bug 676491).
Flags: in-testsuite-
You need to log in before you can comment on or make changes to this bug.