summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/cfg/Relooper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cfg/Relooper.h b/src/cfg/Relooper.h
index efe6a3c8f..706b3d065 100644
--- a/src/cfg/Relooper.h
+++ b/src/cfg/Relooper.h
@@ -347,7 +347,7 @@ struct Relooper {
wasm::Expression* Render(RelooperBuilder& Builder);
// Sets whether we must emulate everything with switch-loop code
- void SetEmulate(int E) { Emulate = E; }
+ void SetEmulate(int E) { Emulate = !!E; }
// Sets us to try to minimize size
void SetMinSize(bool MinSize_) { MinSize = MinSize_; }