From: Jérémie Astor Date: Thu, 10 Sep 2020 21:11:45 +0000 (+0200) Subject: :art: Remove unseful check X-Git-Tag: nightly~1352 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=93319c0bddb54496374b97bd457223b3bb4584e9;p=gwion.git :art: Remove unseful check --- diff --git a/src/emit/emit.c b/src/emit/emit.c index 0329cd1d..f79bacdf 100644 --- a/src/emit/emit.c +++ b/src/emit/emit.c @@ -732,8 +732,6 @@ ANN static m_bool emit_decl(const Emitter emit, const Exp_Decl* decl) { CHECK_BB(emit_exp_decl_non_static(emit, decl, list->self, r, var)) else CHECK_BB(emit_exp_decl_global(emit, decl, list->self, r, var)) - if(GET_FLAG(list->self->value->type, nonnull)) - emit_add_instr(emit, GWOP_EXCEPT); } while((list = list->next)); return GW_OK; }