--- old/test/testlibrary/jittester/src/jdk/test/lib/jittester/VariableInfo.java 2016-05-12 04:24:09.998334728 +0300 +++ new/test/testlibrary/jittester/src/jdk/test/lib/jittester/VariableInfo.java 2016-05-12 04:24:09.918334729 +0300 @@ -55,4 +55,8 @@ public Symbol deepCopy() { return new VariableInfo(this); } + + public boolean isLocal() { + return (flags & LOCAL) != 0; + } }