From: Clifford Wolf Date: Tue, 14 Feb 2017 10:57:54 +0000 (+0100) Subject: Fix double-call of log_pop() in synth_greenpak4 X-Git-Tag: yosys-0.8~492 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2a311c2c386ce173dca8c5e6e883a8f4f2d9ef00;p=yosys.git Fix double-call of log_pop() in synth_greenpak4 --- diff --git a/techlibs/greenpak4/synth_greenpak4.cc b/techlibs/greenpak4/synth_greenpak4.cc index be12ab495..92bcc8de7 100644 --- a/techlibs/greenpak4/synth_greenpak4.cc +++ b/techlibs/greenpak4/synth_greenpak4.cc @@ -204,8 +204,6 @@ struct SynthGreenPAK4Pass : public ScriptPass if (!json_file.empty() || help_mode) run(stringf("write_json %s", help_mode ? "" : json_file.c_str())); } - - log_pop(); } } SynthGreenPAK4Pass;