summaryrefslogtreecommitdiff
path: root/src/wasm2js.h
diff options
context:
space:
mode:
authorThomas Lively <7121787+tlively@users.noreply.github.com>2020-09-22 12:37:54 -0700
committerGitHub <noreply@github.com>2020-09-22 12:37:54 -0700
commitb867a54c92e36b5a53bb1c2d97c043bb6173a3af (patch)
treee2f4e21a1d223963538c4aaf930775bc9e7c351f /src/wasm2js.h
parente5bf7680a0616f994a9c5c266df9ba76f21e93e9 (diff)
downloadbinaryen-b867a54c92e36b5a53bb1c2d97c043bb6173a3af.tar.gz
binaryen-b867a54c92e36b5a53bb1c2d97c043bb6173a3af.tar.bz2
binaryen-b867a54c92e36b5a53bb1c2d97c043bb6173a3af.zip
Fix build after semantic merge conflict (#3160)
Removes even more uses of allocators.
Diffstat (limited to 'src/wasm2js.h')
-rw-r--r--src/wasm2js.h7
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));