aco: rename is_cmp to is_fp_cmp

The old name is no longer accurate.

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Reviewed-by: Georg Lehmann <dadschoorse@gmail.com>
Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18077>
This commit is contained in:
Rhys Perry
2022-08-15 17:01:06 +01:00
committed by Marge Bot
parent e493aab3c3
commit f60cb8d0af
3 changed files with 4 additions and 4 deletions

View File

@@ -746,7 +746,7 @@ get_cmp_bitsize(aco_opcode op)
}
bool
is_cmp(aco_opcode op)
is_fp_cmp(aco_opcode op)
{
CmpInfo info;
return get_cmp_info(op, &info) && info.ordered != aco_opcode::num_opcodes;