mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-29 12:49:03 +00:00
Renamed SIZE() to GetSize() because of name collision on Win32
This commit is contained in:
parent
c7f5aab625
commit
4569a747f8
48 changed files with 447 additions and 447 deletions
|
@ -336,9 +336,9 @@ struct TestAutotbBackend : public Backend {
|
|||
log_header("Executing TEST_AUTOTB backend (auto-generate pseudo-random test benches).\n");
|
||||
|
||||
int argidx;
|
||||
for (argidx = 1; argidx < SIZE(args); argidx++)
|
||||
for (argidx = 1; argidx < GetSize(args); argidx++)
|
||||
{
|
||||
if (args[argidx] == "-n" && argidx+1 < SIZE(args)) {
|
||||
if (args[argidx] == "-n" && argidx+1 < GetSize(args)) {
|
||||
num_iter = atoi(args[++argidx].c_str());
|
||||
continue;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue