]> Nishi Git Mirror - gwion.git/commitdiff
:art: Clean indent
authorfennecdjay <fennecdjay@gmail.com>
Sun, 31 Jul 2022 12:31:04 +0000 (14:31 +0200)
committerfennecdjay <fennecdjay@gmail.com>
Sun, 31 Jul 2022 12:31:04 +0000 (14:31 +0200)
src/emit/emit.c

index 297e8978b8972f8b553f04e1514d4f38e7bc853f..a9a43016a613537454663dbc0a89d693914c45b9 100644 (file)
@@ -1433,11 +1433,11 @@ static INSTR(fptr_call) {
 static inline m_bool push_func_code(const Emitter emit, const Func f) {
   if (!vector_size(&emit->code->instr)) {
     if(fflag(f, fflag_tmpl)) {
-    // we are sporking a template
-    // assume static call for now
-    const Instr instr = emit_add_instr(emit, RegSetImm);
-    instr->m_val  = (m_uint)f->code;
-    instr->m_val2  = (m_uint)-SZ_INT;
+      // we are sporking a template
+      // assume static call for now
+      const Instr instr = emit_add_instr(emit, RegSetImm);
+      instr->m_val  = (m_uint)f->code;
+      instr->m_val2  = (m_uint)-SZ_INT;
     }
     return GW_OK;
   }