This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch hjl/pr70155/cse in repository gcc.
discards 8ae3715 Extend STV pass to 64-bit mode adds 9e52df9 2016-04-27 Hristian Kirtchev kirtchev@adacore.com adds b765880 2016-04-27 Vincent Celier celier@adacore.com adds 7424727 2016-04-27 Hristian Kirtchev kirtchev@adacore.com adds 9b29458 2016-04-27 Hristian Kirtchev kirtchev@adacore.com adds 12760d3 2016-04-27 Bob Duff duff@adacore.com adds a667e04 2016-04-27 Hristian Kirtchev kirtchev@adacore.com adds 5ee5282 2016-04-27 Ed Schonberg schonberg@adacore.com adds 2f3f99c 2016-04-27 Bob Duff duff@adacore.com adds b7fdb20 2016-04-27 Arnaud Charlet charlet@adacore.com new 21647c2 2016-04-27 Arnaud Charlet charleT@adacore.com new 2606272 2016-04-27 Arnaud Charlet charlet@adacore.com new 8b8be17 2016-04-27 Arnaud Charlet charlet@adacore.com new 886d546 cp/ * constexpr.c (get_fundef_copy): Use the original funct [...] new 46b58ce PR sanitizer/70683 * tree-core.h (enum operand_equal_flag): [...] new 0568f8a Extend STV pass to 64-bit mode
This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this:
* -- * -- B -- O -- O -- O (8ae3715) \ N -- N -- N refs/heads/hjl/pr70155/cse (0568f8a)
You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B.
Any revisions marked "omits" are not gone; other references still refer to them. Any revisions marked "discards" are gone forever.
The 6 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/ChangeLog | 9 + gcc/ada/ChangeLog | 278 +++++++++++++ gcc/ada/a-cbhama.adb | 6 +- gcc/ada/a-cfdlli.adb | 4 +- gcc/ada/a-chtgbo.adb | 4 +- gcc/ada/a-chtgop.adb | 10 +- gcc/ada/a-coinve.adb | 5 +- gcc/ada/a-comutr.adb | 8 +- gcc/ada/a-conhel.adb | 9 +- gcc/ada/a-convec.adb | 5 +- gcc/ada/a-crbtgo.adb | 4 +- gcc/ada/a-crdlli.adb | 4 +- gcc/ada/a-ngcoar.adb | 11 +- gcc/ada/a-ngrear.adb | 9 +- gcc/ada/a-rbtgbo.adb | 4 +- gcc/ada/a-strunb-shared.adb | 1 + gcc/ada/a-textio.adb | 52 +-- gcc/ada/aa_util.adb | 458 ---------------------- gcc/ada/aa_util.ads | 145 ------- gcc/ada/einfo.adb | 32 ++ gcc/ada/einfo.ads | 19 +- gcc/ada/errout.adb | 23 +- gcc/ada/errout.ads | 9 +- gcc/ada/erroutc.adb | 6 +- gcc/ada/errutil.adb | 22 +- gcc/ada/exp_ch3.adb | 11 +- gcc/ada/exp_ch5.adb | 5 +- gcc/ada/exp_ch6.adb | 128 ++---- gcc/ada/exp_spark.adb | 34 +- gcc/ada/exp_spark.ads | 6 +- gcc/ada/exp_unst.adb | 2 +- gcc/ada/exp_util.adb | 52 +-- gcc/ada/exp_util.ads | 9 +- gcc/ada/ghost.adb | 49 ++- gcc/ada/gnatcmd.adb | 10 +- gcc/ada/init.c | 11 +- gcc/ada/inline.adb | 16 +- gcc/ada/lib-xref.adb | 28 +- gcc/ada/mkdir.c | 16 +- gcc/ada/rtinit.c | 10 +- gcc/ada/s-gearop.adb | 14 +- gcc/ada/s-gearop.ads | 4 +- gcc/ada/s-strhas.adb | 7 +- gcc/ada/sem.adb | 82 ++-- gcc/ada/sem_aggr.adb | 9 +- gcc/ada/sem_case.adb | 7 +- gcc/ada/sem_case.ads | 7 +- gcc/ada/sem_ch10.adb | 42 +- gcc/ada/sem_ch13.adb | 36 +- gcc/ada/sem_ch3.adb | 66 ++-- gcc/ada/sem_ch4.adb | 273 ++++++++++++- gcc/ada/sem_ch6.adb | 20 +- gcc/ada/sem_ch7.adb | 65 +-- gcc/ada/sem_ch8.adb | 6 +- gcc/ada/sem_dim.adb | 52 ++- gcc/ada/sem_dim.ads | 12 +- gcc/ada/sem_prag.adb | 50 ++- gcc/ada/sem_res.adb | 75 +++- gcc/ada/sem_util.adb | 139 +++++-- gcc/ada/sem_util.ads | 20 + gcc/ada/sinput-l.ads | 4 +- gcc/ada/sinput.ads | 6 +- gcc/config/i386/i386.c | 20 +- gcc/cp/ChangeLog | 6 + gcc/cp/constexpr.c | 26 +- gcc/fold-const.c | 19 + gcc/testsuite/ChangeLog | 5 + gcc/testsuite/g++.dg/cpp0x/constexpr-recursion3.C | 14 + gcc/testsuite/g++.dg/ubsan/pr63956.C | 4 +- gcc/tree-core.h | 4 +- 70 files changed, 1468 insertions(+), 1150 deletions(-) delete mode 100644 gcc/ada/aa_util.adb delete mode 100644 gcc/ada/aa_util.ads create mode 100644 gcc/testsuite/g++.dg/cpp0x/constexpr-recursion3.C