radv: fix trap handler exception options

They are same values.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/33868>
This commit is contained in:
Samuel Pitoiset 2025-03-04 12:38:33 +01:00 committed by Marge Bot
parent df3f2df966
commit 9108c198bb

View file

@ -118,10 +118,10 @@ static const struct debug_control radv_perftest_options[] = {{"localbos", RADV_P
{NULL, 0}};
static const struct debug_control radv_trap_excp_options[] = {
{"mem_viol", RADV_PERFTEST_LOCAL_BOS},
{"float_div_by_zero", RADV_PERFTEST_DCC_MSAA},
{"float_overflow", RADV_PERFTEST_BO_LIST},
{"float_underflow", RADV_PERFTEST_CS_WAVE_32},
{"mem_viol", RADV_TRAP_EXCP_MEM_VIOL},
{"float_div_by_zero", RADV_TRAP_EXCP_FLOAT_DIV_BY_ZERO},
{"float_overflow", RADV_TRAP_EXCP_FLOAT_OVERFLOW},
{"float_underflow", RADV_TRAP_EXCP_FLOAT_UNDERFLOW},
{NULL, 0},
};