diff options
Diffstat (limited to 'passes/proc')
| -rw-r--r-- | passes/proc/proc_arst.cc | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/passes/proc/proc_arst.cc b/passes/proc/proc_arst.cc index d069f152a..c606deb88 100644 --- a/passes/proc/proc_arst.cc +++ b/passes/proc/proc_arst.cc @@ -55,7 +55,7 @@ bool check_signal(RTLIL::Module *mod, RTLIL::SigSpec signal, RTLIL::SigSpec ref,  			return check_signal(mod, cell->getPort("\\A"), ref, polarity);  		} -		if ((cell->type == "$eq" || cell->type == "$eqx") && cell->getPort("\\Y") == signal) { +		if (cell->type.in("$eq", "$eqx") && cell->getPort("\\Y") == signal) {  			if (cell->getPort("\\A").is_fully_const()) {  				if (!cell->getPort("\\A").as_bool())  					polarity = !polarity; @@ -68,7 +68,7 @@ bool check_signal(RTLIL::Module *mod, RTLIL::SigSpec signal, RTLIL::SigSpec ref,  			}  		} -		if ((cell->type == "$ne" || cell->type == "$nex") && cell->getPort("\\Y") == signal) { +		if (cell->type.in("$ne", "$nex") && cell->getPort("\\Y") == signal) {  			if (cell->getPort("\\A").is_fully_const()) {  				if (cell->getPort("\\A").as_bool())  					polarity = !polarity; | 
