diff options
author | Ben Smith <binji@chromium.org> | 2015-12-17 11:41:43 -0800 |
---|---|---|
committer | Ben Smith <binji@chromium.org> | 2015-12-17 11:41:43 -0800 |
commit | a27b0c7b993b0eb9caf6dc7f9d0c7d95f177029c (patch) | |
tree | 4f9376dd68abbdef03eef7289083a9bfdf5a408c /src/wasm-lexer.l | |
parent | acf0cc3288fc7f45ae1ae4f134ac37a812b4939a (diff) | |
download | wabt-a27b0c7b993b0eb9caf6dc7f9d0c7d95f177029c.tar.gz wabt-a27b0c7b993b0eb9caf6dc7f9d0c7d95f177029c.tar.bz2 wabt-a27b0c7b993b0eb9caf6dc7f9d0c7d95f177029c.zip |
remove page_size operation
Diffstat (limited to 'src/wasm-lexer.l')
-rw-r--r-- | src/wasm-lexer.l | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/wasm-lexer.l b/src/wasm-lexer.l index fbddf543..7267e0f7 100644 --- a/src/wasm-lexer.l +++ b/src/wasm-lexer.l @@ -339,7 +339,6 @@ NAME \${ATOM} "global" { return TOK(GLOBAL); } "load_global" { return TOK(LOAD_GLOBAL); } "store_global" { return TOK(STORE_GLOBAL); } -"page_size" { return TOK(PAGE_SIZE); } ";;" { BEGIN(LINE_COMMENT); } <LINE_COMMENT>\n { RESET_COLUMN(yyscanner); BEGIN(INITIAL); } |