rtlil: Fix process memwr roundtrip.
authorMarcelina Kościelnicka <mwk@0x04.net>
Tue, 23 Mar 2021 16:39:06 +0000 (17:39 +0100)
committerMarcelina Kościelnicka <mwk@0x04.net>
Tue, 23 Mar 2021 18:49:47 +0000 (19:49 +0100)
Fixes #2646 fallout.

backends/rtlil/rtlil_backend.cc

index cfdf3efc5bf5d4d5a83e1090bc57abdf577d61e0..0846208ba4874241cdc25f91ec0e167e6da3c86e 100644 (file)
@@ -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");
        }
 }