intel/fs: fixup a64 messages
And run algebraic when either int64 for float64 are not supported so those don't end up in the generated code. Cc: mesa-stable Signed-off-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Reviewed-by: Ivan Briano <ivan.briano@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/17396>
This commit is contained in:
committed by
Marge Bot
parent
838bbdcf2e
commit
139e8f4635
@@ -6011,7 +6011,7 @@ fs_visitor::optimize()
|
||||
OPT(split_virtual_grfs);
|
||||
|
||||
/* Lower 64 bit MOVs generated by payload lowering. */
|
||||
if (!devinfo->has_64bit_float && !devinfo->has_64bit_int)
|
||||
if (!devinfo->has_64bit_float || !devinfo->has_64bit_int)
|
||||
OPT(opt_algebraic);
|
||||
|
||||
OPT(register_coalesce);
|
||||
|
||||
Reference in New Issue
Block a user