nak: Handle OpFRnd in is_fp64()

Fixes: b27fc463da ("nak: Record and set DOES_FP64 in the SPH")
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34622>
This commit is contained in:
Faith Ekstrand
2025-04-20 09:15:44 -05:00
parent 4a51089f30
commit a2caf95c50
+3
View File
@@ -6676,6 +6676,9 @@ impl Op {
Op::F2F(op) => op.src_type.bits() == 64 || op.dst_type.bits() == 64,
Op::F2I(op) => op.src_type.bits() == 64 || op.dst_type.bits() == 64,
Op::I2F(op) => op.src_type.bits() == 64 || op.dst_type.bits() == 64,
Op::FRnd(op) => {
op.src_type.bits() == 64 || op.dst_type.bits() == 64
}
_ => false,
}
}