diff options
author | 2023-10-18 09:08:46 +0000 | |
---|---|---|
committer | 2023-10-19 08:59:54 +0000 | |
commit | 7b01eef7a1bb1f02a4388a3e2a12066af0f0ce92 (patch) | |
tree | 7214aa4c35bbc2f8eae2f370a7abf6964cadcb00 /compiler/optimizing/optimizing_compiler.cc | |
parent | 950b9eed949e8d5500c6ec32139a481eede344ff (diff) |
riscv64: [codegen] Rewrite and enable Select.
Test: # Edit `run-test` to disable checker, then
testrunner.py --target --64 --ndebug --optimizing
# Ignore 6 pre-existing failures.
Bug: 283082089
Change-Id: I0486b89116755990ca1de0955d4a913f9cd893e8
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
-rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index 0fea53c247..bc0a66f7db 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -770,6 +770,7 @@ static bool CanAssembleGraphForRiscv64(HGraph* graph) { case HInstruction::kExit: case HInstruction::kGoto: case HInstruction::kPackedSwitch: + case HInstruction::kSelect: case HInstruction::kTryBoundary: case HInstruction::kClearException: case HInstruction::kLoadException: |