summaryrefslogtreecommitdiff
path: root/src/passes/Print.cpp
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2022-08-29 12:48:46 -0700
committerGitHub <noreply@github.com>2022-08-29 12:48:46 -0700
commitbd630d707253a9838a3d0306e4be680942ff0715 (patch)
treeb51a786d3afd3ee97a78eb0d3923fb6ad59565d5 /src/passes/Print.cpp
parent8108ce28e66f1002932f6e5dc9dd4f23c8b8a9f3 (diff)
downloadbinaryen-bd630d707253a9838a3d0306e4be680942ff0715.tar.gz
binaryen-bd630d707253a9838a3d0306e4be680942ff0715.tar.bz2
binaryen-bd630d707253a9838a3d0306e4be680942ff0715.zip
Implement `extern.externalize` and `extern.internalize` (#4975)
These new GC instructions infallibly convert between `extern` and `any` references now that those types are not in the same hierarchy.
Diffstat (limited to 'src/passes/Print.cpp')
-rw-r--r--src/passes/Print.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/passes/Print.cpp b/src/passes/Print.cpp
index 5fb17af76..dc247c737 100644
--- a/src/passes/Print.cpp
+++ b/src/passes/Print.cpp
@@ -2214,6 +2214,12 @@ struct PrintExpressionContents
case RefAsI31:
printMedium(o, "ref.as_i31");
break;
+ case ExternInternalize:
+ printMedium(o, "extern.internalize");
+ break;
+ case ExternExternalize:
+ printMedium(o, "extern.externalize");
+ break;
default:
WASM_UNREACHABLE("invalid ref.is_*");
}