summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/tracelogger/bug1138265.js
blob: 620148c6728fafc32c6a1a152442274f7601a854 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
try {
    (function(b, foreign, p) {
         "use asm"
         var ff = foreign.ff
         function f() {
            ff() | 0
         }
         return f
    })(this, {
        ff: startTraceLogger
    }, ArrayBuffer)()
} catch(e) {
    // Will throw exception if odinmonkey is on top of the stack upon calling startTraceLogger.
    // If there is another frame added in between (ion/baseline/interpreter).
    // This will just run to completion.
}

assertEq(true, true);