diff src/cpu/sparc/vm/macroAssembler_sparc.cpp @ 18018:7ef8ab2bf2b0

Merge
author asaha
date Tue, 17 Jun 2014 22:03:39 -0700
parents 0bf37f737702
children
line wrap: on
line diff
--- a/src/cpu/sparc/vm/macroAssembler_sparc.cpp	Tue Jun 17 15:49:31 2014 -0700
+++ b/src/cpu/sparc/vm/macroAssembler_sparc.cpp	Tue Jun 17 22:03:39 2014 -0700
@@ -3531,7 +3531,7 @@
   // was post-decremented.)  Skip this address by starting at i=1, and
   // touch a few more pages below.  N.B.  It is important to touch all
   // the way down to and including i=StackShadowPages.
-  for (int i = 1; i <= StackShadowPages; i++) {
+  for (int i = 1; i < StackShadowPages; i++) {
     set((-i*offset)+STACK_BIAS, Rscratch);
     st(G0, Rtsp, Rscratch);
   }