3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 17:15:33 +00:00

Using std::vector<RTLIL::State> instead of RTLIL::Const for RTLIL::SigChunk::data

This commit is contained in:
Clifford Wolf 2014-09-01 11:36:02 +02:00
parent e3664066d5
commit e07698818d
4 changed files with 35 additions and 38 deletions

View file

@ -101,7 +101,7 @@ struct OptShareWorker
int_to_hash_string(chunk.offset) + " " +
int_to_hash_string(chunk.width) + "}";
else
hash_string += chunk.data.as_string();
hash_string += RTLIL::Const(chunk.data).as_string();
}
hash_string += "\n";
}