diff options
author | Andrew MacLeod <amacleod@redhat.com> | 2023-07-10 13:58:22 -0400 |
---|---|---|
committer | Andrew MacLeod <amacleod@redhat.com> | 2023-07-28 16:23:07 -0400 |
commit | 7905c071c35070fff3397b1e24f140c128c08e64 (patch) | |
tree | 3078057bbc889d25cff57a5c3862ac13977de027 /gcc/gimple-range-cache.h | |
parent | 69b282ee723236ff60b7c8065fd7a58270dcebde (diff) | |
download | gcc-7905c071c35070fff3397b1e24f140c128c08e64.zip gcc-7905c071c35070fff3397b1e24f140c128c08e64.tar.gz gcc-7905c071c35070fff3397b1e24f140c128c08e64.tar.bz2 |
Fix some warnings
PR tree-optimization/110205
* gimple-range-cache.h (ranger_cache::m_estimate): Delete.
* range-op-mixed.h (operator_bitwise_xor::op1_op2_relation_effect):
Add final override.
* range-op.cc (operator_lshift): Add missing final overrides.
(operator_rshift): Ditto.
Diffstat (limited to 'gcc/gimple-range-cache.h')
-rw-r--r-- | gcc/gimple-range-cache.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gcc/gimple-range-cache.h b/gcc/gimple-range-cache.h index 93d1629..a0f436b 100644 --- a/gcc/gimple-range-cache.h +++ b/gcc/gimple-range-cache.h @@ -137,7 +137,6 @@ private: void exit_range (vrange &r, tree expr, basic_block bb, enum rfd_mode); bool edge_range (vrange &r, edge e, tree name, enum rfd_mode); - phi_analyzer *m_estimate; vec<basic_block> m_workback; class update_list *m_update; }; |