diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2021-07-29 09:15:45 -0400 |
---|---|---|
committer | Andrew MacLeod <amacleod@redhat.com> | 2021-07-30 15:10:48 -0400 |
commit | d242acc396d645267cd1ccbdb4d0d73cc9b1ef48 (patch) | |
tree | ee8ccd0f3a130e9936956534e6ca6a14b0c85446 /gcc/gimple-range-cache.h | |
parent | 0b3560d3a9f2b55ba4807f2b0f8cbbf6cee9e6e3 (diff) | |
download | gcc-d242acc396d645267cd1ccbdb4d0d73cc9b1ef48.zip gcc-d242acc396d645267cd1ccbdb4d0d73cc9b1ef48.tar.gz gcc-d242acc396d645267cd1ccbdb4d0d73cc9b1ef48.tar.bz2 |
Change const basic_block to const_basic_block.
* gimple-range-cache.cc (*::set_bb_range): Change const basic_block to
const_basic_block..
(*::get_bb_range): Ditto.
(*::bb_range_p): Ditto.
* gimple-range-cache.h: Change prototypes.
Diffstat (limited to 'gcc/gimple-range-cache.h')
-rw-r--r-- | gcc/gimple-range-cache.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/gimple-range-cache.h b/gcc/gimple-range-cache.h index f842e9c..1e77c9b 100644 --- a/gcc/gimple-range-cache.h +++ b/gcc/gimple-range-cache.h @@ -52,9 +52,9 @@ public: block_range_cache (); ~block_range_cache (); - bool set_bb_range (tree name, const basic_block bb, const irange &r); - bool get_bb_range (irange &r, tree name, const basic_block bb); - bool bb_range_p (tree name, const basic_block bb); + bool set_bb_range (tree name, const_basic_block bb, const irange &r); + bool get_bb_range (irange &r, tree name, const_basic_block bb); + bool bb_range_p (tree name, const_basic_block bb); void dump (FILE *f); void dump (FILE *f, basic_block bb, bool print_varying = true); |