diff options
author | Jeff Law <jlaw@ventanamicro.com> | 2022-11-22 16:30:38 -0700 |
---|---|---|
committer | Jeff Law <jlaw@ventanamicro.com> | 2022-11-22 16:35:26 -0700 |
commit | ee86077c2c2e38376cb5a575af62e9187c98e8df (patch) | |
tree | 09db32de627d0c923f45fad0438f81b513c3c5de | |
parent | a03b35a28db262546415e8f16829cbb027a75025 (diff) | |
download | gcc-ee86077c2c2e38376cb5a575af62e9187c98e8df.zip gcc-ee86077c2c2e38376cb5a575af62e9187c98e8df.tar.gz gcc-ee86077c2c2e38376cb5a575af62e9187c98e8df.tar.bz2 |
Fix thinko in last patch
gcc/
* tree-ssa-dom.cc (record_edge_info): Fix thinko in last commit.
-rw-r--r-- | gcc/tree-ssa-dom.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-dom.cc b/gcc/tree-ssa-dom.cc index e82f4f7..c9e52d1 100644 --- a/gcc/tree-ssa-dom.cc +++ b/gcc/tree-ssa-dom.cc @@ -676,7 +676,7 @@ record_edge_info (basic_block bb) if it never traverses the backedge to begin with. This implies that any PHI nodes create equivalances that we can attach to the loop exit edge. */ - int bool + bool alternative = (EDGE_PRED (bb, 0)->flags & EDGE_DFS_BACK) ? 1 : 0; gphi_iterator gsi; |