mirror of
https://github.com/YosysHQ/yosys.git
synced 2026-08-22 14:17:27 +02:00
Ensure signed constants are correctly parsed, represented, and exported in RTLIL. Add a test to check parsing and exporting
This commit is contained in:
committed by
Catherine
parent
4cddc19994
commit
91e3773b51
@@ -51,6 +51,9 @@ void RTLIL_BACKEND::dump_const(std::ostream &f, const RTLIL::Const &data, int wi
|
||||
}
|
||||
}
|
||||
f << stringf("%d'", width);
|
||||
if (data.flags & RTLIL::CONST_FLAG_SIGNED) {
|
||||
f << stringf("s");
|
||||
}
|
||||
if (data.is_fully_undef_x_only()) {
|
||||
f << "x";
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user