aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/yosys.cc
diff options
context:
space:
mode:
authorAndrew Zonenberg <azonenberg@drawersteak.com>2016-04-01 00:03:00 -0700
committerAndrew Zonenberg <azonenberg@drawersteak.com>2016-04-01 00:03:00 -0700
commitf277267916b7b1c97fe90576abecde003cc231ab (patch)
tree3e76c4069a6f8fa37e0f53f927738ed2a8665589 /kernel/yosys.cc
parent736a998a75e12ca83b45b74a79e78fae8ab12d16 (diff)
parent25533190818b0fe207be9a4626a9a273a08ae219 (diff)
downloadyosys-f277267916b7b1c97fe90576abecde003cc231ab.tar.gz
yosys-f277267916b7b1c97fe90576abecde003cc231ab.tar.bz2
yosys-f277267916b7b1c97fe90576abecde003cc231ab.zip
Merge https://github.com/cliffordwolf/yosys
Diffstat (limited to 'kernel/yosys.cc')
-rw-r--r--kernel/yosys.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/yosys.cc b/kernel/yosys.cc
index 501d94224..8da57fd4e 100644
--- a/kernel/yosys.cc
+++ b/kernel/yosys.cc
@@ -1100,8 +1100,8 @@ struct HistoryPass : public Pass {
} HistoryPass;
#endif
-struct ScriptPass : public Pass {
- ScriptPass() : Pass("script", "execute commands from script file") { }
+struct ScriptCmdPass : public Pass {
+ ScriptCmdPass() : Pass("script", "execute commands from script file") { }
virtual void help() {
log("\n");
log(" script <filename> [<from_label>:<to_label>]\n");
@@ -1127,7 +1127,7 @@ struct ScriptPass : public Pass {
else
extra_args(args, 2, design, false);
}
-} ScriptPass;
+} ScriptCmdPass;
YOSYS_NAMESPACE_END