aboutsummaryrefslogtreecommitdiff
path: root/gcc/read-rtl-function.cc
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2023-03-04 11:24:04 +0100
committerJakub Jelinek <jakub@redhat.com>2023-03-04 11:24:04 +0100
commit4ee2f419fe42222dbb21dfb0622cc7c0e46a2261 (patch)
tree59c5e8c7d314fbc0d3f834fa158364e84921eccc /gcc/read-rtl-function.cc
parent97651be1b63ae79eeff12b2867454d186e4cb7e0 (diff)
downloadgcc-4ee2f419fe42222dbb21dfb0622cc7c0e46a2261.zip
gcc-4ee2f419fe42222dbb21dfb0622cc7c0e46a2261.tar.gz
gcc-4ee2f419fe42222dbb21dfb0622cc7c0e46a2261.tar.bz2
Remove remaining traces of m_vecdata from comments [PR109006]
The following patch adjusts remaining references to the removed m_vecdata array from vec.h in various comments. 2023-03-04 Jakub Jelinek <jakub@redhat.com> PR middle-end/109006 * vec.cc (test_auto_alias): Adjust comment for removal of m_vecdata. * read-rtl-function.cc (function_reader::parse_block): Likewise. * gdbhooks.py: Likewise.
Diffstat (limited to 'gcc/read-rtl-function.cc')
-rw-r--r--gcc/read-rtl-function.cc9
1 files changed, 5 insertions, 4 deletions
diff --git a/gcc/read-rtl-function.cc b/gcc/read-rtl-function.cc
index 74bd4dd..b89a811 100644
--- a/gcc/read-rtl-function.cc
+++ b/gcc/read-rtl-function.cc
@@ -622,10 +622,11 @@ function_reader::parse_block ()
These can get out-of-sync when basic blocks are optimized away.
They get back in sync by "compact_blocks".
- We reconstruct cfun->cfg->x_basic_block_info->m_vecdata with NULL
- values in it for any missing basic blocks, so that (a) == (b) for
- all of the blocks we create. The doubly-linked list of basic
- blocks (next_bb/prev_bb) skips over these "holes". */
+ We reconstruct cfun->cfg->x_basic_block_info->address () pointed
+ vector elements with NULL values in it for any missing basic blocks,
+ so that (a) == (b) for all of the blocks we create. The
+ doubly-linked list of basic blocks (next_bb/prev_bb) skips over
+ these "holes". */
if (m_highest_bb_idx < bb_idx)
m_highest_bb_idx = bb_idx;