agx: fix bogus unit test

broken SSA.

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29179>
This commit is contained in:
Alyssa Rosenzweig
2024-05-13 21:44:20 -04:00
committed by Marge Bot
parent aad82f4265
commit 5b03e7bab3
+3 -1
View File
@@ -190,8 +190,10 @@ TEST_F(Optimizer, Copyprop)
TEST_F(Optimizer, InlineHazards)
{
NEGCASE32({
agx_index zero = agx_mov_imm(b, AGX_SIZE_32, 0);
agx_instr *I = agx_collect_to(b, out, 4);
I->src[0] = agx_mov_imm(b, AGX_SIZE_32, 0);
I->src[0] = zero;
I->src[1] = wy;
I->src[2] = wz;
I->src[3] = wz;