brw: Remove LINE from brw_builder and brw_generator

Gfx9 only instruction that is not used anymore.

Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38877>
This commit is contained in:
Caio Oliveira
2025-12-02 12:36:44 -08:00
committed by Marge Bot
parent cd3e3dd0d3
commit 75cf20f0eb
2 changed files with 0 additions and 5 deletions
-1
View File
@@ -589,7 +589,6 @@ public:
ALU1(FBL)
ALU1(FRC)
ALU3(DP4A)
ALU2(LINE)
ALU1(LZD)
ALU2(MAC)
ALU2_ACC(MACH)
-4
View File
@@ -940,10 +940,6 @@ brw_generator::generate_code(const brw_shader &s,
brw_SRND(p, dst, src[0], src[1]);
break;
case BRW_OPCODE_LINE:
brw_LINE(p, dst, src[0], src[1]);
break;
case BRW_OPCODE_DPAS: {
assert(devinfo->verx10 >= 125);
const brw_dpas_inst *dpas = inst->as_dpas();