0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-04-02 23:41:28 +00:00

[qfcc] Limit final check to non-math types

All math types (of the same width) are assignable, though warnings might
be issued, thus the type_assignable check used for block structs was too
broad resulting in incorrect specialization of generics.
This commit is contained in:
Bill Currie 2025-02-17 14:19:59 +09:00
parent 3190daaf70
commit 71e6ff78c7

View file

@ -688,7 +688,7 @@ check_type (const type_t *type, callparm_t param, unsigned *cost, bool promote)
return true;
}
// allow any final checks
if (!type_assignable (type, param.type)) {
if (is_math (type) || !type_assignable (type, param.type)) {
return false;
}
}