diff options
author | Jérôme Vouillon <jerome.vouillon@gmail.com> | 2024-07-08 16:23:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-08 20:23:00 +0000 |
commit | 81f8f770a1b2adc027cbbbd981781d2ee6952e54 (patch) | |
tree | 11df952c2b2da03fb5ad5a3d75b64a060df1a130 /src/wasm-interpreter.h | |
parent | 9792f2c1fd311c3ffd2036288c6e7614a0486481 (diff) | |
download | binaryen-81f8f770a1b2adc027cbbbd981781d2ee6952e54.tar.gz binaryen-81f8f770a1b2adc027cbbbd981781d2ee6952e54.tar.bz2 binaryen-81f8f770a1b2adc027cbbbd981781d2ee6952e54.zip |
Rename external conversion instructions (#6716)
Rename instructions `extern.internalize` into `any.convert_extern` and
`extern.externalize` into `extern.convert_any` to follow more closely
the spec. This was changed in
https://github.com/WebAssembly/gc/issues/432.
The legacy name is still accepted in text inputs and in the C and JS
APIs.
Diffstat (limited to 'src/wasm-interpreter.h')
-rw-r--r-- | src/wasm-interpreter.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wasm-interpreter.h b/src/wasm-interpreter.h index c12f9cc33..93739d1c9 100644 --- a/src/wasm-interpreter.h +++ b/src/wasm-interpreter.h @@ -1858,9 +1858,9 @@ public: trap("null ref"); } return value; - case ExternInternalize: + case AnyConvertExtern: return value.internalize(); - case ExternExternalize: + case ExternConvertAny: return value.externalize(); } WASM_UNREACHABLE("unimplemented ref.as_*"); @@ -2436,7 +2436,7 @@ public: } Flow visitRefAs(RefAs* curr) { // TODO: Remove this once interpretation is implemented. - if (curr->op == ExternInternalize || curr->op == ExternExternalize) { + if (curr->op == AnyConvertExtern || curr->op == ExternConvertAny) { return Flow(NONCONSTANT_FLOW); } return ExpressionRunner<SubType>::visitRefAs(curr); |