mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-31 03:40:08 +00:00
Simplify procedure argument handling
This commit is contained in:
+1
-2
@@ -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'
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user