3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

remove extra space in formating

This commit is contained in:
Kamyar Mohajerani 2022-09-13 17:14:56 -04:00 committed by Lofty
parent bc1e579483
commit 69787f1906

View file

@ -289,14 +289,14 @@ struct statdata_t
if (tech == "xilinx")
{
log(",\n");
log(" \"estimated_num_lc\": %10u", estimate_xilinx_lc());
log(" \"estimated_num_lc\": %u", estimate_xilinx_lc());
}
if (tech == "cmos")
{
bool tran_cnt_exact = true;
unsigned int tran_cnt = cmos_transistor_count(&tran_cnt_exact);
log(",\n");
log(" \"estimated_num_transistors\": \"%10u%s\"", tran_cnt, tran_cnt_exact ? "" : "+");
log(" \"estimated_num_transistors\": \"%u%s\"", tran_cnt, tran_cnt_exact ? "" : "+");
}
log("\n");
log(" }");