diff options
Diffstat (limited to 'runtime/interpreter/interpreter_common.cc')
-rw-r--r-- | runtime/interpreter/interpreter_common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter_common.cc b/runtime/interpreter/interpreter_common.cc index f11c62bc71..1fcace6d3b 100644 --- a/runtime/interpreter/interpreter_common.cc +++ b/runtime/interpreter/interpreter_common.cc @@ -580,7 +580,7 @@ bool DoInvokePolymorphic(Thread* self, DCHECK(invoke_method->IsIntrinsic()); // Dispatch based on intrinsic identifier associated with method. - switch (static_cast<art::Intrinsics>(invoke_method->GetIntrinsic())) { + switch (invoke_method->GetIntrinsic()) { #define CASE_SIGNATURE_POLYMORPHIC_INTRINSIC(Name, ...) \ case Intrinsics::k##Name: \ return Do ## Name(self, shadow_frame, inst, inst_data, result); |