]> Nishi Git Mirror - gwion.git/commitdiff
:art: Remove implicit pos
authorfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 1 Oct 2019 22:35:51 +0000 (00:35 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Tue, 1 Oct 2019 22:35:51 +0000 (00:35 +0200)
include/operator.h
src/emit/emit.c
src/parse/check.c

index f401301d65a9ec1909d59a801e6bca631bc2b026..149a584ca2c10618f8c426fe1693b46bfbd95e6f 100644 (file)
@@ -19,8 +19,8 @@ struct Op_Import {
 struct Implicit {
   Exp e;
   Type  t;
-  loc_t pos;
 };
+
 ANN m_bool add_op(const Gwion gwion, const struct Op_Import*);
 ANN Type   op_check(const Env, struct Op_Import*);
 ANN struct Instr_* op_emit(const Emitter, const struct Op_Import*);
index 7f8aabf7074e67ae4a8599dab9b21c38a409ab53..90022be6c1b16b02822a20e14930d5894bafcd6d 100644 (file)
@@ -1102,7 +1102,7 @@ ANN static m_bool emit_exp_unary(const Emitter emit, const Exp_Unary* unary) {
 
 ANN static m_bool emit_implicit_cast(const Emitter emit,
     const restrict Exp  from, const restrict Type to) {
-  const struct Implicit imp = { from, to, from->pos };
+  const struct Implicit imp = { .e=from, .t=to };
   struct Op_Import opi = { .op=insert_symbol("@implicit"), .lhs=from->type, .rhs=to, .data=(m_uint)&imp };
   return op_emit_bool(emit, &opi);
 }
index eecbe7c220f01f01153585091e96b33f5491759a..11799a3d8eda08ce6bc325e8298061f15d32b636 100644 (file)
@@ -30,7 +30,7 @@ ANN m_bool check_class_def(const Env env, const Class_Def class_def);
 
 ANN static m_bool _check_implicit(const Env env, const m_str str,
       const Exp e, const Type t) {
-  struct Implicit imp = { .e=e, .t=t, .pos=e->pos };
+  struct Implicit imp = { .e=e, .t=t };
   struct Op_Import opi = { .op=insert_symbol(str), .lhs=e->type,
         .rhs=t, .data=(uintptr_t)&imp, .pos=e->pos };
   CHECK_OB(op_check(env, &opi))
@@ -40,7 +40,7 @@ ANN static m_bool _check_implicit(const Env env, const m_str str,
 
 ANN static m_bool check_internal(const Env env, const Symbol sym,
       const Exp e, const Type t) {
-  struct Implicit imp = { .e=e, .t=t, .pos=e->pos };
+  struct Implicit imp = { .e=e, .t=t };
   struct Op_Import opi = { .op=sym, .lhs=e->type,
         .rhs=t, .data=(uintptr_t)&imp, .pos=e->pos };
   CHECK_OB(op_check(env, &opi))