8248845: AArch64: stack corruption after spilling vector register

Reviewed-by: kvn
This commit is contained in:
Nick Gasson 2020-07-07 14:14:22 +08:00
parent ddcb17e1e0
commit 802737cae7

View File

@ -2021,8 +2021,8 @@ void PhaseOutput::ScheduleAndBundle() {
if (!C->do_scheduling())
return;
// Scheduling code works only with pairs (16 bytes) maximum.
if (C->max_vector_size() > 16)
// Scheduling code works only with pairs (8 bytes) maximum.
if (C->max_vector_size() > 8)
return;
Compile::TracePhase tp("isched", &timers[_t_instrSched]);