summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/basic/bug504587-1.js
blob: a489f99cac0d262c9e41416d36c84a31593cde3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// This test case failed a WIP patch. See https://bugzilla.mozilla.org/show_bug.cgi?id=504587#c68

function B() {}
B.prototype.x = 1;
var d = new B;

var names = ['z', 'z', 'z', 'z', 'z', 'z', 'z', 'x'];
for (var i = 0; i < names.length; i++) {
    x = d.x;  // guard on shapeOf(d)
    d[names[i]] = 2;  // unpredicted shape change
    y = d.x;  // guard here is elided
}
assertEq(y, 2);  // Assertion failed: got 1, expected 2