diff options
Diffstat (limited to 'src/intel/compiler/brw_schedule_instructions.cpp')
-rw-r--r-- | src/intel/compiler/brw_schedule_instructions.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/compiler/brw_schedule_instructions.cpp b/src/intel/compiler/brw_schedule_instructions.cpp index 4fed1492ff7..b07f941e004 100644 --- a/src/intel/compiler/brw_schedule_instructions.cpp +++ b/src/intel/compiler/brw_schedule_instructions.cpp @@ -1019,7 +1019,7 @@ instruction_scheduler::add_dep(schedule_node *before, schedule_node *after) static bool is_scheduling_barrier(const backend_instruction *inst) { - return inst->opcode == FS_OPCODE_PLACEHOLDER_HALT || + return inst->opcode == FS_OPCODE_DISCARD_LANDING_PAD || inst->is_control_flow() || inst->has_side_effects(); } |