summaryrefslogtreecommitdiff
path: root/src/pass.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pass.h')
-rw-r--r--src/pass.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/pass.h b/src/pass.h
index b4db3e706..881fc4e00 100644
--- a/src/pass.h
+++ b/src/pass.h
@@ -263,22 +263,6 @@ public:
}
};
-// Standard passes. All passes in /passes/ are runnable from the shell,
-// but registering them here in addition allows them to communicate
-// e.g. through PassRunner::getLast
-
-// Prints out a module
-class Printer : public Pass {
-protected:
- std::ostream& o;
-
-public:
- Printer() : o(std::cout) {}
- Printer(std::ostream* o) : o(*o) {}
-
- void run(PassRunner* runner, Module* module) override;
-};
-
} // namespace wasm
#endif // wasm_pass_h