Simplify procedure argument handling

This commit is contained in:
gingerBill
2023-07-22 11:16:29 +01:00
parent eec3b3009f
commit 6c12156b1a
8 changed files with 95 additions and 36 deletions
+1 -2
View File
@@ -83,7 +83,6 @@ typedef enum TB_ABI {
typedef enum TB_OutputFlavor {
TB_FLAVOR_OBJECT, // .o .obj
TB_FLAVOR_ASSEMBLY, // .s .asm
TB_FLAVOR_SHARED, // .so .dll
TB_FLAVOR_STATIC, // .a .lib
TB_FLAVOR_EXECUTABLE, // .exe
@@ -951,7 +950,7 @@ TB_API TB_Node* tb_inst_sint(TB_Function* f, TB_DataType dt, int64_t imm);
TB_API TB_Node* tb_inst_uint(TB_Function* f, TB_DataType dt, uint64_t imm);
TB_API TB_Node* tb_inst_float32(TB_Function* f, float imm);
TB_API TB_Node* tb_inst_float64(TB_Function* f, double imm);
TB_API TB_Node* tb_inst_cstring(TB_Function* f, const char* srt);
TB_API TB_Node* tb_inst_cstring(TB_Function* f, const char* str);
TB_API TB_Node* tb_inst_string(TB_Function* f, size_t len, const char* str);
// write 'val' over 'count' bytes on 'dst'
BIN
View File
Binary file not shown.