From: Clifford Wolf Date: Wed, 16 Sep 2015 07:39:31 +0000 (+0200) Subject: Fixed copy&paste typo in synth_greenpak4 X-Git-Tag: yosys-0.6~164 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d9cecabb877b1d58efc1bfcd962201eace67640d;p=yosys.git Fixed copy&paste typo in synth_greenpak4 --- diff --git a/techlibs/greenpak4/synth_greenpak4.cc b/techlibs/greenpak4/synth_greenpak4.cc index ce1b7604a..4de08eb82 100644 --- a/techlibs/greenpak4/synth_greenpak4.cc +++ b/techlibs/greenpak4/synth_greenpak4.cc @@ -34,8 +34,8 @@ bool check_label(bool &active, std::string run_from, std::string run_to, std::st return active; } -struct SynthIce40Pass : public Pass { - SynthIce40Pass() : Pass("synth_greenpak4", "synthesis for GreenPAK4 FPGAs") { } +struct SynthGreenPAK4Pass : public Pass { + SynthGreenPAK4Pass() : Pass("synth_greenpak4", "synthesis for GreenPAK4 FPGAs") { } virtual void help() { // |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---| @@ -224,6 +224,6 @@ struct SynthIce40Pass : public Pass { log_pop(); } -} SynthIce40Pass; +} SynthGreenPAK4Pass; PRIVATE_NAMESPACE_END