diff options
| author | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-03-23 17:39:06 +0100 | 
|---|---|---|
| committer | Marcelina KoĆcielnicka <mwk@0x04.net> | 2021-03-23 19:49:47 +0100 | 
| commit | 192601385f0237f23c7f1611ea4ecaba8bfd9ce8 (patch) | |
| tree | 25144dc53d1ba99a3158c98367cf1d0bef1115cd /backends/rtlil | |
| parent | 049e3abf9baf795e69b9ecb9c4f19de6131f8418 (diff) | |
| download | yosys-192601385f0237f23c7f1611ea4ecaba8bfd9ce8.tar.gz yosys-192601385f0237f23c7f1611ea4ecaba8bfd9ce8.tar.bz2 yosys-192601385f0237f23c7f1611ea4ecaba8bfd9ce8.zip  | |
rtlil: Fix process memwr roundtrip.
Fixes #2646 fallout.
Diffstat (limited to 'backends/rtlil')
| -rw-r--r-- | backends/rtlil/rtlil_backend.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/rtlil/rtlil_backend.cc b/backends/rtlil/rtlil_backend.cc index cfdf3efc5..0846208ba 100644 --- a/backends/rtlil/rtlil_backend.cc +++ b/backends/rtlil/rtlil_backend.cc @@ -263,7 +263,7 @@ void RTLIL_BACKEND::dump_proc_sync(std::ostream &f, std::string indent, const RT  		f << stringf(" ");  		dump_sigspec(f, it.enable);  		f << stringf(" "); -		dump_sigspec(f, it.priority_mask); +		dump_const(f, it.priority_mask);  		f << stringf("\n");  	}  }  | 
