mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8213480: update internal ASM version to 7.0
Reviewed-by: dholmes, iignatyev, alanb
This commit is contained in:
parent
147fc3ed13
commit
61082e6b25
155 changed files with 29496 additions and 27123 deletions
|
@ -1433,7 +1433,7 @@ public final class Module implements AnnotatedElement {
|
|||
ClassWriter cw = new ClassWriter(ClassWriter.COMPUTE_MAXS
|
||||
+ ClassWriter.COMPUTE_FRAMES);
|
||||
|
||||
ClassVisitor cv = new ClassVisitor(Opcodes.ASM6, cw) {
|
||||
ClassVisitor cv = new ClassVisitor(Opcodes.ASM7, cw) {
|
||||
@Override
|
||||
public void visit(int version,
|
||||
int access,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2012, 2015, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2012, 2018, 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
|
||||
|
@ -35,7 +35,7 @@ import static sun.invoke.util.Wrapper.*;
|
|||
class TypeConvertingMethodAdapter extends MethodVisitor {
|
||||
|
||||
TypeConvertingMethodAdapter(MethodVisitor mv) {
|
||||
super(Opcodes.ASM5, mv);
|
||||
super(Opcodes.ASM7, mv);
|
||||
}
|
||||
|
||||
private static final int NUM_WRAPPERS = Wrapper.COUNT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue