Skip to content
3 changes: 2 additions & 1 deletion llvm/lib/Target/AMDGPU/GCNHazardRecognizer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,8 @@ void GCNHazardRecognizer::AdvanceCycle() {
}

void GCNHazardRecognizer::RecedeCycle() {
llvm_unreachable("hazard recognizer does not support bottom-up scheduling.");
assert(!IsHazardRecognizerMode &&
"Bottom-up scheduling shouldn't run in hazard recognizer mode");
}

//===----------------------------------------------------------------------===//
Expand Down
Loading
Loading