From 2ce6dcf043a47f56b22607a53766094c94abe5f0 Mon Sep 17 00:00:00 2001 From: Caio Oliveira Date: Tue, 2 Jul 2024 19:28:30 -0700 Subject: [PATCH] intel/brw: Remove unused variable from test This would cause warning (and error in GitLab CI) after later changes to fs_reg/brw_reg. Part-of: --- src/intel/compiler/test_fs_cmod_propagation.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/intel/compiler/test_fs_cmod_propagation.cpp b/src/intel/compiler/test_fs_cmod_propagation.cpp index 481219540ff..504fac0925c 100644 --- a/src/intel/compiler/test_fs_cmod_propagation.cpp +++ b/src/intel/compiler/test_fs_cmod_propagation.cpp @@ -840,7 +840,6 @@ TEST_F(cmod_propagation_test, cmp_cmpg_D) fs_reg dst0 = bld.vgrf(BRW_TYPE_D); fs_reg src0 = bld.vgrf(BRW_TYPE_D); fs_reg zero(brw_imm_d(0)); - fs_reg one(brw_imm_d(1)); bld.CMP(dst0, src0, zero, BRW_CONDITIONAL_NZ); bld.CMP(bld.null_reg_d(), dst0, zero, BRW_CONDITIONAL_G);