[CodeGen] Fixed undeclared MISchedCutoff in case of NDEBUG and LLVM_ENABLE_ABI_BREAKING_CHECKS
This patch fixes the error llvm/lib/CodeGen/MachineScheduler.cpp(755): error C2065: 'MISchedCutoff': undeclared identifier in case of NDEBUG and LLVM_ENABLE_ABI_BREAKING_CHECKS. Note MISchedCutoff is declared under #ifndef NDEBUG. Reviewed By: RKSimon Differential Revision: https://reviews.llvm.org/D130425
This commit is contained in:
parent
7073ec530e
commit
adc387460d
|
@ -750,7 +750,7 @@ void ScheduleDAGMI::moveInstruction(
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ScheduleDAGMI::checkSchedLimit() {
|
bool ScheduleDAGMI::checkSchedLimit() {
|
||||||
#if LLVM_ENABLE_ABI_BREAKING_CHECKS
|
#if LLVM_ENABLE_ABI_BREAKING_CHECKS && !defined(NDEBUG)
|
||||||
if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
|
if (NumInstrsScheduled == MISchedCutoff && MISchedCutoff != ~0U) {
|
||||||
CurrentTop = CurrentBottom;
|
CurrentTop = CurrentBottom;
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in New Issue