diff options
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r-- | src/wasm2js.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/wasm2js.h b/src/wasm2js.h index 2d65879b1..79222d4ba 100644 --- a/src/wasm2js.h +++ b/src/wasm2js.h @@ -127,8 +127,6 @@ enum class NameScope { // class Wasm2JSBuilder { - MixedArena allocator; - public: struct Flags { // see wasm2js.cpp for details @@ -939,7 +937,6 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, Function* func; Module* module; bool standaloneFunction; - MixedArena allocator; SwitchProcessor switchProcessor; @@ -1095,7 +1092,7 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, // we need an equivalent to an if here, so use that code Break fakeBreak = *curr; fakeBreak.condition = nullptr; - If fakeIf(allocator); + If fakeIf; fakeIf.condition = curr->condition; fakeIf.ifTrue = &fakeBreak; return visit(&fakeIf, result); @@ -1476,7 +1473,7 @@ Ref Wasm2JSBuilder::processFunctionBody(Module* m, } case Type::f32: { Ref ret = ValueBuilder::makeCall(MATH_FROUND); - Const fake(allocator); + Const fake; fake.value = Literal(double(curr->value.getf32())); fake.type = Type::f64; ret[2]->push_back(visitConst(&fake)); |