summaryrefslogtreecommitdiff
path: root/src/pass.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pass.h')
-rw-r--r--src/pass.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/pass.h b/src/pass.h
index 5ff650a77..41ef30b90 100644
--- a/src/pass.h
+++ b/src/pass.h
@@ -166,15 +166,6 @@ public:
void run(PassRunner* runner, Module* module) override;
};
-// Prints out a minified module
-class MinifiedPrinter : public Printer {
-public:
- MinifiedPrinter() : Printer() {}
- MinifiedPrinter(std::ostream& o) : Printer(o) {}
-
- void run(PassRunner* runner, Module* module) override;
-};
-
} // namespace wasm
#endif // wasm_pass_h