src/cpu/sparc/vm/macroAssembler_sparc.cpp

changeset 6723
0bf37f737702
parent 6072
be525e91f65b
child 6876
710a3c8b516e
child 8645
a9bd2ebd8bcc
     1.1 --- a/src/cpu/sparc/vm/macroAssembler_sparc.cpp	Mon Jun 09 15:42:31 2014 -0700
     1.2 +++ b/src/cpu/sparc/vm/macroAssembler_sparc.cpp	Tue Apr 01 09:36:49 2014 +0200
     1.3 @@ -3531,7 +3531,7 @@
     1.4    // was post-decremented.)  Skip this address by starting at i=1, and
     1.5    // touch a few more pages below.  N.B.  It is important to touch all
     1.6    // the way down to and including i=StackShadowPages.
     1.7 -  for (int i = 1; i <= StackShadowPages; i++) {
     1.8 +  for (int i = 1; i < StackShadowPages; i++) {
     1.9      set((-i*offset)+STACK_BIAS, Rscratch);
    1.10      st(G0, Rtsp, Rscratch);
    1.11    }

mercurial