This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from c0578c7f4f3 [x86] Tweak testcases for PR82361 new 5763e144adf [Ada] Refine previous change for -gnatn and LLVM new b62d138e467 [Ada] Fix style issues in functional maps new 10789c9ab70 [Ada] Avoid uninitialized variable in bounded containers new bfc9786e0de [Ada] System.Stack_Usage: fix a typo new 968356cde57 [Ada] Remove remaining references to VMS support new 34bc5aa6f79 [Ada] Improve doc on Warning_As_Error new 2f5f7be7292 [Ada] Fix 32/64bit mistake on SYSTEM_INFO component in s-win32 new dbdeaa0898b [Ada] Fix typo in error message new 257d7f291bc [Ada] No Storage_Error for an oversized disabled ghost arra [...] new 307b1798bdd [Ada] Fix errno for rename for the VxWorks 6 target new cd052b50e9d [Ada] Raise exception on call to Expect for a dead process new 29f421fd192 [Ada] Factor out code for deciding statically known Constra [...] new be0ac57dbce [Ada] Ensure that Scan_Real result does not depend on trail [...] new d2ef5482c2c [Ada] Skip entity name qualification in GNATprove mode new 72c5352b69f [Ada] Refine type of Get_Homonym_Number result new 5f02e9ac666 [Ada] Don't fail a front-end assertion if errors have alrea [...] new e3e94218b35 [Ada] Code cleanup of alignment representation clauses in d [...] new 0a8c228c91a [Ada] Fix minor formatting issue new 61aec20f449 [Ada] Improve efficiency of copying bit-packed slices new fd7f9ee7ae1 [Ada] Fix portability issues in access to subprograms
The 20 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/ada/ChangeLog | 150 +++++ gcc/ada/adaint.c | 20 + gcc/ada/bindgen.adb | 1 + .../implementation_defined_characteristics.rst | 5 +- .../doc/gnat_rm/implementation_defined_pragmas.rst | 12 +- .../implementation_of_specific_ada_features.rst | 3 - gcc/ada/exp_attr.adb | 152 +---- gcc/ada/exp_ch4.adb | 39 +- gcc/ada/exp_ch5.adb | 22 +- gcc/ada/exp_dbug.adb | 63 +- gcc/ada/exp_dbug.ads | 4 + gcc/ada/exp_disp.adb | 99 +--- gcc/ada/exp_spark.adb | 15 + gcc/ada/exp_unst.adb | 2 +- gcc/ada/exp_util.adb | 164 ++++++ gcc/ada/exp_util.ads | 4 + gcc/ada/freeze.adb | 3 +- gcc/ada/frontend.adb | 4 +- gcc/ada/gnat_rm.texi | 20 +- gcc/ada/libgnarl/s-interr.adb | 6 +- gcc/ada/libgnarl/s-interr__hwint.adb | 7 +- gcc/ada/libgnarl/s-interr__sigaction.adb | 6 +- gcc/ada/libgnarl/s-interr__vxworks.adb | 7 +- gcc/ada/libgnat/a-cbhama.adb | 14 +- gcc/ada/libgnat/a-cbhase.adb | 12 +- gcc/ada/libgnat/a-cbmutr.adb | 13 +- gcc/ada/libgnat/a-cborma.adb | 15 +- gcc/ada/libgnat/a-cborse.adb | 13 +- gcc/ada/libgnat/a-cobove.adb | 16 +- gcc/ada/libgnat/a-cofuma.adb | 30 +- gcc/ada/libgnat/g-expect.adb | 12 +- gcc/ada/libgnat/s-stausa.adb | 2 +- gcc/ada/libgnat/s-valrea.adb | 652 ++++++++++++--------- gcc/ada/libgnat/s-win32.ads | 21 +- gcc/ada/make.adb | 2 +- gcc/ada/sem_eval.adb | 3 +- gcc/ada/sem_util.adb | 55 +- gcc/testsuite/ChangeLog | 21 + gcc/testsuite/gnat.dg/containers1.adb | 5 + gcc/testsuite/gnat.dg/containers1.ads | 6 + gcc/testsuite/gnat.dg/{expect3.adb => expect4.adb} | 28 +- gcc/testsuite/gnat.dg/float_value2.adb | 10 + gcc/testsuite/gnat.dg/{anon3.adb => ghost7.adb} | 4 +- gcc/testsuite/gnat.dg/ghost7.ads | 8 + gcc/testsuite/gnat.dg/system_info1.adb | 23 + 45 files changed, 1086 insertions(+), 687 deletions(-) create mode 100644 gcc/testsuite/gnat.dg/containers1.adb create mode 100644 gcc/testsuite/gnat.dg/containers1.ads copy gcc/testsuite/gnat.dg/{expect3.adb => expect4.adb} (55%) create mode 100644 gcc/testsuite/gnat.dg/float_value2.adb copy gcc/testsuite/gnat.dg/{anon3.adb => ghost7.adb} (69%) create mode 100644 gcc/testsuite/gnat.dg/ghost7.ads create mode 100644 gcc/testsuite/gnat.dg/system_info1.adb