diff options
Diffstat (limited to 'passes/cmds/scc.cc')
| -rw-r--r-- | passes/cmds/scc.cc | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/passes/cmds/scc.cc b/passes/cmds/scc.cc index 76363e051..99f4fbae8 100644 --- a/passes/cmds/scc.cc +++ b/passes/cmds/scc.cc @@ -218,7 +218,7 @@ struct SccWorker  struct SccPass : public Pass {  	SccPass() : Pass("scc", "detect strongly connected components (logic loops)") { } -	virtual void help() +	void help() YS_OVERRIDE  	{  		//   |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|  		log("\n"); @@ -255,7 +255,7 @@ struct SccPass : public Pass {  		log("        that are part of a found logic loop\n");  		log("\n");  	} -	virtual void execute(std::vector<std::string> args, RTLIL::Design *design) +	void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE  	{  		std::map<std::string, std::string> setAttr;  		bool allCellTypes = false;  | 
