mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-18 12:30:28 +00:00
Very start of working on Tilde Backend for Odin
This commit is contained in:
@@ -2,8 +2,6 @@ struct Scope;
|
||||
struct Checker;
|
||||
struct Type;
|
||||
struct DeclInfo;
|
||||
struct lbModule;
|
||||
struct lbProcedure;
|
||||
|
||||
|
||||
#define ENTITY_KINDS \
|
||||
@@ -183,8 +181,14 @@ struct Entity {
|
||||
|
||||
Entity * aliased_of;
|
||||
|
||||
lbModule * code_gen_module;
|
||||
lbProcedure *code_gen_procedure;
|
||||
union {
|
||||
struct lbModule *code_gen_module;
|
||||
struct cgModule *cg_module;
|
||||
};
|
||||
union {
|
||||
struct lbProcedure *code_gen_procedure;
|
||||
struct cgProcedure *cg_procedure;
|
||||
};
|
||||
|
||||
u64 order_in_src;
|
||||
String deprecated_message;
|
||||
|
||||
Reference in New Issue
Block a user