blob: abc2ee2559ee6b4ec873353ba9975cfc7287a8fd [file] [log] [blame]
// Copyright (c) 2016, 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.dex.code;
public abstract class DexBase2Format extends DexInstruction {
public static final int SIZE = 2;
protected DexBase2Format() {}
public DexBase2Format(BytecodeStream stream) {
super(stream);
}
@Override
public int getSize() {
return SIZE;
}
}