blob: e1858e25bcfe750dbc953135b675a4996f56429c [file] [log] [blame]
// Copyright (c) 2019, 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.desugar.backports;
import com.android.tools.r8.cf.code.CfInvoke;
import com.android.tools.r8.ir.desugar.BackportedMethodRewriter.MethodInvokeRewriter;
import org.objectweb.asm.Opcodes;
public final class SparseArrayMethodRewrites {
private SparseArrayMethodRewrites() {}
public static MethodInvokeRewriter rewriteSet() {
// Rewrite android/util/SparseArray#set to android/util/SparseArray#put
return (invoke, factory) ->
new CfInvoke(Opcodes.INVOKEVIRTUAL, factory.androidUtilSparseArrayMembers.put, false);
}
}