From e09fb5656d5e791051393bd08e6522f068ec7fe4 Mon Sep 17 00:00:00 2001 From: Thomas Lively <7121787+tlively@users.noreply.github.com> Date: Fri, 23 Sep 2022 10:46:38 -0500 Subject: Emit call_ref with a type annotation (#5079) Emit call_ref instructions with type annotations and a temporary opcode. Also implement support for parsing optional type annotations on call_ref in the text and binary formats. This is part of a multi-part graceful update to switch Binaryen and all of its users over to using the type-annotated version of call_ref without there being any breakage. --- test/lit/passes/inlining_all-features.wast | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/lit/passes/inlining_all-features.wast') diff --git a/test/lit/passes/inlining_all-features.wast b/test/lit/passes/inlining_all-features.wast index 59afe1ce9..5ce964ceb 100644 --- a/test/lit/passes/inlining_all-features.wast +++ b/test/lit/passes/inlining_all-features.wast @@ -142,7 +142,7 @@ ;; CHECK: (func $1 ;; CHECK-NEXT: (block $__inlined_func$0 ;; CHECK-NEXT: (block - ;; CHECK-NEXT: (call_ref + ;; CHECK-NEXT: (call_ref $none_=>_none ;; CHECK-NEXT: (ref.null $none_=>_none) ;; CHECK-NEXT: ) ;; CHECK-NEXT: (br $__inlined_func$0) @@ -153,7 +153,7 @@ ;; NOMNL: (func $1 (type $none_=>_none) ;; NOMNL-NEXT: (block $__inlined_func$0 ;; NOMNL-NEXT: (block - ;; NOMNL-NEXT: (call_ref + ;; NOMNL-NEXT: (call_ref $none_=>_none ;; NOMNL-NEXT: (ref.null $none_=>_none) ;; NOMNL-NEXT: ) ;; NOMNL-NEXT: (br $__inlined_func$0) -- cgit v1.2.3