js/src/jit-test/tests/jaeger/bug563000/trap-parent-from-trap.js

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

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");

mercurial