From 88d6b7c08f3fbf1b510ae630f83ff8d44321b151 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Mon, 29 Jan 2024 16:31:33 -0800 Subject: Update pop text syntax (#6251) Rather than `(pop valtype*)`, use `(pop valtype)`, where `valtype` is now allowed to be a tuple. This will make it possible to parse un-folded multivalue pops in the new text parser. The alternative would have been to put an arity in the syntax like we have for other tuple instructions, but that's much uglier. --- test/spec/exception-handling-old.wast | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/spec') diff --git a/test/spec/exception-handling-old.wast b/test/spec/exception-handling-old.wast index b56c4f295..5024fa734 100644 --- a/test/spec/exception-handling-old.wast +++ b/test/spec/exception-handling-old.wast @@ -82,7 +82,7 @@ ) (catch $e-i32-f32 (local.set $x - (pop i32 f32) + (pop (tuple i32 f32)) ) (tuple.extract 2 0 (local.get $x) -- cgit v1.2.3