]> Nishi Git Mirror - gwion.git/commitdiff
:shirt: Compiler warnings
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 31 Aug 2019 20:44:23 +0000 (22:44 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 31 Aug 2019 20:44:23 +0000 (22:44 +0200)
src/emit/emit.c
src/parse/scan2.c

index 2ccbb32c23d77e19cebe41500329317aa05e4605..7732c8578be7d6541c81a0968375b9ef018e1a46 100644 (file)
@@ -398,15 +398,6 @@ ANN static m_bool prim_array(const Emitter emit, const Exp_Primary * primary) {
   return GW_OK;
 }
 
-//! emit only one index at the time
-ANN static inline m_bool emit_index(const Emitter emit, const Exp e) {
-  const Exp next = e->next;
-  e->next = NULL;
-  const m_bool ret = emit_exp(emit, e, 0);
-  e->next = next;
-  return ret;
-}
-
 ANN static void array_loop(const Emitter emit, const m_uint depth) {
   regpop(emit, depth * SZ_INT);
   emit_add_instr(emit, GWOP_EXCEPT);
index a7cad391d61087d65b6233464497db76b25edf2b..37bc6ff5fcbde4dc270112328ddedfd3e1efd33d 100644 (file)
@@ -20,7 +20,6 @@ ANN static m_bool scan2_stmt_list(const Env, Stmt_List);
 ANN m_bool scan2_exp_decl(const Env env, const Exp_Decl* decl) {
   const m_bool global = GET_FLAG(decl->td, global);
   const m_uint scope = !global ? env->scope->depth : env_push_global(env);
-  const Type type = decl->type;
 {
   const Type t = get_type(decl->type);
   if(GET_FLAG(t, template) && !GET_FLAG(t, scan2))