aboutsummaryrefslogtreecommitdiff
path: root/src/tilde
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-07-22 11:16:29 +0100
committergingerBill <bill@gingerbill.org>2023-07-22 11:16:29 +0100
commit6c12156b1a47cb3c39e5c12d443e482af2a218bb (patch)
treea77bd904cb900cae01925f48fab04c9ae0f8ba4a /src/tilde
parenteec3b3009f0005090ddd5a7901e5f3c38cf31ce1 (diff)
Simplify procedure argument handling
Diffstat (limited to 'src/tilde')
-rw-r--r--src/tilde/tb.h3
-rw-r--r--src/tilde/tb.libbin4162738 -> 4157412 bytes
2 files changed, 1 insertions, 2 deletions
diff --git a/src/tilde/tb.h b/src/tilde/tb.h
index 8e5bc5567..abe3c5a1a 100644
--- a/src/tilde/tb.h
+++ b/src/tilde/tb.h
@@ -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'
diff --git a/src/tilde/tb.lib b/src/tilde/tb.lib
index b9b9dbd44..a3c6ba044 100644
--- a/src/tilde/tb.lib
+++ b/src/tilde/tb.lib
Binary files differ