aboutsummaryrefslogtreecommitdiffstats
path: root/passes/tests
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2015-06-10 07:24:26 +0200
committerClifford Wolf <clifford@clifford.at>2015-06-10 07:24:26 +0200
commit56d48227195139f9b85c9f868a192c116266dac4 (patch)
tree2f0b3bf67ccc8c88c2dea065669901ba1898b1e6 /passes/tests
parent85287295b27dc3d51d2958dccb4f9098984b794a (diff)
downloadyosys-56d48227195139f9b85c9f868a192c116266dac4.tar.gz
yosys-56d48227195139f9b85c9f868a192c116266dac4.tar.bz2
yosys-56d48227195139f9b85c9f868a192c116266dac4.zip
Renamed "aig" to "aigmap"
Diffstat (limited to 'passes/tests')
-rw-r--r--passes/tests/test_cell.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/passes/tests/test_cell.cc b/passes/tests/test_cell.cc
index 9a7934f55..bd3749b71 100644
--- a/passes/tests/test_cell.cc
+++ b/passes/tests/test_cell.cc
@@ -536,8 +536,8 @@ struct TestCellPass : public Pass {
log(" -simlib\n");
log(" use \"techmap -map +/simlib.v -max_iter 2 -autoproc\"\n");
log("\n");
- log(" -aig\n");
- log(" instead of calling \"techmap\", call \"aig\"\n");
+ log(" -aigmap\n");
+ log(" instead of calling \"techmap\", call \"aigmap\"\n");
log("\n");
log(" -muxdiv\n");
log(" when creating test benches with dividers, create an additional mux\n");
@@ -603,8 +603,8 @@ struct TestCellPass : public Pass {
techmap_cmd = "techmap -map +/simlib.v -max_iter 2 -autoproc";
continue;
}
- if (args[argidx] == "-aig") {
- techmap_cmd = "aig";
+ if (args[argidx] == "-aigmap") {
+ techmap_cmd = "aigmap";
continue;
}
if (args[argidx] == "-muxdiv") {