From 2b846ed46983f2b694f5a0f02806ba1449800d01 Mon Sep 17 00:00:00 2001 From: Roland Levillain Date: Tue, 19 May 2015 10:44:25 +0100 Subject: Fix the size of a StackHandleScope in art::CompilerDriver. Change-Id: Id6fbbbbfc5dcf9920e630699d4c1afc1b86f858f --- compiler/driver/compiler_driver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'compiler/driver/compiler_driver.cc') diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 47288b5098..d352f39fbc 100644 --- a/compiler/driver/compiler_driver.cc +++ b/compiler/driver/compiler_driver.cc @@ -1241,7 +1241,7 @@ ArtField* CompilerDriver::ComputeInstanceFieldInfo(uint32_t field_idx, mirror::Class* referrer_class; mirror::DexCache* dex_cache; { - StackHandleScope<3> hs(soa.Self()); + StackHandleScope<2> hs(soa.Self()); Handle dex_cache_handle( hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile()))); Handle class_loader_handle( -- cgit v1.2.3-59-g8ed1b