summaryrefslogtreecommitdiff
path: root/src/wast-parser.h
diff options
context:
space:
mode:
authorKeith Winstein <keithw@cs.stanford.edu>2022-08-15 14:39:34 -0700
committerGitHub <noreply@github.com>2022-08-15 21:39:34 +0000
commit8c50fd5fdcf7e14fc5ab3acf1191e12afa4116ab (patch)
tree6698f8341781aa545954250fa29f7cb54ce2e422 /src/wast-parser.h
parent3bf73a83b909f43b8e4530562d5763721c49e4a7 (diff)
downloadwabt-8c50fd5fdcf7e14fc5ab3acf1191e12afa4116ab.tar.gz
wabt-8c50fd5fdcf7e14fc5ab3acf1191e12afa4116ab.tar.bz2
wabt-8c50fd5fdcf7e14fc5ab3acf1191e12afa4116ab.zip
Support multi-memory in all memory ops and in apply/resolve-names (#1962)
Diffstat (limited to 'src/wast-parser.h')
-rw-r--r--src/wast-parser.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/wast-parser.h b/src/wast-parser.h
index b3ac652f..53aa4321 100644
--- a/src/wast-parser.h
+++ b/src/wast-parser.h
@@ -207,9 +207,7 @@ class WastParser {
template <typename T>
Result ParseMemoryInstrVar(Location, std::unique_ptr<Expr>*);
template <typename T>
- Result ParsePlainLoadStoreInstr(Location, Token, std::unique_ptr<Expr>*);
- template <typename T>
- Result ParseMemoryLoadStoreInstr(Location, Token, std::unique_ptr<Expr>*);
+ Result ParseLoadStoreInstr(Location, Token, std::unique_ptr<Expr>*);
template <typename T>
Result ParseSIMDLoadStoreInstr(Location loc,
Token token,