From c60b6f7754974809f7467a07d63475248274026b Mon Sep 17 00:00:00 2001 From: Santiago Aboy Solanes Date: Wed, 15 Nov 2023 15:21:12 +0000 Subject: Remove partial LSE It has been disabled for a while and it has bit rotted Bug: 298176183 Test: art/test/testrunner/testrunner.py --host --64 -b --optimizing Test: m test-art-host-gtest-art_compiler_tests64 Change-Id: I4fcd8b3d18a3388e078b5cb3c340b2e270aefef7 --- 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 80c0f84d6e..05aebee2ee 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -1642,7 +1642,6 @@ void CodeGenerator::ValidateInvokeRuntime(QuickEntrypointEnum entrypoint, // GC. (EmitNonBakerReadBarrier() && (instruction->IsInstanceFieldGet() || - instruction->IsPredicatedInstanceFieldGet() || instruction->IsStaticFieldGet() || instruction->IsArrayGet() || instruction->IsLoadClass() || @@ -1679,7 +1678,6 @@ void CodeGenerator::ValidateInvokeRuntimeWithoutRecordingPcInfo(HInstruction* in // PC-related information. DCHECK(kUseBakerReadBarrier); DCHECK(instruction->IsInstanceFieldGet() || - instruction->IsPredicatedInstanceFieldGet() || instruction->IsStaticFieldGet() || instruction->IsArrayGet() || instruction->IsArraySet() || -- cgit v1.2.3-59-g8ed1b