Add -tilde for working on the new compiler

This commit is contained in:
gingerBill
2023-07-08 12:07:11 +01:00
parent d7af6de9b9
commit 7ab531bd21
3 changed files with 62 additions and 19 deletions
+18
View File
@@ -0,0 +1,18 @@
#if defined(GB_SYSTEM_WINDOWS)
#pragma warning(push)
#pragma warning(disable: 4200)
#pragma warning(disable: 4201)
#define restrict gb_restrict
#endif
#include "tilde/tb.h"
#if defined(GB_SYSTEM_WINDOWS)
#pragma warning(pop)
#endif
bool tb_generate_code(Checker *c) {
gb_printf_err("TODO(bill): implement Tilde Backend\n");
return false;
}