summaryrefslogtreecommitdiff
path: root/compiler/optimizing/dead_code_elimination.cc
diff options
context:
space:
mode:
author Android Build Coastguard Worker <android-build-coastguard-worker@google.com> 2025-01-24 18:02:00 -0800
committer Android Build Coastguard Worker <android-build-coastguard-worker@google.com> 2025-01-24 18:02:00 -0800
commitb0e55cccb49d459cbf63d8add1b60aa18fba52a2 (patch)
treef2db9d456ce877a4cf9a2ffdfc3844ff29e8846c /compiler/optimizing/dead_code_elimination.cc
parent35f3a8a1c34cb233fee43885cf4626dfb45f6bbe (diff)
parentf3c480ffeb31af6c99858b5608ed610018062dae (diff)
Snap for 12969164 from f3c480ffeb31af6c99858b5608ed610018062dae to 25Q2-release
Change-Id: I2c4aabe02793d21090d9f1c9e3a04f3dd1933364
Diffstat (limited to 'compiler/optimizing/dead_code_elimination.cc')
-rw-r--r--compiler/optimizing/dead_code_elimination.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/optimizing/dead_code_elimination.cc b/compiler/optimizing/dead_code_elimination.cc
index ede909526d..c5ec0b93b2 100644
--- a/compiler/optimizing/dead_code_elimination.cc
+++ b/compiler/optimizing/dead_code_elimination.cc
@@ -526,10 +526,10 @@ void HDeadCodeElimination::MaybeAddPhi(HBasicBlock* block) {
// |
// 8
// `7` (which would be `block` in this example), and `6` will come from both the true path and
- // the false path of `1`. We bumped into something similar in `HCodeFlowSimplifier`. See
- // `HCodeFlowSimplifier::TryFixupDoubleDiamondPattern()`.
+ // the false path of `1`. We bumped into something similar in `HControlFlowSimplifier`. See
+ // `HControlFlowSimplifier::TryFixupDoubleDiamondPattern()`.
// TODO(solanes): Figure out if we can fix up the graph into a double diamond in a generic way
- // so that `HDeadCodeElimination` and `HCodeFlowSimplifier` can take advantage of it.
+ // so that `HDeadCodeElimination` and `HControlFlowSimplifier` can take advantage of it.
if (!same_input) {
// `1` and `7` having the opposite condition is a case we are missing. We could potentially