changeset 60103:d5be95758352

8248845: AArch64: stack corruption after spilling vector register Reviewed-by: kvn
author ngasson
date Tue, 07 Jul 2020 14:14:22 +0800
parents 0872f5f328e5
children 23cf1cd3ef30
files src/hotspot/share/opto/output.cpp
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/hotspot/share/opto/output.cpp	Tue Jul 07 22:47:59 2020 +0000
+++ b/src/hotspot/share/opto/output.cpp	Tue Jul 07 14:14:22 2020 +0800
@@ -2021,8 +2021,8 @@
   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]);