< prev index next >

test/testlibrary/jittester/src/jdk/test/lib/jittester/Throw.java

Print this page

        

@@ -25,10 +25,11 @@
 
 import jdk.test.lib.jittester.visitors.Visitor;
 
 public class Throw extends IRNode {
     public Throw(IRNode throwable) {
+        super(throwable.getResultType());
         addChild(throwable);
     }
 
     @Override
     public long complexity() {
< prev index next >