diff options
Diffstat (limited to 'src/wasm/wasm.cpp')
-rw-r--r-- | src/wasm/wasm.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/wasm/wasm.cpp b/src/wasm/wasm.cpp index 9bc0f6e0b..82ddd553f 100644 --- a/src/wasm/wasm.cpp +++ b/src/wasm/wasm.cpp @@ -789,15 +789,11 @@ void Drop::finalize() { } } -void MemorySize::make64() { type = ptrType = Type::i64; } -void MemorySize::finalize() { type = ptrType; } +void MemorySize::finalize() {} -void MemoryGrow::make64() { type = ptrType = Type::i64; } void MemoryGrow::finalize() { if (delta->type == Type::unreachable) { type = Type::unreachable; - } else { - type = ptrType; } } |