mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-23 22:25:00 -07:00
Pointer arithmetic builtin procedures
This commit is contained in:
@@ -39,11 +39,13 @@ struct Entity {
|
||||
struct { ExactValue value; } Constant;
|
||||
struct {
|
||||
b8 visited; // Cycle detection
|
||||
b8 is_field; // Is struct field
|
||||
b8 used; // Variable is used
|
||||
b8 anonymous; // Variable is an anonymous struct field
|
||||
b8 is_field; // Is struct field
|
||||
b8 anonymous; // Variable is an anonymous
|
||||
} Variable;
|
||||
struct { b8 used; } Procedure;
|
||||
struct {
|
||||
b8 used;
|
||||
} Procedure;
|
||||
struct { BuiltinProcId id; } Builtin;
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user