summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/wasm/exnref/bug1883865.js
blob: d6418d128500aae0a111713e96d99a5a5a2f7859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Checks proper padding for nested tryNotes.

new WebAssembly.Module(wasmTextToBinary(`(module
  (func
      try_table $l3
        try_table $l4
          try_table $l5
          end
        end
      end
  )
)`));

new WebAssembly.Module(wasmTextToBinary(`(module
  (func
      try_table $l3
        try_table $l4
          try_table $l5
          end
          try_table $l5a
          end
        end
      end
  )
)`));