summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/passes/CodePushing.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/passes/CodePushing.cpp b/src/passes/CodePushing.cpp
index 2b45dda16..65eedba6b 100644
--- a/src/passes/CodePushing.cpp
+++ b/src/passes/CodePushing.cpp
@@ -455,11 +455,6 @@ private:
struct CodePushing : public WalkerPass<PostWalker<CodePushing>> {
bool isFunctionParallel() override { return true; }
- // This pass moves code forward in blocks, but a local.set would not be moved
- // after a local.get with the same index (effects prevent breaking things that
- // way), so validation will be preserved.
- bool requiresNonNullableLocalFixups() override { return false; }
-
std::unique_ptr<Pass> create() override {
return std::make_unique<CodePushing>();
}