summaryrefslogtreecommitdiff
path: root/compiler/optimizing/instruction_builder.cc
diff options
context:
space:
mode:
authorDavid Srbecky <dsrbecky@google.com>2021-04-27 16:22:48 +0100
committerDavid Srbecky <dsrbecky@google.com>2021-04-28 10:44:11 +0000
commit61c624239ced1203d1c77cbeb5a57f9ad2c5c73d (patch)
tree63e392ba73e02ddb7fb8fc73ca87bf47d6452332 /compiler/optimizing/instruction_builder.cc
parent1dab575cd635706f03d510763cb4ea1b115a2cee (diff)
Remove RETURN_VOID_NO_BARRIER byte-code.
Unused and obsolete quickened byte-code. Bug: 170086509 Test: test.py -b --host --64 Change-Id: I1e917c189da7bf64418412522676dc6b081d5c0b
Diffstat (limited to 'compiler/optimizing/instruction_builder.cc')
-rw-r--r--compiler/optimizing/instruction_builder.cc3
1 files changed, 1 insertions, 2 deletions
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<mirror::Class> 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: {