diff options
author | 2024-09-06 19:39:34 +0000 | |
---|---|---|
committer | 2024-09-09 18:48:21 +0000 | |
commit | 6f2055f3760d1fcc4e8c9f7278f3e7016155a79b (patch) | |
tree | 94be7b8fb33822caf41230f00dd2323254a10a63 | |
parent | 2c6ab1619b2cecba80ed332b34e96d7830208965 (diff) |
Remove unused variables.
Test: Builds with -Wunused-variable
Change-Id: I145eec6b821199726d77328f1f88f1b71a47f0aa
-rw-r--r-- | runtime/interpreter/interpreter_common.cc | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/interpreter/interpreter_common.cc b/runtime/interpreter/interpreter_common.cc index c5e54436e1..2b8a17f148 100644 --- a/runtime/interpreter/interpreter_common.cc +++ b/runtime/interpreter/interpreter_common.cc @@ -443,8 +443,6 @@ static bool DoVarHandleInvokeCommon(Thread* self, Handle<mirror::VarHandle> var_handle = hs.NewHandle( ObjPtr<mirror::VarHandle>::DownCast(shadow_frame.GetVRegReference(vRegC))); ArtMethod* method = shadow_frame.GetMethod(); - Handle<mirror::DexCache> dex_cache = hs.NewHandle(method->GetDexCache()); - Handle<mirror::ClassLoader> class_loader = hs.NewHandle(method->GetClassLoader()); uint32_t var_args[Instruction::kMaxVarArgRegs]; std::optional<VarArgsInstructionOperands> var_args_operands(std::nullopt); std::optional<RangeInstructionOperands> range_operands(std::nullopt); |