diff options
Diffstat (limited to 'test/exception-handling.wast.fromBinary')
-rw-r--r-- | test/exception-handling.wast.fromBinary | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/exception-handling.wast.fromBinary b/test/exception-handling.wast.fromBinary index 7add5b33e..4e1895593 100644 --- a/test/exception-handling.wast.fromBinary +++ b/test/exception-handling.wast.fromBinary @@ -15,7 +15,7 @@ (nop) ) (func $eh_test - (local $0 exnref) + (local $exn exnref) (try (do (throw $event$0 @@ -23,14 +23,14 @@ ) ) (catch - (local.set $0 + (local.set $exn (pop exnref) ) (drop (block $label$3 (result i32) (rethrow (br_on_exn $label$3 $event$0 - (local.get $0) + (local.get $exn) ) ) ) |