diff options
Diffstat (limited to 'compiler/optimizing/intrinsics_arm64.cc')
-rw-r--r-- | compiler/optimizing/intrinsics_arm64.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/intrinsics_arm64.cc b/compiler/optimizing/intrinsics_arm64.cc index dcdab1037e..a7c5639921 100644 --- a/compiler/optimizing/intrinsics_arm64.cc +++ b/compiler/optimizing/intrinsics_arm64.cc @@ -4457,7 +4457,7 @@ static void GenerateVarHandleArrayChecks(HInvoke* invoke, codegen->GetCompilerOptions().IsBootImage() || !Runtime::Current()->GetHeap()->GetBootImageSpaces().empty(); DCHECK(boot_image_available || codegen->GetCompilerOptions().IsJitCompiler()); - size_t can_be_view = (DataType::Size(value_type) != 1u) && boot_image_available; + bool can_be_view = (DataType::Size(value_type) != 1u) && boot_image_available; vixl::aarch64::Label* slow_path_label = can_be_view ? slow_path->GetByteArrayViewCheckLabel() : slow_path->GetEntryLabel(); __ Cmp(temp2, static_cast<uint16_t>(primitive_type)); |