diff options
Diffstat (limited to 'src/passes/CodePushing.cpp')
-rw-r--r-- | src/passes/CodePushing.cpp | 5 |
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>(); } |