]> Nishi Git Mirror - gwion.git/commitdiff
:shirt: Some clean
authorfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 24 May 2019 08:07:11 +0000 (10:07 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Fri, 24 May 2019 08:07:11 +0000 (10:07 +0200)
ast
src/emit/emit.c

diff --git a/ast b/ast
index 8072d3e7711680521b71fee4f8a9d41363a9f1ce..66353d14748fdb971a9414370918edaf12cb0245 160000 (submodule)
--- a/ast
+++ b/ast
@@ -1 +1 @@
-Subproject commit 8072d3e7711680521b71fee4f8a9d41363a9f1ce
+Subproject commit 66353d14748fdb971a9414370918edaf12cb0245
index b1158112df51e482861b184a8dfad263e014f4c1..4b9b64e7f0e5f5cafd30f4aba8b583bebc3febc5 100644 (file)
@@ -765,7 +765,7 @@ ANN m_bool traverse_dot_tmpl(const Emitter emit, const struct dottmpl_ *dt) {
 static inline m_bool push_func_code(const Emitter emit, const Func f) {
   if(GET_FLAG(f, template) && f->value_ref->owner_class) {
     const Instr instr = (Instr)vector_back(&emit->code->instr);
-         assert(instr->opcode == eDotTmplVal);
+    assert(instr->opcode == eDotTmplVal);
     size_t len = strlen(f->name);
     size_t sz = len - strlen(f->value_ref->owner_class->name);
     char c[sz + 1];
@@ -1510,7 +1510,7 @@ ANN static inline Instr get_variadic(const Emitter emit) {
 }
 
 ANN static void emit_vararg_end(const Emitter emit, const m_uint offset) {
-  const Instr instr = emit_add_instr(emit, VarargEnd), 
+  const Instr instr = emit_add_instr(emit, VarargEnd),
     variadic = get_variadic(emit);
   instr->m_val = offset;
   instr->m_val2 = variadic->m_val2;