Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 // |jit-test| debug
2 setDebug(true);
3 x = "notset";
5 function child() {
6 x = "failure1";
7 /* JSOP_STOP in parent. */
8 trap(parent, 16, "success()");
9 }
11 function parent() {
12 x = "failure2";
13 }
14 /* First op in parent. */
15 trap(parent, 0, "child()");
17 function success() {
18 x = "success";
19 }
21 parent();
22 assertEq(x, "success");