abc9: suppress warnings when no compatible + used flop boxes formed
[yosys.git] / tests / various / plugin.cc
1 #include "kernel/rtlil.h"
2
3 YOSYS_NAMESPACE_BEGIN
4
5 struct TestPass : public Pass {
6 TestPass() : Pass("test", "test") { }
7 void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE
8 {
9 size_t argidx = 1;
10 extra_args(args, argidx, design);
11 log("Plugin test passed!\n");
12 }
13 } TestPass;
14
15 YOSYS_NAMESPACE_END