mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-17 18:06:41 +00:00
Reduce amount of trailing whitespace in code base
This commit is contained in:
parent
68a6937173
commit
e2fc18f27b
9 changed files with 29 additions and 29 deletions
|
@ -52,13 +52,13 @@ struct AnlogicEqnPass : public Pass {
|
|||
eqn += names[j];
|
||||
else
|
||||
eqn += std::string("~") + names[j];
|
||||
|
||||
|
||||
if (j!=(inputs-1)) eqn += "*";
|
||||
}
|
||||
eqn += ")+";
|
||||
}
|
||||
}
|
||||
if (eqn.empty()) return Const("0");
|
||||
if (eqn.empty()) return Const("0");
|
||||
eqn = eqn.substr(0, eqn.length()-1);
|
||||
return Const(eqn);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue