3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-12-24 21:16:51 +00:00

Merge pull request #5526 from YosysHQ/emil/fix-cellaigs-function-arg-eval-order

cellaigs: fix function argument evaluation order
This commit is contained in:
Emil J 2025-12-12 10:00:09 +01:00 committed by GitHub
commit f003eca615
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
45 changed files with 820 additions and 19 deletions

View file

@ -58,3 +58,13 @@ for y in *.ys; do
echo "Running $y."
../../yosys -ql ${y%.*}.log $y
done
# compare aigmap with reference
# make gold with: rm gold/*; yosys --no-version -p "test_cell -aigmap -w gold/ -n 1 -s 1 all"
rm -rf gate; mkdir gate
../../yosys --no-version -p "test_cell -aigmap -w gate/ -n 1 -s 1 all"
(
set -o pipefail
diff --brief gold gate | tee aigmap.err
)
rm aigmap.err