3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 18:05:24 +00:00

Fix struct name

This commit is contained in:
Eddie Hung 2019-12-30 16:21:20 -08:00
parent 7649ec72c9
commit dbffbeef5c

View file

@ -650,8 +650,8 @@ clone_lut:
log_pop();
}
struct Abc9TechmapPass : public Pass {
Abc9TechmapPass() : Pass("abc9_map", "use ABC9 for technology mapping") { }
struct Abc9MapPass : public Pass {
Abc9MapPass() : Pass("abc9_map", "use ABC9 for technology mapping") { }
void help() YS_OVERRIDE
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
@ -1017,6 +1017,6 @@ struct Abc9TechmapPass : public Pass {
log_pop();
}
} Abc9TechmapPass;
} Abc9MapPass;
PRIVATE_NAMESPACE_END