aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-12-30 22:56:19 -0800
committerEddie Hung <eddie@fpgeh.com>2019-12-30 22:56:19 -0800
commita367f703ea0633a4a6289415ae8a4545440ee705 (patch)
tree5fa95533292d6d56af8d22f48d1cf7c3d57bc5cb
parentfad99c2ec7bd4bceaf5a2c1c5e93f83c85b81720 (diff)
downloadyosys-a367f703ea0633a4a6289415ae8a4545440ee705.tar.gz
yosys-a367f703ea0633a4a6289415ae8a4545440ee705.tar.bz2
yosys-a367f703ea0633a4a6289415ae8a4545440ee705.zip
Rename struct
-rw-r--r--passes/techmap/abc9_ops.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/passes/techmap/abc9_ops.cc b/passes/techmap/abc9_ops.cc
index b52382972..271b76a39 100644
--- a/passes/techmap/abc9_ops.cc
+++ b/passes/techmap/abc9_ops.cc
@@ -418,8 +418,8 @@ void prep_holes(RTLIL::Module *module)
}
}
-struct Abc9PrepPass : public Pass {
- Abc9PrepPass() : Pass("abc9_ops", "helper functions for ABC9") { }
+struct Abc9OpsPass : public Pass {
+ Abc9OpsPass() : Pass("abc9_ops", "helper functions for ABC9") { }
void help() YS_OVERRIDE
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
@@ -481,6 +481,6 @@ struct Abc9PrepPass : public Pass {
prep_holes(mod);
}
}
-} Abc9PrepPass;
+} Abc9OpsPass;
PRIVATE_NAMESPACE_END