diff options
Diffstat (limited to 'source/opt/null_pass.h')
-rw-r--r-- | source/opt/null_pass.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/opt/null_pass.h b/source/opt/null_pass.h index 4685f66c..54ea06e3 100644 --- a/source/opt/null_pass.h +++ b/source/opt/null_pass.h @@ -25,7 +25,9 @@ namespace opt { class NullPass : public Pass { public: const char* name() const override { return "null"; } - Status Process(ir::IRContext*) override { return Status::SuccessWithoutChange; } + Status Process(ir::IRContext*) override { + return Status::SuccessWithoutChange; + } }; } // namespace opt |