diff options
author | Ben Smith <binjimin@gmail.com> | 2018-05-27 00:21:38 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-27 00:21:38 -0700 |
commit | 409d61ef5d485ae2ce783968f290050840e87a22 (patch) | |
tree | c9c80327c6a4483dcd36c8152a28aab34310511e /src/binary-reader-logging.cc | |
parent | 7a6308ac5d7e73f174aef9252bcb9f0644f4dac8 (diff) | |
download | wabt-409d61ef5d485ae2ce783968f290050840e87a22.tar.gz wabt-409d61ef5d485ae2ce783968f290050840e87a22.tar.bz2 wabt-409d61ef5d485ae2ce783968f290050840e87a22.zip |
Update spec tests; rename {grow,current}_memory (#849)
`grow_memory` -> `memory.grow`
`current_memory` -> `memory.size`
This could have been a smaller change, but I took the opportunity to
rename the Token types, Expr types, and callback functions too. Many of
these are sorted alphabetically, so I resorted based on their new names.
Diffstat (limited to 'src/binary-reader-logging.cc')
-rw-r--r-- | src/binary-reader-logging.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/binary-reader-logging.cc b/src/binary-reader-logging.cc index f7b4d7eb..1ff0aea4 100644 --- a/src/binary-reader-logging.cc +++ b/src/binary-reader-logging.cc @@ -645,14 +645,14 @@ DEFINE_INDEX_DESC(OnCallIndirectExpr, "sig_index") DEFINE0(OnCatchExpr); DEFINE_OPCODE(OnCompareExpr) DEFINE_OPCODE(OnConvertExpr) -DEFINE0(OnCurrentMemoryExpr) DEFINE0(OnDropExpr) DEFINE0(OnElseExpr) DEFINE0(OnEndExpr) DEFINE_INDEX_DESC(OnGetGlobalExpr, "index") DEFINE_INDEX_DESC(OnGetLocalExpr, "index") -DEFINE0(OnGrowMemoryExpr) DEFINE_LOAD_STORE_OPCODE(OnLoadExpr); +DEFINE0(OnMemoryGrowExpr) +DEFINE0(OnMemorySizeExpr) DEFINE0(OnNopExpr) DEFINE0(OnRethrowExpr); DEFINE0(OnReturnExpr) |