3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 09:55:20 +00:00

Update comment

This commit is contained in:
Scott Thibault 2022-02-01 20:30:31 -05:00 committed by Marcelina Kościelnicka
parent e04ac4e9e9
commit 0a6e2bd5d5

View file

@ -28,7 +28,7 @@ code sigA sigB sigH
for (i = GetSize(sig)-1; i > 0; i--)
if (sig[i] != sig[i-1])
break;
// Do not remove non-const sign bit
// Do not remove sign bit
++i;
return sig.extract(0, i);
};