blob: cff3a8ca63d7c987e4971461211f8e1b46f786e8 [file] [log] [blame]
// Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.cf.code;
import com.android.tools.r8.cf.CfPrinter;
import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes;
public class CfThrow extends CfInstruction {
@Override
public void write(MethodVisitor visitor) {
visitor.visitInsn(Opcodes.ATHROW);
}
@Override
public void print(CfPrinter printer) {
printer.print(this);
}
}