diff options
author | 2023-11-15 15:21:12 +0000 | |
---|---|---|
committer | 2023-12-06 20:13:28 +0000 | |
commit | c60b6f7754974809f7467a07d63475248274026b (patch) | |
tree | fda79143856a9c6442c81acf81278600e42e8ada /compiler/optimizing/code_generator.cc | |
parent | 52eb30a5d4783ee0069697af654f935cc35d3e4f (diff) |
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
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 2 |
1 files changed, 0 insertions, 2 deletions
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() || |