test/runtime/6626217/from_loader2.java

Mon, 28 Jul 2014 15:06:38 -0700

author
fzhinkin
date
Mon, 28 Jul 2014 15:06:38 -0700
changeset 6997
dbb05f6d93c4
parent 0
f90c822e73f8
permissions
-rw-r--r--

8051344: JVM crashed in Compile::start() during method parsing w/ UseRTMDeopt turned on
Summary: call rtm_deopt() only if there were no compilation bailouts before.
Reviewed-by: kvn

     1 // A simple class to extend an abstract class and get loaded with different
     2 // loaders.  This class is loaded via LOADER2.
     3 public class from_loader2 implements IFace {
     4   public many_loader[] gen() {
     5     many_loader[] x = new many_loader[1];
     6     x[0] = new many_loader();
     7     return x;
     8   }
     9 }

mercurial