summaryrefslogtreecommitdiff
path: root/runtime/interpreter/interpreter_switch_impl-inl.h
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 /runtime/interpreter/interpreter_switch_impl-inl.h
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 'runtime/interpreter/interpreter_switch_impl-inl.h')
-rw-r--r--runtime/interpreter/interpreter_switch_impl-inl.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/runtime/interpreter/interpreter_switch_impl-inl.h b/runtime/interpreter/interpreter_switch_impl-inl.h
index d7a1b1b149..07a04fe4bb 100644
--- a/runtime/interpreter/interpreter_switch_impl-inl.h
+++ b/runtime/interpreter/interpreter_switch_impl-inl.h
@@ -440,11 +440,6 @@ class InstructionHandler {
return true;
}
- HANDLER_ATTRIBUTES bool RETURN_VOID_NO_BARRIER() {
- JValue result;
- return HandleReturn(result);
- }
-
HANDLER_ATTRIBUTES bool RETURN_VOID() {
QuasiAtomic::ThreadFenceForConstructor();
JValue result;
@@ -1628,6 +1623,10 @@ class InstructionHandler {
return HandleUnused();
}
+ HANDLER_ATTRIBUTES bool UNUSED_73() {
+ return HandleUnused();
+ }
+
HANDLER_ATTRIBUTES bool UNUSED_79() {
return HandleUnused();
}