mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 04:38:16 +00:00
enum Addressing_Mode : u8;
This commit is contained in:
+2
-2
@@ -9,15 +9,15 @@ struct Checker;
|
||||
struct CheckerInfo;
|
||||
struct CheckerContext;
|
||||
|
||||
enum AddressingMode;
|
||||
enum AddressingMode : u8;
|
||||
struct TypeAndValue;
|
||||
|
||||
// ExprInfo stores information used for "untyped" expressions
|
||||
struct ExprInfo {
|
||||
AddressingMode mode;
|
||||
bool is_lhs; // Debug info
|
||||
Type * type;
|
||||
ExactValue value;
|
||||
bool is_lhs; // Debug info
|
||||
};
|
||||
|
||||
gb_inline ExprInfo *make_expr_info(AddressingMode mode, Type *type, ExactValue const &value, bool is_lhs) {
|
||||
|
||||
Reference in New Issue
Block a user