blob: ea206fe6014fa363b9ca5c3c57d72bd1d0685337 [file] [log] [blame]
// Copyright (c) 2017, 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 DexBase4Format extends DexInstruction {
public static final int SIZE = 4;
protected DexBase4Format() {}
public DexBase4Format(BytecodeStream stream) {
super(stream);
}
@Override
public int getSize() {
return SIZE;
}
}