3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 17:44:09 +00:00

glift: Replace YS_OVERRIDE with override.

This commit is contained in:
Alberto Gonzalez 2020-06-19 19:57:09 +00:00
parent 8ec5929f97
commit 20ad371724
No known key found for this signature in database
GPG key ID: 8395A8BA109708B2

View file

@ -347,7 +347,7 @@ struct GliftPass : public Pass {
GliftPass() : Pass("glift", "create GLIFT models and optimization problems"), opt_create_precise_model(false), opt_create_imprecise_model(false), opt_create_instrumented_model(false), opt_taintconstants(false), opt_keepoutputs(false), opt_simplecostmodel(false), opt_nocostmodel(false), opt_instrumentmore(false), module(nullptr) { }
void help() YS_OVERRIDE
void help() override
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log("\n");
@ -433,7 +433,7 @@ struct GliftPass : public Pass {
log("\n");
}
void execute(std::vector<std::string> _args, RTLIL::Design *design) YS_OVERRIDE
void execute(std::vector<std::string> _args, RTLIL::Design *design) override
{
log_header(design, "Executing GLIFT pass (creating and manipulating GLIFT models).\n");