--- old/test/testlibrary/jittester/src/jdk/test/lib/jittester/CastOperator.java 2016-05-12 04:23:59.298334814 +0300 +++ new/test/testlibrary/jittester/src/jdk/test/lib/jittester/CastOperator.java 2016-05-12 04:23:59.210334815 +0300 @@ -1,5 +1,5 @@ /* - * Copyright (c) 2005, 2015, Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 2005, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it @@ -26,11 +26,9 @@ import jdk.test.lib.jittester.visitors.Visitor; public class CastOperator extends Operator { - private final Type resultType; public CastOperator(Type resultType, IRNode casted) { - super(13); - this.resultType = resultType; + super(null, 13, resultType); addChild(casted); } @@ -43,8 +41,4 @@ public T accept(Visitor v) { return v.visit(this); } - - public Type getResultType() { - return resultType; - } }