welrox
Results
1
issues of
welrox
In [sema_asm.c](https://github.com/c3lang/c3c/blob/master/src/compiler/sema_asm.c), we have the following: ```c bool sema_analyse_asm(SemaContext *context, AsmInlineBlock *block, Ast *asm_stmt) { ASSERT0(compiler.platform.asm_initialized); AsmInstruction *instr = asm_instr_by_name(asm_stmt->asm_stmt.instruction); if (!instr) RETURN_SEMA_ERROR(asm_stmt, "Unknown instruction"); // Check arguments Expr **args...
Discussion needed
Asm