diff options
| author | gingerBill <bill@gingerbill.org> | 2021-10-22 14:12:48 +0100 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2021-10-22 14:12:48 +0100 |
| commit | ef73a284e3e438a25a4e329d59057cfa8cddf44c (patch) | |
| tree | 5b4e37bf64f4e8bc43b38a66ba46e103864f548a /src/parser.hpp | |
| parent | 28af376d103da1b7820032de0b6d8fc6ca9d6d3a (diff) | |
Fix check_remove_expr_info
Diffstat (limited to 'src/parser.hpp')
| -rw-r--r-- | src/parser.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp index f1779bdbc..8acc3f419 100644 --- a/src/parser.hpp +++ b/src/parser.hpp @@ -28,9 +28,9 @@ enum AddressingMode : u8 { }; struct TypeAndValue { + Type * type; AddressingMode mode; bool is_lhs; // Debug info - Type * type; ExactValue value; }; |