From a2a59e96f8f18e00e8aea9627d3b15d894d5a825 Mon Sep 17 00:00:00 2001 From: Thomas Lively Date: Tue, 12 Dec 2023 11:25:53 -0800 Subject: Update `tuple.make` text format to include arity (#6169) Previously, the number of tuple elements was inferred from the number of s-expression children of the `tuple.make` expression, but that scheme would not work in the new wat parser, where s-expressions are optional and cannot be semantically meaningful. Update the text format to take the number of tuple elements (i.e. the tuple arity) as an immediate. This new format will be able to be implemented in the new parser as follow-on work. --- test/passes/precompute_all-features.wast | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'test/passes/precompute_all-features.wast') diff --git a/test/passes/precompute_all-features.wast b/test/passes/precompute_all-features.wast index 9fb444cb5..fad213a17 100644 --- a/test/passes/precompute_all-features.wast +++ b/test/passes/precompute_all-features.wast @@ -49,15 +49,15 @@ ) ) (drop - (tuple.make + (tuple.make 2 (tuple.extract 0 - (tuple.make + (tuple.make 2 (i32.const 42) (i32.const 0) ) ) (tuple.extract 1 - (tuple.make + (tuple.make 2 (i64.const 0) (i64.const 42) ) @@ -354,15 +354,15 @@ ) ) (func $tuple-precompute (result i32 i64) - (tuple.make + (tuple.make 2 (tuple.extract 0 - (tuple.make + (tuple.make 2 (i32.const 42) (i32.const 0) ) ) (tuple.extract 1 - (tuple.make + (tuple.make 2 (i64.const 0) (i64.const 42) ) -- cgit v1.2.3