Fix check_remove_expr_info

This commit is contained in:
gingerBill
2021-10-22 14:12:48 +01:00
parent 28af376d10
commit ef73a284e3
4 changed files with 33 additions and 22 deletions
+1 -1
View File
@@ -28,9 +28,9 @@ enum AddressingMode : u8 {
};
struct TypeAndValue {
Type * type;
AddressingMode mode;
bool is_lhs; // Debug info
Type * type;
ExactValue value;
};