diff options
author | Ng Zhi An <ngzhian@gmail.com> | 2021-03-17 09:17:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-17 09:17:00 -0700 |
commit | c7293e42c587cab2b15eaf2934f574f84eeab9e5 (patch) | |
tree | a800fdcee60af3effba7ee2c9e316b15f9c9a9b1 /src/shared-validator.h | |
parent | a24ae3eed05f28d91a48dac2591619dd204e4526 (diff) | |
download | wabt-c7293e42c587cab2b15eaf2934f574f84eeab9e5.tar.gz wabt-c7293e42c587cab2b15eaf2934f574f84eeab9e5.tar.bz2 wabt-c7293e42c587cab2b15eaf2934f574f84eeab9e5.zip |
[simd] Implement v128.load{32,64}_zero (#1644)
This requires a new ir type, and the relevant implementation of virtual
mthods in the various visitors.
Diffstat (limited to 'src/shared-validator.h')
-rw-r--r-- | src/shared-validator.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/shared-validator.h b/src/shared-validator.h index 456693bf..34f48d72 100644 --- a/src/shared-validator.h +++ b/src/shared-validator.h @@ -139,6 +139,7 @@ class SharedValidator { Result OnIf(const Location&, Type sig_type); Result OnLoad(const Location&, Opcode, Address align); Result OnLoadSplat(const Location&, Opcode, Address align); + Result OnLoadZero(const Location&, Opcode, Address align); Result OnLocalGet(const Location&, Var); Result OnLocalSet(const Location&, Var); Result OnLocalTee(const Location&, Var); |