From 8de339c0d811e45e941a89ccebe6ef4888db28fe Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Wed, 30 Oct 2024 12:22:22 -0400 Subject: [PATCH] agx: change int conversion test it's not useful as is but we can salvage Signed-off-by: Alyssa Rosenzweig Part-of: --- src/asahi/compiler/test/test-optimizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/asahi/compiler/test/test-optimizer.cpp b/src/asahi/compiler/test/test-optimizer.cpp index afe784850b2..5d3bf8a3f0c 100644 --- a/src/asahi/compiler/test/test-optimizer.cpp +++ b/src/asahi/compiler/test/test-optimizer.cpp @@ -305,7 +305,7 @@ TEST_F(Optimizer, IntCopypropDoesntConvert) NEGCASE32({ agx_index cvt = agx_temp(b->shader, AGX_SIZE_32); agx_mov_to(b, cvt, hx); - agx_xor_to(b, out, cvt, wy); + agx_fmul_to(b, out, cvt, wy); }); }