This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from bf470895905 PR modula2/110126 variables are reported as unused when ref [...] new 443485b3436 Move operator_addr_expr to the unified range-op table. new 39636a09da7 Move operator_bitwise_not to the unified range-op table. new af52b862970 Move operator_bitwise_xor to the unified range-op table. new 0965275e865 Move operator_bitwise_and to the unified range-op table. new b23d6b957f0 Move operator_bitwise_or to the unified range-op table. new b08b98254a9 Move operator_min to the unified range-op table. new f0278eb04fb Move operator_max to the unified range-op table. new f6e160e35ad Split pointer ibased range operators to range-op-ptr.cc new 8e0f292f92b Add a hybrid BIT_AND_EXPR operator for integer and pointer. new af5e7f0629d Add a hybrid BIT_IOR_EXPR operator for integer and pointer. new 73cbf402d3d Add a hybrid MIN_EXPR operator for integer and pointer. new 110c1f8d307 Add a hybrid MAX_EXPR operator for integer and pointer. new 2eb50117ca2 Remove type from range_op_handler table selection new 1c0aae69a76 Switch from unified table to range_op_table. There can be o [...] new 1b1de36ac83 Provide a default range_operator via range_op_handler. new 5410b07a8c3 Provide interface for non-standard operators. new 0ddc8c7871f Add some overrides.
The 17 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/Makefile.in | 1 + gcc/gimple-range-gori.cc | 2 +- gcc/gimple-range-op.cc | 73 +++--- gcc/ipa-cp.cc | 6 +- gcc/ipa-fnsummary.cc | 6 +- gcc/range-op-float.cc | 16 +- gcc/range-op-mixed.h | 150 +++++++++++- gcc/range-op-ptr.cc | 430 +++++++++++++++++++++++++++++++++ gcc/range-op.cc | 548 ++++++++---------------------------------- gcc/range-op.h | 86 +++---- gcc/tree-data-ref.cc | 4 +- gcc/tree-ssa-loop-unswitch.cc | 2 +- gcc/value-query.cc | 5 +- gcc/value-relation.cc | 2 +- gcc/vr-values.cc | 6 +- 15 files changed, 764 insertions(+), 573 deletions(-) create mode 100644 gcc/range-op-ptr.cc