Correct check_transmute operand logic

This commit is contained in:
gingerBill
2022-05-23 12:19:33 +01:00
parent d9f293b281
commit 084f431aa5

View File

@@ -2844,8 +2844,10 @@ bool check_transmute(CheckerContext *c, Ast *node, Operand *o, Type *t) {
}
}
o->expr = node;
o->mode = Addressing_Value;
o->type = t;
o->value = {};
return true;
}