mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-20 00:49:44 +00:00
Bump gcc and clang versions
This commit is contained in:
parent
6d4e5f5ad0
commit
70b17181b4
2 changed files with 7 additions and 5 deletions
|
|
@ -804,8 +804,10 @@ std::string Fmt::render() const
|
|||
buf += 'X';
|
||||
else if (has_z)
|
||||
buf += 'Z';
|
||||
else
|
||||
buf += (part.hex_upper ? "0123456789ABCDEF" : "0123456789abcdef")[subvalue.as_int()];
|
||||
else {
|
||||
const char *digits = part.hex_upper ? "0123456789ABCDEF" : "0123456789abcdef";
|
||||
buf += digits[subvalue.as_int()];
|
||||
}
|
||||
}
|
||||
} else if (part.base == 10) {
|
||||
if (part.show_base)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue