diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-11-03 21:18:56 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-11-03 21:18:56 -0800 |
commit | a0de6e95733602f7f246bb537af79e87c4a6070a (patch) | |
tree | 91c0882c1ff91dc8e028904197a4a36ec10274cd /src/wasm-s-parser.h | |
parent | 48d593f3ba3505a60a6f37bc244998b8562e6137 (diff) | |
download | binaryen-a0de6e95733602f7f246bb537af79e87c4a6070a.tar.gz binaryen-a0de6e95733602f7f246bb537af79e87c4a6070a.tar.bz2 binaryen-a0de6e95733602f7f246bb537af79e87c4a6070a.zip |
factor out float_
Diffstat (limited to 'src/wasm-s-parser.h')
-rw-r--r-- | src/wasm-s-parser.h | 2 |
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; |