diff --git a/src/intel/compiler/brw/brw_builder.h b/src/intel/compiler/brw/brw_builder.h index 13540785288..a3d2b945421 100644 --- a/src/intel/compiler/brw/brw_builder.h +++ b/src/intel/compiler/brw/brw_builder.h @@ -589,7 +589,6 @@ public: ALU1(FBL) ALU1(FRC) ALU3(DP4A) - ALU2(LINE) ALU1(LZD) ALU2(MAC) ALU2_ACC(MACH) diff --git a/src/intel/compiler/brw/brw_generator.cpp b/src/intel/compiler/brw/brw_generator.cpp index 04041a9518c..35c13f9386f 100644 --- a/src/intel/compiler/brw/brw_generator.cpp +++ b/src/intel/compiler/brw/brw_generator.cpp @@ -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();