diff options
author | Ng Zhi An <zhin@chromium.org> | 2021-03-22 17:12:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-22 17:12:10 -0700 |
commit | d15b1a1e3b975b3ce77aa2b747f890f396179d2f (patch) | |
tree | c064a11638a4fe698d3bcf3e2807aa7753cd3ec8 /src/binary-reader-logging.h | |
parent | 2c7d2572414aad39341734d1513a6cd94759a320 (diff) | |
download | wabt-d15b1a1e3b975b3ce77aa2b747f890f396179d2f.tar.gz wabt-d15b1a1e3b975b3ce77aa2b747f890f396179d2f.tar.bz2 wabt-d15b1a1e3b975b3ce77aa2b747f890f396179d2f.zip |
[simd] Implement store lane (#1647)
Diffstat (limited to 'src/binary-reader-logging.h')
-rw-r--r-- | src/binary-reader-logging.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/binary-reader-logging.h b/src/binary-reader-logging.h index 5cf7c6a7..f0b0cded 100644 --- a/src/binary-reader-logging.h +++ b/src/binary-reader-logging.h @@ -237,6 +237,10 @@ class BinaryReaderLogging : public BinaryReaderDelegate { Address alignment_log2, Address offset, uint64_t value) override; + Result OnSimdStoreLaneExpr(Opcode opcode, + Address alignment_log2, + Address offset, + uint64_t value) override; Result OnSimdShuffleOpExpr(Opcode opcode, v128 value) override; Result OnLoadSplatExpr(Opcode opcode, Address alignment_log2, |