blob: 2683d2fcf6a2fccd35c2757fcdf0629acc6b15bb [file] [log] [blame]
// Copyright (c) 2020, 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.ir.optimize.info.bridge;
/**
* A piece of optimization info that is computed for bridge methods. The info stores details about
* the behavior of the bridge.
*/
public abstract class BridgeInfo {
public boolean isVirtualBridgeInfo() {
return false;
}
public VirtualBridgeInfo asVirtualBridgeInfo() {
return null;
}
}