summaryrefslogtreecommitdiff
path: root/src/wasm-s-parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r--src/wasm-s-parser.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/wasm-s-parser.h b/src/wasm-s-parser.h
index c53e4dbed..390776a55 100644
--- a/src/wasm-s-parser.h
+++ b/src/wasm-s-parser.h
@@ -445,7 +445,6 @@ private:
const char *extra = strchr(s[0]->c_str(), '.') + 5; // after "type.load"
auto ret = allocator.alloc<Load>();
ret->type = type;
- ret->float_ = isWasmTypeFloat(type);
ret->bytes = getWasmTypeSize(type);
if (extra[0] == '8') {
ret->bytes = 1;
@@ -475,7 +474,6 @@ private:
const char *extra = strchr(s[0]->c_str(), '.') + 6; // after "type.store"
auto ret = allocator.alloc<Store>();
ret->type = type;
- ret->float_ = isWasmTypeFloat(type);
ret->bytes = getWasmTypeSize(type);
if (extra[0] == '8') {
ret->bytes = 1;