hotspot/test/compiler/jvmci/compilerToVM/ConstantPoolTestCase.java
changeset 43939 39f5b59549de
parent 41705 332239c052cc
equal deleted inserted replaced
43937:def72508767d 43939:39f5b59549de
   200         public final String klass;
   200         public final String klass;
   201         public final String name;
   201         public final String name;
   202         public final String type;
   202         public final String type;
   203         public final ResolvedJavaMethod[] methods;
   203         public final ResolvedJavaMethod[] methods;
   204         public final byte[] opcodes;
   204         public final byte[] opcodes;
   205         public final long accFlags;
   205         public final int accFlags;
   206 
   206 
   207         public TestedCPEntry(String klass, String name, String type, byte[] opcodes, long accFlags) {
   207         public TestedCPEntry(String klass, String name, String type, byte[] opcodes, int accFlags) {
   208                 this(klass, name, type, null, opcodes, accFlags);
   208                 this(klass, name, type, null, opcodes, accFlags);
   209         }
   209         }
   210 
   210 
   211         public TestedCPEntry(String klass, String name, String type, ResolvedJavaMethod[] methods, byte[] opcodes, long accFlags) {
   211         public TestedCPEntry(String klass, String name, String type, ResolvedJavaMethod[] methods, byte[] opcodes, int accFlags) {
   212             this.klass = klass;
   212             this.klass = klass;
   213             this.name = name;
   213             this.name = name;
   214             this.type = type;
   214             this.type = type;
   215             if (methods != null) {
   215             if (methods != null) {
   216                 this.methods = new ResolvedJavaMethod[methods.length];
   216                 this.methods = new ResolvedJavaMethod[methods.length];