From 61c624239ced1203d1c77cbeb5a57f9ad2c5c73d Mon Sep 17 00:00:00 2001 From: David Srbecky Date: Tue, 27 Apr 2021 16:22:48 +0100 Subject: Remove RETURN_VOID_NO_BARRIER byte-code. Unused and obsolete quickened byte-code. Bug: 170086509 Test: test.py -b --host --64 Change-Id: I1e917c189da7bf64418412522676dc6b081d5c0b --- compiler/optimizing/instruction_builder.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'compiler/optimizing/instruction_builder.cc') diff --git a/compiler/optimizing/instruction_builder.cc b/compiler/optimizing/instruction_builder.cc index ee6113f780..4364d39263 100644 --- a/compiler/optimizing/instruction_builder.cc +++ b/compiler/optimizing/instruction_builder.cc @@ -1408,7 +1408,6 @@ static bool HasTrivialClinit(ObjPtr klass, PointerSize pointer_si // Primitive, null or j.l.String initialization is permitted. break; case Instruction::RETURN_VOID: - case Instruction::RETURN_VOID_NO_BARRIER: break; case Instruction::SPUT: case Instruction::SPUT_WIDE: @@ -2697,7 +2696,6 @@ bool HInstructionBuilder::ProcessDexInstruction(const Instruction& instruction, break; } - case Instruction::RETURN_VOID_NO_BARRIER: case Instruction::RETURN_VOID: { BuildReturn(instruction, DataType::Type::kVoid, dex_pc); break; @@ -3561,6 +3559,7 @@ bool HInstructionBuilder::ProcessDexInstruction(const Instruction& instruction, } case Instruction::UNUSED_3E ... Instruction::UNUSED_43: + case Instruction::UNUSED_73: case Instruction::UNUSED_79: case Instruction::UNUSED_7A: case Instruction::UNUSED_E3 ... Instruction::UNUSED_F9: { -- cgit v1.2.3-59-g8ed1b