diff options
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); } |