mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 07:08:48 +00:00
Fixes #4395 by not assuming simd returns val
This commit is contained in:
@@ -2060,8 +2060,8 @@ gb_internal bool check_builtin_procedure(CheckerContext *c, Operand *operand, As
|
|||||||
bool ok = check_builtin_simd_operation(c, operand, call, id, type_hint);
|
bool ok = check_builtin_simd_operation(c, operand, call, id, type_hint);
|
||||||
if (!ok) {
|
if (!ok) {
|
||||||
operand->type = t_invalid;
|
operand->type = t_invalid;
|
||||||
|
operand->mode = Addressing_Value;
|
||||||
}
|
}
|
||||||
operand->mode = Addressing_Value;
|
|
||||||
operand->value = {};
|
operand->value = {};
|
||||||
operand->expr = call;
|
operand->expr = call;
|
||||||
return ok;
|
return ok;
|
||||||
|
|||||||
Reference in New Issue
Block a user