diff options
| author | 2022-12-06 14:10:47 +0000 | |
|---|---|---|
| committer | 2022-12-06 14:10:47 +0000 | |
| commit | cd9aa7ecaaf63e6ae67d2426e284c3314c9fe470 (patch) | |
| tree | f1342d4ad7559a1bcc07e638be771de49560bb23 /compiler/optimizing/builder.h | |
| parent | 53ac62dbe2a103d359af33e324f68c3319ad4abc (diff) | |
| parent | 31242a99a1b58ce5267c1a74ad96a9d0b6dc1a94 (diff) | |
Update domination chain and RPO manually in MaybeAddExtraGotoBlocks am: 31242a99a1
Original change: https://android-review.googlesource.com/c/platform/art/+/2327718
Change-Id: Ia93373a62cf9d70babc305fed2cdae0eb98590ea
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
Diffstat (limited to 'compiler/optimizing/builder.h')
| -rw-r--r-- | compiler/optimizing/builder.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/compiler/optimizing/builder.h b/compiler/optimizing/builder.h index 85fa8d4123..145dbfb6b9 100644 --- a/compiler/optimizing/builder.h +++ b/compiler/optimizing/builder.h @@ -57,8 +57,7 @@ class HGraphBuilder : public ValueObject { // When inlining, we sometimes want to add an extra Goto block before the Exit block. This is done // in the building phase as we do not allow the inlining phase to add new instructions. - // Returns false if the graph we are adding the extra block has irreducible loops. - bool MaybeAddExtraGotoBlocks(); + void MaybeAddExtraGotoBlocks(); HGraph* const graph_; const DexFile* const dex_file_; |