From 8dea9c4f6495c7c5477cb368b45a7cb77a87dbf6 Mon Sep 17 00:00:00 2001 From: Nicolas Geoffray Date: Mon, 13 Sep 2021 11:46:24 +0100 Subject: Update code to fix two unused variable warnings. Test: m Change-Id: I817bc3e5405d2b089841429ae22b2004305dac50 --- compiler/optimizing/code_generator.cc | 2 -- 1 file changed, 2 deletions(-) (limited to 'compiler/optimizing/code_generator.cc') diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index ca35d99f24..a164b15a04 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -1240,7 +1240,6 @@ void CodeGenerator::RecordPcInfo(HInstruction* instruction, } uint32_t outer_dex_pc = dex_pc; - uint32_t outer_environment_size = 0u; uint32_t inlining_depth = 0; HEnvironment* const environment = instruction->GetEnvironment(); if (environment != nullptr) { @@ -1250,7 +1249,6 @@ void CodeGenerator::RecordPcInfo(HInstruction* instruction, ++inlining_depth; } outer_dex_pc = outer_environment->GetDexPc(); - outer_environment_size = outer_environment->Size(); } HLoopInformation* info = instruction->GetBlock()->GetLoopInformation(); -- cgit v1.2.3-59-g8ed1b