aboutsummaryrefslogtreecommitdiff
path: root/src/parser.hpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-10-23 19:24:47 +0100
committergingerBill <bill@gingerbill.org>2021-10-23 19:24:47 +0100
commitb4df51e4834cda2d37a353717133663e9e1393c3 (patch)
treed98a3621bed8e2079c9f9d5794d3fd24bd9269b3 /src/parser.hpp
parent209684d5a4843fd52a248acd361b9791a96e6205 (diff)
parent06f47621442973a664b5928bb20295f4b7b56196 (diff)
Merge branch 'master' into new-matrix-type
Diffstat (limited to 'src/parser.hpp')
-rw-r--r--src/parser.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.hpp b/src/parser.hpp
index b58047dfd..418d035c4 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;
};