summaryrefslogtreecommitdiff
path: root/compiler/optimizing/inliner.cc
diff options
context:
space:
mode:
author David Srbecky <dsrbecky@google.com> 2021-04-27 16:22:48 +0100
committer David Srbecky <dsrbecky@google.com> 2021-04-28 10:44:11 +0000
commit61c624239ced1203d1c77cbeb5a57f9ad2c5c73d (patch)
tree63e392ba73e02ddb7fb8fc73ca87bf47d6452332 /compiler/optimizing/inliner.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/inliner.cc')
-rw-r--r--compiler/optimizing/inliner.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/optimizing/inliner.cc b/compiler/optimizing/inliner.cc
index 719221ee32..312b8ed748 100644
--- a/compiler/optimizing/inliner.cc
+++ b/compiler/optimizing/inliner.cc
@@ -421,7 +421,6 @@ static bool AlwaysThrows(const CompilerOptions& compiler_options, ArtMethod* met
case Instruction::RETURN_VOID:
case Instruction::RETURN_WIDE:
case Instruction::RETURN_OBJECT:
- case Instruction::RETURN_VOID_NO_BARRIER:
return false; // found regular control flow back
case Instruction::THROW:
throw_seen = true;