diff options
| author | 2015-05-21 12:49:31 +0000 | |
|---|---|---|
| committer | 2015-05-21 12:49:32 +0000 | |
| commit | 1d637745bf1a47db6b899f0c004746ada2fd3f58 (patch) | |
| tree | eec9320e2f0be3202b1242cede8874dcf31a386e /compiler/driver/compiler_driver.cc | |
| parent | d6a1eaef02d0c73a8c24ff93ff68fc4f0d46925f (diff) | |
| parent | 2b846ed46983f2b694f5a0f02806ba1449800d01 (diff) | |
Merge "Fix the size of a StackHandleScope in art::CompilerDriver."
Diffstat (limited to 'compiler/driver/compiler_driver.cc')
| -rw-r--r-- | compiler/driver/compiler_driver.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/compiler/driver/compiler_driver.cc b/compiler/driver/compiler_driver.cc index 7cb7489d65..5dc93ced3f 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<mirror::DexCache> dex_cache_handle(          hs.NewHandle(mUnit->GetClassLinker()->FindDexCache(*mUnit->GetDexFile())));      Handle<mirror::ClassLoader> class_loader_handle( |