diff -Nrcpad gcc-9.2.0/ChangeLog gcc-9.3.0/ChangeLog
*** gcc-9.2.0/ChangeLog Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/ChangeLog Thu Mar 12 11:08:03 2020
***************
*** 1,3 ****
--- 1,7 ----
+ 2020-03-12 Release Manager
+
+ * GCC 9.3.0 released.
+
2019-08-12 Release Manager
* GCC 9.2.0 released.
diff -Nrcpad gcc-9.2.0/INSTALL/build.html gcc-9.3.0/INSTALL/build.html
*** gcc-9.2.0/INSTALL/build.html Mon Aug 12 07:40:34 2019
--- gcc-9.3.0/INSTALL/build.html Thu Mar 12 11:08:33 2020
*************** that type mismatches occur, this could b
*** 116,122 ****
The solution is not to use such a directory for building GCC.
! Similarly, when building from SVN or snapshots, or if you modify
*.l files, you need the Flex lexical analyzer generator
installed. If you do not modify *.l files, releases contain
the Flex-generated files and you do not need Flex installed to build
--- 116,122 ----
The solution is not to use such a directory for building GCC.
! Similarly, when building from the source repository or snapshots, or if you modify
*.l files, you need the Flex lexical analyzer generator
installed. If you do not modify *.l files, releases contain
the Flex-generated files and you do not need Flex installed to build
*************** them. There is still one Flex-based lex
*** 124,130 ****
build machinery, not of GCC itself) that is used even if you only
build the C front end.
! When building from SVN or snapshots, or if you modify Texinfo
documentation, you need version 4.7 or later of Texinfo installed if you
want Info documentation to be regenerated. Releases contain Info
documentation pre-built for the unmodified documentation in the release.
--- 124,130 ----
build machinery, not of GCC itself) that is used even if you only
build the C front end.
! When building from the source repository or snapshots, or if you modify Texinfo
documentation, you need version 4.7 or later of Texinfo installed if you
want Info documentation to be regenerated. Releases contain Info
documentation pre-built for the unmodified documentation in the release.
diff -Nrcpad gcc-9.2.0/INSTALL/configure.html gcc-9.3.0/INSTALL/configure.html
*** gcc-9.2.0/INSTALL/configure.html Mon Aug 12 07:40:34 2019
--- gcc-9.3.0/INSTALL/configure.html Thu Mar 12 11:08:33 2020
*************** for both native and cross targets.
*** 91,99 ****
We use srcdir to refer to the toplevel source directory for
GCC; we use objdir to refer to the toplevel build/object directory.
! If you obtained the sources via SVN, srcdir must refer to the top
! gcc directory, the one where the MAINTAINERS file can be
! found, and not its gcc subdirectory, otherwise the build will fail.
If either srcdir or objdir is located on an automounted NFS
file system, the shell’s built-in pwd
command will return
--- 91,100 ----
We use srcdir to refer to the toplevel source directory for
GCC; we use objdir to refer to the toplevel build/object directory.
! If you obtained the sources by cloning the repository, srcdir
! must refer to the top gcc directory, the one where the
! MAINTAINERS file can be found, and not its gcc
! subdirectory, otherwise the build will fail.
If either srcdir or objdir is located on an automounted NFS
file system, the shell’s built-in pwd
command will return
*************** with --enable-bootstrap.
*** 1086,1092 ****
--enable-generated-files-in-srcdir
Neither the .c and .h files that are generated from Bison and flex nor the
info manuals and man pages that are built from the .texi files are present
! in the SVN development tree. When building GCC from that development tree,
or from one of our snapshots, those generated files are placed in your
build directory, which allows for the source to be in a readonly
directory.
--- 1087,1093 ----
--enable-generated-files-in-srcdir
Neither the .c and .h files that are generated from Bison and flex nor the
info manuals and man pages that are built from the .texi files are present
! in the repository development tree. When building GCC from that development tree,
or from one of our snapshots, those generated files are placed in your
build directory, which allows for the source to be in a readonly
directory.
*************** controlled by the Makefiles.
*** 1388,1429 ****
--enable-checking
--enable-checking=list
! When you specify this option, the compiler is built to perform internal
! consistency checks of the requested complexity. This does not change the
! generated code, but adds error checking within the compiler. This will
! slow down the compiler and may only work properly if you are building
! the compiler with GCC. This is ‘yes,extra’ by default when building
! from SVN or snapshots, but ‘release’ for releases. The default
! for building the stage1 compiler is ‘yes’. More control
! over the checks may be had by specifying list. The categories of
! checks available are ‘yes’ (most common checks
! ‘assert,misc,tree,gc,rtlflag,runtime’), ‘no’ (no checks at
! all), ‘all’ (all but ‘valgrind’), ‘release’ (cheapest
! checks ‘assert,runtime’) or ‘none’ (same as ‘no’).
! Individual checks can be enabled with these flags ‘assert’,
! ‘df’, ‘fold’, ‘gc’, ‘gcac’, ‘misc’, ‘rtl’,
! ‘rtlflag’, ‘runtime’, ‘tree’, ‘extra’ and ‘valgrind’.
! ‘extra’ adds for ‘misc’ checking extra checks that might affect
! code generation and should therefore not differ between stage1 and later
! stages.
! The ‘valgrind’ check requires the external valgrind
! simulator, available from http://valgrind.org/. The
! ‘df’, ‘rtl’, ‘gcac’ and ‘valgrind’ checks are very expensive.
! To disable all checking, ‘--disable-checking’ or
! ‘--enable-checking=none’ must be explicitly requested. Disabling
! assertions will make the compiler and runtime slightly faster but
! increase the risk of undetected internal errors causing wrong code to be
! generated.
--disable-stage1-checking
--enable-stage1-checking
--enable-stage1-checking=list
! If no --enable-checking option is specified the stage1
! compiler will be built with ‘yes’ checking enabled, otherwise
! the stage1 checking flags are the same as specified by
--enable-checking. To build the stage1 compiler with
different checking options use --enable-stage1-checking.
The list of checking options is the same as for --enable-checking.
--- 1389,1439 ----
--enable-checking
+ --disable-checking
--enable-checking=list
! This option controls performing internal consistency checks in the compiler.
! It does not change the generated code, but adds error checking of the
! requested complexity. This slows down the compiler and may only work
! properly if you are building the compiler with GCC.
! When the option is not specified, the active set of checks depends on context.
! Namely, bootstrap stage 1 defaults to ‘--enable-checking=yes’, builds
! from release branches or release archives default to
! ‘--enable-checking=release’, and otherwise
! ‘--enable-checking=yes,extra’ is used. When the option is
! specified without a list, the result is the same as
! ‘--enable-checking=yes’. Likewise, ‘--disable-checking’ is
! equivalent to ‘--enable-checking=no’.
!
! The categories of checks available in list are ‘yes’ (most common
! checks ‘assert,misc,gc,gimple,rtlflag,runtime,tree,types’), ‘no’
! (no checks at all), ‘all’ (all but ‘valgrind’), ‘release’
! (cheapest checks ‘assert,runtime’) or ‘none’ (same as ‘no’).
! ‘release’ checks are always on and to disable them
! ‘--disable-checking’ or ‘--enable-checking=no[,<other checks>]’
! must be explicitly requested. Disabling assertions makes the compiler and
! runtime slightly faster but increases the risk of undetected internal errors
! causing wrong code to be generated.
!
! Individual checks can be enabled with these flags: ‘assert’, ‘df’,
! ‘extra’, ‘fold’, ‘gc’, ‘gcac’, ‘gimple’,
! ‘misc’, ‘rtl’, ‘rtlflag’, ‘runtime’, ‘tree’,
! ‘types’ and ‘valgrind’. ‘extra’ extends ‘misc’
! checking with extra checks that might affect code generation and should
! therefore not differ between stage1 and later stages in bootstrap.
!
! The ‘valgrind’ check requires the external valgrind
simulator,
! available from http://valgrind.org/. The ‘rtl’ checks are
! expensive and the ‘df’, ‘gcac’ and ‘valgrind’ checks are very
! expensive.
--disable-stage1-checking
--enable-stage1-checking
--enable-stage1-checking=list
! This option affects only bootstrap build. If no --enable-checking
! option is specified the stage1 compiler is built with ‘yes’ checking
! enabled, otherwise the stage1 checking flags are the same as specified by
--enable-checking. To build the stage1 compiler with
different checking options use --enable-stage1-checking.
The list of checking options is the same as for --enable-checking.
*************** specifying paths path1, &hell
*** 1743,1749 ****
% srcdir/configure \
! --enable-offload-target=i686-unknown-linux-gnu=/path/to/i686/compiler,x86_64-pc-linux-gnu
If ‘hsa’ is specified as one of the targets, the compiler will be
--- 1753,1759 ----
% srcdir/configure \
! --enable-offload-targets=x86_64-intelmicemul-linux-gnu=/path/to/x86_64/compiler,nvptx-none,hsa
If ‘hsa’ is specified as one of the targets, the compiler will be
diff -Nrcpad gcc-9.2.0/INSTALL/download.html gcc-9.3.0/INSTALL/download.html
*** gcc-9.2.0/INSTALL/download.html Mon Aug 12 07:40:33 2019
--- gcc-9.3.0/INSTALL/download.html Thu Mar 12 11:08:32 2020
*************** ul.no-bullet {list-style: none}
*** 83,91 ****
!
GCC is distributed via SVN and FTP
! tarballs compressed with gzip
or
! bzip2
.
Please refer to the releases web page
for information on how to obtain GCC.
--- 83,90 ----
!
GCC is distributed via git and via
! HTTPS as tarballs compressed with gzip
or bzip2
.
Please refer to the releases web page
for information on how to obtain GCC.
diff -Nrcpad gcc-9.2.0/INSTALL/prerequisites.html gcc-9.3.0/INSTALL/prerequisites.html
*** gcc-9.2.0/INSTALL/prerequisites.html Mon Aug 12 07:40:33 2019
--- gcc-9.3.0/INSTALL/prerequisites.html Thu Mar 12 11:08:32 2020
*************** and up works.
*** 193,200 ****
Necessary when regenerating Makefile dependencies in libiberty.
Necessary when regenerating libiberty/functions.texi.
Necessary when generating manpages from Texinfo manuals.
! Used by various scripts to generate some files included in SVN (mainly
! Unicode-related and rarely changing) from source tables.
Used by automake
.
--- 193,201 ----
Necessary when regenerating Makefile dependencies in libiberty.
Necessary when regenerating libiberty/functions.texi.
Necessary when generating manpages from Texinfo manuals.
! Used by various scripts to generate some files included in the source
! repository (mainly Unicode-related and rarely changing) from source
! tables.
Used by automake
.
*************** for more information. This bug has been
*** 328,335 ****
Necessary when modifying *.l files.
Necessary to build GCC during development because the generated output
! files are not included in the SVN repository. They are included in
! releases.
Texinfo version 4.7 (or later)
--- 329,336 ----
Necessary when modifying *.l files.
Necessary to build GCC during development because the generated output
! files are not included in the version-controlled source repository.
! They are included in releases.
Texinfo version 4.7 (or later)
*************** create printable documentation in DVI or
*** 342,348 ****
4.8 or later is required for make pdf
.
Necessary to build GCC documentation during development because the
! generated output files are not included in the SVN repository. They are
included in releases.
--- 343,349 ----
4.8 or later is required for make pdf
.
Necessary to build GCC documentation during development because the
! generated output files are not included in the repository. They are
included in releases.
*************** DVI or PDF files, respectively.
*** 359,369 ****
files in the directories below jit/docs.
! SVN (any version)
SSH (any version)
! Necessary to access the SVN repository. Public releases and weekly
! snapshots of the development sources are also available via FTP.
GNU diffutils version 2.7 (or later)
--- 360,370 ----
files in the directories below jit/docs.
! git (any version)
SSH (any version)
! Necessary to access the source repository. Public releases and weekly
! snapshots of the development sources are also available via HTTPS.
GNU diffutils version 2.7 (or later)
diff -Nrcpad gcc-9.2.0/LAST_UPDATED gcc-9.3.0/LAST_UPDATED
*** gcc-9.2.0/LAST_UPDATED Mon Aug 12 07:40:33 2019
--- gcc-9.3.0/LAST_UPDATED Thu Mar 12 11:08:31 2020
***************
*** 1 ****
! Obtained from SVN: tags/gcc_9_2_0_release revision 274275
--- 1 ----
! Obtained from git: releases/gcc-9.3.0 revision 4212a6a3e44f870412d9025eeb323fd4f50a61da
diff -Nrcpad gcc-9.2.0/MD5SUMS gcc-9.3.0/MD5SUMS
*** gcc-9.2.0/MD5SUMS Mon Aug 12 07:58:02 2019
--- gcc-9.3.0/MD5SUMS Thu Mar 12 11:25:24 2020
***************
*** 1,5 ****
# This file contains the MD5 checksums of the files in the
! # gcc-9.2.0.tar.xz tarball.
#
# Besides verifying that all files in the tarball were correctly expanded,
# it also can be used to determine if any files have changed since the
--- 1,5 ----
# This file contains the MD5 checksums of the files in the
! # gcc-9.3.0.tar.xz tarball.
#
# Besides verifying that all files in the tarball were correctly expanded,
# it also can be used to determine if any files have changed since the
*************** e399c6eed967a5699498feb798da61ee .gitat
*** 17,43 ****
fe60d87048567d4fe8c8a0ed2448bcc8 COPYING.RUNTIME
d32239bcb673463ab874e80d47fae504 COPYING3
6a6a8e020838b23406c81b19c1d46df6 COPYING3.LIB
! 11703d3ccbb5a20d9fc27bc93d50b010 ChangeLog
fd4ecdf5d672efe2b0e409aca9cf9446 ChangeLog.jit
09538b708302f1735f6fa05b622ecf5e ChangeLog.tree-ssa
24ab760126489e69436a43185dc3d202 INSTALL/README
b54df9bfc2e7837cfdec727a84be4835 INSTALL/binaries.html
! b63e241073b84b5d32b49444e31aff03 INSTALL/build.html
! b4035e127c50228c04554163a8ce2050 INSTALL/configure.html
! 4c6f05e3fd1e1128d6f5beaf8437dbd6 INSTALL/download.html
21217d485bf1a98b9c76dcd01852340a INSTALL/finalinstall.html
9ad173ba846ae2495bc565c8e3b5c72b INSTALL/gfdl.html
9fedad0e9418880cf690e3171a61ab5b INSTALL/index.html
2c0f4834602472d41e202221f2973335 INSTALL/old.html
! 6350b4cdff096927810e010d2f0f88f3 INSTALL/prerequisites.html
1c03c2c7732f60e49c9f4fc500ad3089 INSTALL/specific.html
4f086007f929585b190278c5c2f7b43c INSTALL/test.html
! bd2baf84cacaec2aebd61e791bf1032b LAST_UPDATED
cd94bf363014d5234ce951236b2eff7e MAINTAINERS
babbf63ed4e6324c3ce3ec6ae4852ee2 Makefile.def
1317b9514961375f717373570309ad98 Makefile.in
1476c59b7fd3be8c21d1af1eb4ac036c Makefile.tpl
! 1fb8af26b5e05fe5e07e4068a16ee6f7 NEWS
80d26bc3b1ad4f6969a96a24c9181bf5 README
a657821f65bab77f4fbf3a75cdee6da9 ar-lib
500b9244caa7a7ab23ece1db37efa76d compile
--- 17,43 ----
fe60d87048567d4fe8c8a0ed2448bcc8 COPYING.RUNTIME
d32239bcb673463ab874e80d47fae504 COPYING3
6a6a8e020838b23406c81b19c1d46df6 COPYING3.LIB
! f63d09af5ec61572f096c18445ebdd6d ChangeLog
fd4ecdf5d672efe2b0e409aca9cf9446 ChangeLog.jit
09538b708302f1735f6fa05b622ecf5e ChangeLog.tree-ssa
24ab760126489e69436a43185dc3d202 INSTALL/README
b54df9bfc2e7837cfdec727a84be4835 INSTALL/binaries.html
! 9815185c5432adfdaf3fd21062c4940b INSTALL/build.html
! 137a40d9c7c794e6fc9cd477aa283f78 INSTALL/configure.html
! 019978d85be640aa573eff9f0288ee2d INSTALL/download.html
21217d485bf1a98b9c76dcd01852340a INSTALL/finalinstall.html
9ad173ba846ae2495bc565c8e3b5c72b INSTALL/gfdl.html
9fedad0e9418880cf690e3171a61ab5b INSTALL/index.html
2c0f4834602472d41e202221f2973335 INSTALL/old.html
! cb11a407f704c0bfbef64d17128cadd0 INSTALL/prerequisites.html
1c03c2c7732f60e49c9f4fc500ad3089 INSTALL/specific.html
4f086007f929585b190278c5c2f7b43c INSTALL/test.html
! 1d9738c6b0f4d236c5d893aca99c2ea3 LAST_UPDATED
cd94bf363014d5234ce951236b2eff7e MAINTAINERS
babbf63ed4e6324c3ce3ec6ae4852ee2 Makefile.def
1317b9514961375f717373570309ad98 Makefile.in
1476c59b7fd3be8c21d1af1eb4ac036c Makefile.tpl
! 67d4a908da8fc33478e15cba991d3fe8 NEWS
80d26bc3b1ad4f6969a96a24c9181bf5 README
a657821f65bab77f4fbf3a75cdee6da9 ar-lib
500b9244caa7a7ab23ece1db37efa76d compile
*************** a657821f65bab77f4fbf3a75cdee6da9 ar-lib
*** 45,51 ****
40b5681beb170241cdc60d00932a204f config.guess
040359150cf11493f973a46d8a25b06b config.rpath
028bb6041dfd0ac0e34915870eea93ec config.sub
! 27af02ccb3cf6dc4c917eee207f5f38f config/ChangeLog
0fcd4badfe2a2191778bdf5ab94aa40c config/acinclude.m4
2ea0edfde0ce5ce69b49317a5650f048 config/acx.m4
6b030f5cf640bdd401ea739f54a667f8 config/asmcfi.m4
--- 45,51 ----
40b5681beb170241cdc60d00932a204f config.guess
040359150cf11493f973a46d8a25b06b config.rpath
028bb6041dfd0ac0e34915870eea93ec config.sub
! 22284ec925ce4df611c8da798fcd58ef config/ChangeLog
0fcd4badfe2a2191778bdf5ab94aa40c config/acinclude.m4
2ea0edfde0ce5ce69b49317a5650f048 config/acx.m4
6b030f5cf640bdd401ea739f54a667f8 config/asmcfi.m4
*************** e2dc6b4fd62b77bff96b7951ef74f78f config
*** 141,147 ****
0163b672c888aaf1c8ad3e867a0ec9f1 config/zlib.m4
1b46e273e388b124e571ee18274eacd5 configure
59a1cf8c425ad9057efc236fa32eeafd configure.ac
! 71e9b3c0e7d234e8a100051d4b8907d0 contrib/ChangeLog
5fc435c7928f858246df931ea3f3ece7 contrib/ChangeLog.jit
7af8d2979bf1a7cfa88e30d05fa22be2 contrib/ChangeLog.tree-ssa
8498c0cdfe3f444ad6f540ec9e11cbec contrib/analyze_brprob.py
--- 141,147 ----
0163b672c888aaf1c8ad3e867a0ec9f1 config/zlib.m4
1b46e273e388b124e571ee18274eacd5 configure
59a1cf8c425ad9057efc236fa32eeafd configure.ac
! a24f2fb87e7ea8951e2ef97837d639c5 contrib/ChangeLog
5fc435c7928f858246df931ea3f3ece7 contrib/ChangeLog.jit
7af8d2979bf1a7cfa88e30d05fa22be2 contrib/ChangeLog.tree-ssa
8498c0cdfe3f444ad6f540ec9e11cbec contrib/analyze_brprob.py
*************** dfceb883caf21f3071f7309ee0ac8a6b contri
*** 176,182 ****
61ad7a180a7895f83d32ef7b15cb8386 contrib/gen_autofdo_event.py
7c9fd4d662ccbf417ccfbe1999d8ad71 contrib/gennews
59304fc08afa489baa6b920cc76dc625 contrib/gthr_supp_vxw_5x.c
! 000af0a885b5201ce12f416e57fddfb3 contrib/header-tools/ChangeLog
1ba821a1e480c2f8ac33b68ca1097770 contrib/header-tools/README
05ef7fb87e90ba93ee04659be072a357 contrib/header-tools/count-headers
ba0485a3c721bce9e32407ef996d2a9d contrib/header-tools/gcc-order-headers
--- 176,182 ----
61ad7a180a7895f83d32ef7b15cb8386 contrib/gen_autofdo_event.py
7c9fd4d662ccbf417ccfbe1999d8ad71 contrib/gennews
59304fc08afa489baa6b920cc76dc625 contrib/gthr_supp_vxw_5x.c
! 65f68f059e15ece1ade21cde5ab362f4 contrib/header-tools/ChangeLog
1ba821a1e480c2f8ac33b68ca1097770 contrib/header-tools/README
05ef7fb87e90ba93ee04659be072a357 contrib/header-tools/count-headers
ba0485a3c721bce9e32407ef996d2a9d contrib/header-tools/gcc-order-headers
*************** a34668cfad9dec733354503fbc67fb24 contri
*** 200,206 ****
87a19b40fbd220938cf6c23c42c255e2 contrib/prepare_patch.sh
a6f2829359f65be5c182fd414e30fe8a contrib/prerequisites.md5
663d159a25cdcd62d1182f124f0dae82 contrib/prerequisites.sha512
! 5a345b6f32dd9cc71ed01630b6cd458e contrib/reghunt/ChangeLog
cf247a580e49d212518de409793db0a8 contrib/reghunt/bin/gcc-build-full
724e70ea3e80f87f2a201bbe2f1eef37 contrib/reghunt/bin/gcc-build-simple
3f2318bae7562a4ad1639e686916a545 contrib/reghunt/bin/gcc-cleanup
--- 200,206 ----
87a19b40fbd220938cf6c23c42c255e2 contrib/prepare_patch.sh
a6f2829359f65be5c182fd414e30fe8a contrib/prerequisites.md5
663d159a25cdcd62d1182f124f0dae82 contrib/prerequisites.sha512
! 2157c0ec28f1398b28a4933a0ec9dd4d contrib/reghunt/ChangeLog
cf247a580e49d212518de409793db0a8 contrib/reghunt/bin/gcc-build-full
724e70ea3e80f87f2a201bbe2f1eef37 contrib/reghunt/bin/gcc-build-simple
3f2318bae7562a4ad1639e686916a545 contrib/reghunt/bin/gcc-cleanup
*************** f251d49dd87647250fcd74dd50b7835f contri
*** 259,265 ****
e2829fc4af4f433a6a328a62d5ce8066 contrib/reghunt/examples/reg-watch
afd863c2ec84c906e20f9b9787b1f0fe contrib/reghunt/examples/reg-watch.awk
8955535523d4b5f48006bcb851ba9b4b contrib/reghunt/examples/testall
! 359c8974e437ebad4aad3592039778ea contrib/regression/ChangeLog
30553bfced1b2b46bf7ca01ef6ba69d1 contrib/regression/GCC_Regression_Tester.wdgt/Default.png
ad38ddd771df222eb9d413e3c7f6a751 contrib/regression/GCC_Regression_Tester.wdgt/Icon.png
777bd286c147cc02861811f66b9a4440 contrib/regression/GCC_Regression_Tester.wdgt/Info.plist
--- 259,265 ----
e2829fc4af4f433a6a328a62d5ce8066 contrib/reghunt/examples/reg-watch
afd863c2ec84c906e20f9b9787b1f0fe contrib/reghunt/examples/reg-watch.awk
8955535523d4b5f48006bcb851ba9b4b contrib/reghunt/examples/testall
! ad28d983dfe1aa357977062b1e8b7e7d contrib/regression/ChangeLog
30553bfced1b2b46bf7ca01ef6ba69d1 contrib/regression/GCC_Regression_Tester.wdgt/Default.png
ad38ddd771df222eb9d413e3c7f6a751 contrib/regression/GCC_Regression_Tester.wdgt/Icon.png
777bd286c147cc02861811f66b9a4440 contrib/regression/GCC_Regression_Tester.wdgt/Info.plist
*************** dc562ddb86567c65e82953825713dc4b contri
*** 275,281 ****
7f6418948396f8250447e3e6182322d8 contrib/repro_fail
39442479834f1c02d6ce11eab6889b6e contrib/test_installed
2c2a06a23394c548bb4afba3c25aacce contrib/test_recheck
! d4cd6e25d218d26c1eb5aca9e7b82de3 contrib/test_summary
45bd745cf293127fa6b729c7b58cf11f contrib/testsuite-management/validate_failures.py
0202e4875fa43ec09cf5e8442c873a56 contrib/testsuite-management/x86_64-unknown-linux-gnu.xfail
2c5264fb1400a0a2408fd44a4e345fc6 contrib/texi2pod.pl
--- 275,281 ----
7f6418948396f8250447e3e6182322d8 contrib/repro_fail
39442479834f1c02d6ce11eab6889b6e contrib/test_installed
2c2a06a23394c548bb4afba3c25aacce contrib/test_recheck
! c650e776de65a2de80bbfb0033641805 contrib/test_summary
45bd745cf293127fa6b729c7b58cf11f contrib/testsuite-management/validate_failures.py
0202e4875fa43ec09cf5e8442c873a56 contrib/testsuite-management/x86_64-unknown-linux-gnu.xfail
2c5264fb1400a0a2408fd44a4e345fc6 contrib/texi2pod.pl
*************** a0d12be401961a2557883b7c09dc71eb contri
*** 290,296 ****
45d4839f2ac702761b88d502311d47ef contrib/vimrc
da7aeedeb5a86ee6f5982e559a2d6dcc contrib/warn_summary
8b59f0d0a2dcdced14765c514fbad719 depcomp
! 7ab487252e46180a082315acfed9e063 fixincludes/ChangeLog
6de190723745dc3f75080144dfa2215e fixincludes/Makefile.in
b6e3f4950abc6e254b467063381f6473 fixincludes/README
455903ad4ff71fa5c5340ef7ae41a0e6 fixincludes/README-fixinc
--- 290,296 ----
45d4839f2ac702761b88d502311d47ef contrib/vimrc
da7aeedeb5a86ee6f5982e559a2d6dcc contrib/warn_summary
8b59f0d0a2dcdced14765c514fbad719 depcomp
! 71ba78fda5ebbc15cacbb1f8622da862 fixincludes/ChangeLog
6de190723745dc3f75080144dfa2215e fixincludes/Makefile.in
b6e3f4950abc6e254b467063381f6473 fixincludes/README
455903ad4ff71fa5c5340ef7ae41a0e6 fixincludes/README-fixinc
*************** b6e3f4950abc6e254b467063381f6473 fixinc
*** 300,315 ****
f63405125ac9ed944ecf9c9bd1f24dff fixincludes/configure
a319a505bde6920ddb4832cf41af3488 fixincludes/configure.ac
541ba3a63f9359f14ac2b35151ba18db fixincludes/fixfixes.c
! 8a18294371ee69da33042b874d27b77e fixincludes/fixinc.in
1582ffd94ecc91318eebfb3b81e0bcb1 fixincludes/fixincl.c
adf245e3714f799eafba40af16be8eb5 fixincludes/fixincl.tpl
! e63f50442ad2c6b54fb1f69de77ca43f fixincludes/fixincl.x
545875b4fe1c26bc3e1befc75b34e9f5 fixincludes/fixlib.c
620c770139fc32c75b975b614d3156e8 fixincludes/fixlib.h
5b2c1fd3ef9d44fb6beb1a0d45ddd533 fixincludes/fixopts.c
ed1415e9dbc8f421fd9288bde0d90ad1 fixincludes/fixtests.c
51e915676df084b64297d3c4fb0d9c18 fixincludes/genfixes
! 47d6d0b39345e65972ef6cdcd7c7ab02 fixincludes/inclhack.def
44bfe955e0fad29af749b16cd12fa743 fixincludes/mkfixinc.sh
5f9960cfe65b2e6bef658f770e52dfef fixincludes/mkheaders.in
3aa0563cd682ee61ecd9eb6eea0b0bce fixincludes/procopen.c
--- 300,315 ----
f63405125ac9ed944ecf9c9bd1f24dff fixincludes/configure
a319a505bde6920ddb4832cf41af3488 fixincludes/configure.ac
541ba3a63f9359f14ac2b35151ba18db fixincludes/fixfixes.c
! a316c9d3351e61998fa688dceaf610a3 fixincludes/fixinc.in
1582ffd94ecc91318eebfb3b81e0bcb1 fixincludes/fixincl.c
adf245e3714f799eafba40af16be8eb5 fixincludes/fixincl.tpl
! c77eb58f00045a80c9395996587f2cd2 fixincludes/fixincl.x
545875b4fe1c26bc3e1befc75b34e9f5 fixincludes/fixlib.c
620c770139fc32c75b975b614d3156e8 fixincludes/fixlib.h
5b2c1fd3ef9d44fb6beb1a0d45ddd533 fixincludes/fixopts.c
ed1415e9dbc8f421fd9288bde0d90ad1 fixincludes/fixtests.c
51e915676df084b64297d3c4fb0d9c18 fixincludes/genfixes
! b8f73d77126efa8ac3d8f3a33dbbd28c fixincludes/inclhack.def
44bfe955e0fad29af749b16cd12fa743 fixincludes/mkfixinc.sh
5f9960cfe65b2e6bef658f770e52dfef fixincludes/mkheaders.in
3aa0563cd682ee61ecd9eb6eea0b0bce fixincludes/procopen.c
*************** f1160d24e4253643c441ba3a4b227e43 fixinc
*** 346,352 ****
7e364ced80dd56f237390965aa7f15d0 fixincludes/tests/base/hsfs/hsfs_spec.h
53be8accb111b5d7b7323bbfc52ed91f fixincludes/tests/base/i386/setjmp.h
bfb58e3983fc133c965e434e57aed732 fixincludes/tests/base/ia64/sys/getppdp.h
! 498c99de6daa94738d83e68ec4e0a295 fixincludes/tests/base/inttypes.h
833e9408a49784184bee7981d665c911 fixincludes/tests/base/io-quotes-def-1.h
a1c808325bd0d74c2f465bf54db680e2 fixincludes/tests/base/ioLib.h
c8dd71b57c3a35b0c6760f7d38af6f42 fixincludes/tests/base/iso/math_c99.h
--- 346,352 ----
7e364ced80dd56f237390965aa7f15d0 fixincludes/tests/base/hsfs/hsfs_spec.h
53be8accb111b5d7b7323bbfc52ed91f fixincludes/tests/base/i386/setjmp.h
bfb58e3983fc133c965e434e57aed732 fixincludes/tests/base/ia64/sys/getppdp.h
! 4a2008b1ee18a83a9c19d7bdc9c7f960 fixincludes/tests/base/inttypes.h
833e9408a49784184bee7981d665c911 fixincludes/tests/base/io-quotes-def-1.h
a1c808325bd0d74c2f465bf54db680e2 fixincludes/tests/base/ioLib.h
c8dd71b57c3a35b0c6760f7d38af6f42 fixincludes/tests/base/iso/math_c99.h
*************** a911f5fbb127353024e77149fcf90596 fixinc
*** 366,371 ****
--- 366,372 ----
f690db296a82aeefa0bfe9ad74a2b71c fixincludes/tests/base/netinet/in.h
2649ccca3396541aeb5e612d4b4a3141 fixincludes/tests/base/netinet/ip.h
f4a72388e98f34c098a3467dce9aa4e1 fixincludes/tests/base/obstack.h
+ c213736f179d8de08a09a9278e048d91 fixincludes/tests/base/os/availability.h
c3da2b1720112f2adb1c2bbf65563364 fixincludes/tests/base/os/base.h
294cd5d0b36b2fc66737cc43cd46ed69 fixincludes/tests/base/os/trace.h
c24d1be3b5afd871e9f78e1a67b9cb82 fixincludes/tests/base/pixrect/memvar.h
*************** a5e817d35ded04a0fb03999b50c0e89e fixinc
*** 429,440 ****
955462b555900ecd3934223c64e21fa7 fixincludes/tests/base/types/vxTypesBase.h
8baab8698bb83c6b90ef4091c00ddc1e fixincludes/tests/base/unistd.h
3be7c8842fbf2eb29a7d358eff03f38e gcc/ABOUT-GCC-NLS
! 1b498650ce711fc8c8e934c6f2de5b55 gcc/BASE-VER
59530bdf33659b29e73d4adb9f9f6552 gcc/COPYING
a916467b91076e631dd8edb7424769c7 gcc/COPYING.LIB
d32239bcb673463ab874e80d47fae504 gcc/COPYING3
6a6a8e020838b23406c81b19c1d46df6 gcc/COPYING3.LIB
! 23ab445ab2703a6ebe80269a501e3809 gcc/ChangeLog
a3b63c675afa7a655cc2bfa8a907af79 gcc/ChangeLog-1997
d9a88529352a010253c2e8fb1ed6023b gcc/ChangeLog-1998
240f08f81cb4699e8b49347db38233db gcc/ChangeLog-1999
--- 430,441 ----
955462b555900ecd3934223c64e21fa7 fixincludes/tests/base/types/vxTypesBase.h
8baab8698bb83c6b90ef4091c00ddc1e fixincludes/tests/base/unistd.h
3be7c8842fbf2eb29a7d358eff03f38e gcc/ABOUT-GCC-NLS
! d168f1842ecabdb62e85fd01fb8a7457 gcc/BASE-VER
59530bdf33659b29e73d4adb9f9f6552 gcc/COPYING
a916467b91076e631dd8edb7424769c7 gcc/COPYING.LIB
d32239bcb673463ab874e80d47fae504 gcc/COPYING3
6a6a8e020838b23406c81b19c1d46df6 gcc/COPYING3.LIB
! 26c97d703d581c838cd2f311d49cd797 gcc/ChangeLog
a3b63c675afa7a655cc2bfa8a907af79 gcc/ChangeLog-1997
d9a88529352a010253c2e8fb1ed6023b gcc/ChangeLog-1998
240f08f81cb4699e8b49347db38233db gcc/ChangeLog-1999
*************** fb3fadb88e1d2b3b640cfaaa5ff11780 gcc/Ch
*** 465,482 ****
3eb07e0b2e542409bf73d359f7f65609 gcc/ChangeLog.ptr
e13638e26743ba41e6011b76cc00d9a9 gcc/ChangeLog.tree-ssa
739ab47f6425bcea1d05e4fc0542de54 gcc/ChangeLog.tuples
! c92cd359ce6bbf668baf74e5ee1c7cfa gcc/DATESTAMP
d41d8cd98f00b204e9800998ecf8427e gcc/DEV-PHASE
eb92e1ff5e982ca07e173e0eb286d243 gcc/FSFChangeLog
30e1e33411566388b3164558482dc5e6 gcc/FSFChangeLog.10
36698274bb69e2ada20f5cc434f3caa5 gcc/FSFChangeLog.11
3acf268f965e22d24dcc4d433aa2fb28 gcc/LANGUAGES
! b13e5121b664e143abd3d5830bbf0695 gcc/Makefile.in
ec6799501b2eb2923d5de6a66169dbd2 gcc/ONEWS
cdb4caed52ded231a4df6087fa0976bd gcc/README.Portability
69898786da1fa78de919ea62c6931b36 gcc/acinclude.m4
6879fc308101ea4a52d17fb89e463ec2 gcc/aclocal.m4
! 7fc8d564ad7cd243a297dc6b70b41924 gcc/ada/ChangeLog
683be0b07dc4f64f118fd5e8ae9cb30d gcc/ada/ChangeLog-2001
7aff25efb203be4136b8776cdc812956 gcc/ada/ChangeLog-2002
cd2379152000f40157d349018fb9364d gcc/ada/ChangeLog-2003
--- 466,483 ----
3eb07e0b2e542409bf73d359f7f65609 gcc/ChangeLog.ptr
e13638e26743ba41e6011b76cc00d9a9 gcc/ChangeLog.tree-ssa
739ab47f6425bcea1d05e4fc0542de54 gcc/ChangeLog.tuples
! c662b311f4c2a7200cb790bde5cbf083 gcc/DATESTAMP
d41d8cd98f00b204e9800998ecf8427e gcc/DEV-PHASE
eb92e1ff5e982ca07e173e0eb286d243 gcc/FSFChangeLog
30e1e33411566388b3164558482dc5e6 gcc/FSFChangeLog.10
36698274bb69e2ada20f5cc434f3caa5 gcc/FSFChangeLog.11
3acf268f965e22d24dcc4d433aa2fb28 gcc/LANGUAGES
! 45852d1c2a323f19e593c7e93813a4a3 gcc/Makefile.in
ec6799501b2eb2923d5de6a66169dbd2 gcc/ONEWS
cdb4caed52ded231a4df6087fa0976bd gcc/README.Portability
69898786da1fa78de919ea62c6931b36 gcc/acinclude.m4
6879fc308101ea4a52d17fb89e463ec2 gcc/aclocal.m4
! 16ae6c18008e5a9490967e8df39f99ec gcc/ada/ChangeLog
683be0b07dc4f64f118fd5e8ae9cb30d gcc/ada/ChangeLog-2001
7aff25efb203be4136b8776cdc812956 gcc/ada/ChangeLog-2002
cd2379152000f40157d349018fb9364d gcc/ada/ChangeLog-2003
*************** df4fc315733699c07babaf1010a15b40 gcc/ad
*** 620,626 ****
59abfd3b0ff64f189c43a6586c5c42df gcc/ada/exp_aggr.ads
cb884e0943744d5f300c5c3e4119e4cb gcc/ada/exp_atag.adb
05346332ddf8203a76170e8cbe63e4e2 gcc/ada/exp_atag.ads
! a3c0ca42e6d5e76f0db97ed9f857835b gcc/ada/exp_attr.adb
17fdf392064e44ad852381d1d41aabcc gcc/ada/exp_attr.ads
a9c3b0fb5db9737fc7c4d49ce445ef5c gcc/ada/exp_cg.adb
4a26b881a8e33991c84ac37755e194e7 gcc/ada/exp_cg.ads
--- 621,627 ----
59abfd3b0ff64f189c43a6586c5c42df gcc/ada/exp_aggr.ads
cb884e0943744d5f300c5c3e4119e4cb gcc/ada/exp_atag.adb
05346332ddf8203a76170e8cbe63e4e2 gcc/ada/exp_atag.ads
! 86a10a6fa643f029d383c57a261388de gcc/ada/exp_attr.adb
17fdf392064e44ad852381d1d41aabcc gcc/ada/exp_attr.ads
a9c3b0fb5db9737fc7c4d49ce445ef5c gcc/ada/exp_cg.adb
4a26b881a8e33991c84ac37755e194e7 gcc/ada/exp_cg.ads
*************** b27fc7fb18dc63c58abb345c1c35e82d gcc/ad
*** 681,687 ****
14e6327768906baf6c2d8a45c8d24bce gcc/ada/exp_util.ads
38a61e6daec3249c850989219db4b822 gcc/ada/expander.adb
d0ef0a98c8e17e5c08c7e7d4156c4785 gcc/ada/expander.ads
! 1dbef36c67933d04aa87c4bd220b20ea gcc/ada/expect.c
1a7e21e7282a69202f8b7d069d7b3e32 gcc/ada/fe.h
4fa780949974d74bc9ac4ae0912325ed gcc/ada/final.c
4b65b9f0b0e00a25903e15240e19932e gcc/ada/fmap.adb
--- 682,688 ----
14e6327768906baf6c2d8a45c8d24bce gcc/ada/exp_util.ads
38a61e6daec3249c850989219db4b822 gcc/ada/expander.adb
d0ef0a98c8e17e5c08c7e7d4156c4785 gcc/ada/expander.ads
! 3baeaacfb70f043c8753571d397655d0 gcc/ada/expect.c
1a7e21e7282a69202f8b7d069d7b3e32 gcc/ada/fe.h
4fa780949974d74bc9ac4ae0912325ed gcc/ada/final.c
4b65b9f0b0e00a25903e15240e19932e gcc/ada/fmap.adb
*************** ddfb37d91a2c83b4ddf4397a881f164c gcc/ad
*** 703,716 ****
51c95420b5900990141d2e5705582197 gcc/ada/gcc-interface/ada.h
2962facaf5b9ac376e7335599112a520 gcc/ada/gcc-interface/config-lang.in
786d39e3fbc38a2dc96917857f9a69ef gcc/ada/gcc-interface/cuintp.c
! 29e20ae4b99d0133ce3da9362e8b6cb0 gcc/ada/gcc-interface/decl.c
c413d4d50e9563859f4d751a4404b705 gcc/ada/gcc-interface/gadaint.h
a97632613b5695725b0e3e72e2447f2e gcc/ada/gcc-interface/gigi.h
145be77c79143445142d7570f0853077 gcc/ada/gcc-interface/lang-specs.h
249eff219f209bb778db640b71035f86 gcc/ada/gcc-interface/lang.opt
32fb77d8eb5942c00f07c79e589e82c9 gcc/ada/gcc-interface/misc.c
56f626f9ee32eba8c2d478af39425ad5 gcc/ada/gcc-interface/targtyps.c
! e33e9258ed8a353d1929a3cf268bb623 gcc/ada/gcc-interface/trans.c
cf95cc670cc68bb4fa60debfdfbcd3bd gcc/ada/gcc-interface/utils.c
0e98c3f541bd20833a44c42d83ab1cc7 gcc/ada/gcc-interface/utils2.c
fee4442db76b93565815e3b01fe99313 gcc/ada/get_scos.adb
--- 704,717 ----
51c95420b5900990141d2e5705582197 gcc/ada/gcc-interface/ada.h
2962facaf5b9ac376e7335599112a520 gcc/ada/gcc-interface/config-lang.in
786d39e3fbc38a2dc96917857f9a69ef gcc/ada/gcc-interface/cuintp.c
! 011d218c041b29526dc8f19bdfa4c6e7 gcc/ada/gcc-interface/decl.c
c413d4d50e9563859f4d751a4404b705 gcc/ada/gcc-interface/gadaint.h
a97632613b5695725b0e3e72e2447f2e gcc/ada/gcc-interface/gigi.h
145be77c79143445142d7570f0853077 gcc/ada/gcc-interface/lang-specs.h
249eff219f209bb778db640b71035f86 gcc/ada/gcc-interface/lang.opt
32fb77d8eb5942c00f07c79e589e82c9 gcc/ada/gcc-interface/misc.c
56f626f9ee32eba8c2d478af39425ad5 gcc/ada/gcc-interface/targtyps.c
! 5fa7dd6a52e8f03b2c6f813dcc324c69 gcc/ada/gcc-interface/trans.c
cf95cc670cc68bb4fa60debfdfbcd3bd gcc/ada/gcc-interface/utils.c
0e98c3f541bd20833a44c42d83ab1cc7 gcc/ada/gcc-interface/utils2.c
fee4442db76b93565815e3b01fe99313 gcc/ada/get_scos.adb
*************** b8b0f9c3471d18ee5ac33521fe6f6d31 gcc/ad
*** 2335,2341 ****
8fd35713740067b6f3127c9bec70ef2e gcc/ada/link.c
fd1c9e241f5bf1bb5655c69153b41133 gcc/ada/live.adb
2ca01c3bc1753caf04cead42adf61dd5 gcc/ada/live.ads
! f3136d6d9793ea359f7f447f97c684c7 gcc/ada/locales.c
d5fb038e1bece33829101f5100efb7e4 gcc/ada/make.adb
c258892952d80d97ea618936a32b954d gcc/ada/make.ads
68eba17920b77908765320be2dc670e6 gcc/ada/make_util.adb
--- 2336,2342 ----
8fd35713740067b6f3127c9bec70ef2e gcc/ada/link.c
fd1c9e241f5bf1bb5655c69153b41133 gcc/ada/live.adb
2ca01c3bc1753caf04cead42adf61dd5 gcc/ada/live.ads
! 2842f4ea8d238b2690181c6f4028426c gcc/ada/locales.c
d5fb038e1bece33829101f5100efb7e4 gcc/ada/make.adb
c258892952d80d97ea618936a32b954d gcc/ada/make.ads
68eba17920b77908765320be2dc670e6 gcc/ada/make_util.adb
*************** d800d07fcc38b2c1d8877ddefe7ad9e6 gcc/ad
*** 2465,2471 ****
bae8233f73919996f85505d2b1f81f30 gcc/ada/sem_ch6.ads
fc840088036165e502272c865950328d gcc/ada/sem_ch7.adb
6640abc1e85fd2f51cb0e46d799d54cb gcc/ada/sem_ch7.ads
! d9bd3c1abdb988a4c61bc11d0ef6382d gcc/ada/sem_ch8.adb
315b4d0642c74feb3e4a37dbf20d9efd gcc/ada/sem_ch8.ads
61764181225c232c53f5fa56b701222a gcc/ada/sem_ch9.adb
c825ba457685094a8dcd5a6a443295de gcc/ada/sem_ch9.ads
--- 2466,2472 ----
bae8233f73919996f85505d2b1f81f30 gcc/ada/sem_ch6.ads
fc840088036165e502272c865950328d gcc/ada/sem_ch7.adb
6640abc1e85fd2f51cb0e46d799d54cb gcc/ada/sem_ch7.ads
! fb37d639ea06e8a542684ef9a021ad35 gcc/ada/sem_ch8.adb
315b4d0642c74feb3e4a37dbf20d9efd gcc/ada/sem_ch8.ads
61764181225c232c53f5fa56b701222a gcc/ada/sem_ch9.adb
c825ba457685094a8dcd5a6a443295de gcc/ada/sem_ch9.ads
*************** cb2ad8b6db799a49cc48bc471a75aff9 gcc/ad
*** 2475,2481 ****
d87c8185efb466dbbfbc67f54f240c86 gcc/ada/sem_disp.ads
959b218579b2e64397636ecaceacdaf1 gcc/ada/sem_dist.adb
f788ea8d5f0f2470516a642b75557874 gcc/ada/sem_dist.ads
! 501ef196a229762818c6a099f5cf84d5 gcc/ada/sem_elab.adb
2220e7d5382472918d7e034d0779264e gcc/ada/sem_elab.ads
66478f248313a6353438068d57855a4e gcc/ada/sem_elim.adb
d7157c9afd35ef3281a9dfcd1bac623e gcc/ada/sem_elim.ads
--- 2476,2482 ----
d87c8185efb466dbbfbc67f54f240c86 gcc/ada/sem_disp.ads
959b218579b2e64397636ecaceacdaf1 gcc/ada/sem_dist.adb
f788ea8d5f0f2470516a642b75557874 gcc/ada/sem_dist.ads
! d18f35a484ec540cc2c8f00d988dc14d gcc/ada/sem_elab.adb
2220e7d5382472918d7e034d0779264e gcc/ada/sem_elab.ads
66478f248313a6353438068d57855a4e gcc/ada/sem_elim.adb
d7157c9afd35ef3281a9dfcd1bac623e gcc/ada/sem_elim.ads
*************** e5ab761e522c49025dfb606f056c8183 gcc/ad
*** 2493,2504 ****
8bb437f214990c486a66a1fb3aa04ef0 gcc/ada/sem_scil.ads
eec98dd7bf03522618e7b69e3cf21789 gcc/ada/sem_smem.adb
9f6d8d4450511a08bdce1cca16d90922 gcc/ada/sem_smem.ads
! ff9d7ad100b6119f6c59b51b98fcd0cc gcc/ada/sem_spark.adb
0d1c73b923f8aff47436c82f78c383cb gcc/ada/sem_spark.ads
b6afebd48c265930ef17ad2516659017 gcc/ada/sem_type.adb
f43911d13a9704b2643355d02f15c611 gcc/ada/sem_type.ads
! 87661492b160a5db27d0475c87fd5ac1 gcc/ada/sem_util.adb
! aeca6aaa72752b60bb2bb7cfe7ab24ed gcc/ada/sem_util.ads
ba643f20ce589877d9af5aec1dc718ef gcc/ada/sem_warn.adb
b2a2e814a7d7c70b55e471dce65b8760 gcc/ada/sem_warn.ads
b93776be04e6890ae57000449eec5e92 gcc/ada/set_targ.adb
--- 2494,2505 ----
8bb437f214990c486a66a1fb3aa04ef0 gcc/ada/sem_scil.ads
eec98dd7bf03522618e7b69e3cf21789 gcc/ada/sem_smem.adb
9f6d8d4450511a08bdce1cca16d90922 gcc/ada/sem_smem.ads
! 8199bf064adee6e3444ff24bf958a7a2 gcc/ada/sem_spark.adb
0d1c73b923f8aff47436c82f78c383cb gcc/ada/sem_spark.ads
b6afebd48c265930ef17ad2516659017 gcc/ada/sem_type.adb
f43911d13a9704b2643355d02f15c611 gcc/ada/sem_type.ads
! 0b485ea92ce23bef806d4455e17804d4 gcc/ada/sem_util.adb
! dd9b48fde89b390af32d68510b004a12 gcc/ada/sem_util.ads
ba643f20ce589877d9af5aec1dc718ef gcc/ada/sem_warn.adb
b2a2e814a7d7c70b55e471dce65b8760 gcc/ada/sem_warn.ads
b93776be04e6890ae57000449eec5e92 gcc/ada/set_targ.adb
*************** efebe7f5d522403a33b850a24dd9cd07 gcc/ad
*** 2616,2622 ****
a6b6cc6fb2c8e1208fd31f2f607a1a77 gcc/ada/xutil.adb
33170889e5f8d6d706c9860cc6182beb gcc/ada/xutil.ads
bdf98fed4b1caf482ba73539059a70c8 gcc/addresses.h
! 41a833681ce49bb8ad1ad2e7d0aad2f6 gcc/alias.c
af06312a4680a8f5516a66c65553d484 gcc/alias.h
97e1d797af1c39d9c32c92a073df5a18 gcc/align.h
9c97bcef669ff02c38ee00291aa421ee gcc/alloc-pool.c
--- 2617,2623 ----
a6b6cc6fb2c8e1208fd31f2f607a1a77 gcc/ada/xutil.adb
33170889e5f8d6d706c9860cc6182beb gcc/ada/xutil.ads
bdf98fed4b1caf482ba73539059a70c8 gcc/addresses.h
! e46b7f87e17fcfbe324f020a0ed566a1 gcc/alias.c
af06312a4680a8f5516a66c65553d484 gcc/alias.h
97e1d797af1c39d9c32c92a073df5a18 gcc/align.h
9c97bcef669ff02c38ee00291aa421ee gcc/alloc-pool.c
*************** b6512b8f9058087096a75a01c9231b24 gcc/ba
*** 2635,2641 ****
431ffeecfc23fc1fd9d4b77938aaa312 gcc/bitmap.c
8a72f59525595f4c2d176dcedacfc0fe gcc/bitmap.h
ac2bb9f75aabb5a7d1baacccdc6802f5 gcc/brig-builtins.def
! b11f486a422e2cf9146635874849a783 gcc/brig/ChangeLog
2799840acb52803753cc46e8eb539f02 gcc/brig/Make-lang.in
df5d7cac8308be6fbc924b83e784c28d gcc/brig/brig-builtins.h
648c2cdf588c01a32dc637b2e1470b51 gcc/brig/brig-c.h
--- 2636,2642 ----
431ffeecfc23fc1fd9d4b77938aaa312 gcc/bitmap.c
8a72f59525595f4c2d176dcedacfc0fe gcc/bitmap.h
ac2bb9f75aabb5a7d1baacccdc6802f5 gcc/brig-builtins.def
! b81af3c7e698822c306321c12654b6ba gcc/brig/ChangeLog
2799840acb52803753cc46e8eb539f02 gcc/brig/Make-lang.in
df5d7cac8308be6fbc924b83e784c28d gcc/brig/brig-builtins.h
648c2cdf588c01a32dc637b2e1470b51 gcc/brig/brig-c.h
*************** f156fc460a35ae6ee619d5361c188ad5 gcc/br
*** 2679,2705 ****
885cb22e704808bec1c6f34bbb733ac3 gcc/bt-load.c
ccb5e83fa9be6f84b76daed24fb54d20 gcc/builtin-attrs.def
dab194419671867a024b4ce5bc4f218d gcc/builtin-types.def
! 52cb0a29dbc1cb92a22d9453f1398367 gcc/builtins.c
9fbe28b28c50967744c1634709a3875f gcc/builtins.def
! d4c0e64d63c0264060082687a14e0f61 gcc/builtins.h
! 30532a7c91d93ceb2b00be5ab9f95c6a gcc/c-family/ChangeLog
ea3fa1f4d7390a105fa3caab4f79aaf7 gcc/c-family/ChangeLog.gimple-classes
! 93496fb10cb7c1d3ba6735b8b573cf0d gcc/c-family/c-ada-spec.c
6e16aaf2dba3ab401dacab78a702fb68 gcc/c-family/c-ada-spec.h
! 605bf2fa58673dc7cb7c123ed23ac806 gcc/c-family/c-attribs.c
55c9394548af6c0c6fa800325f7f3ccf gcc/c-family/c-common.c
799db5073f5196fe7a62aaccceca374f gcc/c-family/c-common.def
! 40739b54640d5ab4583d9850d4493849 gcc/c-family/c-common.h
536364844b73784722b7930e788d22f3 gcc/c-family/c-cppbuiltin.c
237c08e2128b1a09a025851af3abd6ed gcc/c-family/c-dump.c
! add8bf9ddb66a53f76024a7f5f97f5ea gcc/c-family/c-format.c
4873be4338f0f425c64066b19f76645f gcc/c-family/c-format.h
9af8ccfecc585f721f492082f479d617 gcc/c-family/c-gimplify.c
177dc34bc751b73d3e783ba62f193936 gcc/c-family/c-indentation.c
9faa45d960f8aa84b4aeb5e45185f2bd gcc/c-family/c-indentation.h
! 0f6d01f0ca3f438d7e4dec5000b6dcac gcc/c-family/c-lex.c
7f146cedb1c97307754dd4bfcfe9478a gcc/c-family/c-objc.h
! 45aae5d5d21d0ade6e934f6f97072e7c gcc/c-family/c-omp.c
d295e50a31823c9af918cdd3414489de gcc/c-family/c-opts.c
8a8c085479dcc5c4a071bac6363b632c gcc/c-family/c-pch.c
e9957bbe8ab82a16462be3363e6ea8d7 gcc/c-family/c-ppoutput.c
--- 2680,2706 ----
885cb22e704808bec1c6f34bbb733ac3 gcc/bt-load.c
ccb5e83fa9be6f84b76daed24fb54d20 gcc/builtin-attrs.def
dab194419671867a024b4ce5bc4f218d gcc/builtin-types.def
! 26ac1198e8f865e1b78df3da6f5e00ce gcc/builtins.c
9fbe28b28c50967744c1634709a3875f gcc/builtins.def
! 1f87ccbf352aa59dd341d464a2d1048d gcc/builtins.h
! 02925db51dca3a4dbe586ce57da785e1 gcc/c-family/ChangeLog
ea3fa1f4d7390a105fa3caab4f79aaf7 gcc/c-family/ChangeLog.gimple-classes
! d03318328afefb1e63fa52b33e77fe41 gcc/c-family/c-ada-spec.c
6e16aaf2dba3ab401dacab78a702fb68 gcc/c-family/c-ada-spec.h
! 5f372cd48d63ea7876de0487f30cf552 gcc/c-family/c-attribs.c
55c9394548af6c0c6fa800325f7f3ccf gcc/c-family/c-common.c
799db5073f5196fe7a62aaccceca374f gcc/c-family/c-common.def
! e0faa972cc17549acc84c46d1e1f6c64 gcc/c-family/c-common.h
536364844b73784722b7930e788d22f3 gcc/c-family/c-cppbuiltin.c
237c08e2128b1a09a025851af3abd6ed gcc/c-family/c-dump.c
! 8af256dc570bc06ca5f657394380f8bc gcc/c-family/c-format.c
4873be4338f0f425c64066b19f76645f gcc/c-family/c-format.h
9af8ccfecc585f721f492082f479d617 gcc/c-family/c-gimplify.c
177dc34bc751b73d3e783ba62f193936 gcc/c-family/c-indentation.c
9faa45d960f8aa84b4aeb5e45185f2bd gcc/c-family/c-indentation.h
! b1c435278fe8846e626cdbea827004cc gcc/c-family/c-lex.c
7f146cedb1c97307754dd4bfcfe9478a gcc/c-family/c-objc.h
! 230fa0b76cdfac85c6a4d7e112703dd6 gcc/c-family/c-omp.c
d295e50a31823c9af918cdd3414489de gcc/c-family/c-opts.c
8a8c085479dcc5c4a071bac6363b632c gcc/c-family/c-pch.c
e9957bbe8ab82a16462be3363e6ea8d7 gcc/c-family/c-ppoutput.c
*************** b7b21859ce3d8cc930d96c02039426ef gcc/c-
*** 2715,2748 ****
7bd5beb814c1acbd24a164bfd7b19e9b gcc/c-family/c-target.h
ad9da752fb4ea30cdf67bf066aff69d5 gcc/c-family/c-ubsan.c
711d982d10f080c7045ecb3c2467adeb gcc/c-family/c-ubsan.h
! 2b5e4e7cc927404207b76da72d51c23b gcc/c-family/c-warn.c
3703fbdadc41ffb57a4ebab41b986168 gcc/c-family/c.opt
17541db9119abf6fdbc75356872eb74d gcc/c-family/cppspec.c
aa8b8c0c92776ef568d28cc0be2c118b gcc/c-family/known-headers.cc
1d8729bfb5168940f094c5467d23d18a gcc/c-family/known-headers.h
95d7888b5c91642be153950ead0fe53f gcc/c-family/name-hint.h
486e4e0fe16c4735aa71549fe44e45a4 gcc/c-family/stub-objc.c
! de03028a14ae078369a8cf9a8fef9392 gcc/c/ChangeLog
e2986e827d75732d76f60a2f440aea90 gcc/c/Make-lang.in
1052580fc1a5dcf61f5187778cce9e9e gcc/c/c-aux-info.c
a6e915d6595e5ce0c6e06196129c5675 gcc/c/c-convert.c
! 57e4e1beabff329a135195a0ef7721ad gcc/c/c-decl.c
b95cf4e938fc7503cfcd938fde042586 gcc/c/c-errors.c
573795d93ab1c97cf49af46e3c6aa098 gcc/c/c-fold.c
84e874f6c1c4c67f302338fd3e542121 gcc/c/c-lang.c
a50b72cffed5275f6c6a1914bc7b7720 gcc/c/c-lang.h
cbbffcf99ee522116b4b2fc498a9956d gcc/c/c-objc-common.c
60515079d4f1f61748b3bd5c040abcc8 gcc/c/c-objc-common.h
! 6d369d006f65234dced93673fc4d6ccf gcc/c/c-parser.c
de7fdf850c2558fedc7d6b64ecc3882c gcc/c/c-parser.h
447a07f41ef147bc9a7d003b989fd8bb gcc/c/c-tree.h
! daece10f7f0e6200e9c0381b2bd177ea gcc/c/c-typeck.c
e0482ef46be955f4e64ba697cc2b8342 gcc/c/config-lang.in
e43f502e14e5a147faaa60e6f382c67e gcc/c/gccspec.c
865df96f45f670f8daa2ed245fc8f64d gcc/c/gimple-parser.c
9f4bd54edc73763195673ac2b1682941 gcc/c/gimple-parser.h
57e7922af2f14669435483a4755927b7 gcc/caller-save.c
! f7eee29ad11ab7dbe01e8de005a66510 gcc/calls.c
eff202a658a884feaf3dea6d8628123d gcc/calls.h
001043a9e182f9cf10009b4d3430dd06 gcc/ccmp.c
bf3a66c3cab2b1ca9cb7d52392aa5005 gcc/ccmp.h
--- 2716,2749 ----
7bd5beb814c1acbd24a164bfd7b19e9b gcc/c-family/c-target.h
ad9da752fb4ea30cdf67bf066aff69d5 gcc/c-family/c-ubsan.c
711d982d10f080c7045ecb3c2467adeb gcc/c-family/c-ubsan.h
! 814c7390423e70cb866bacf8fe041dbe gcc/c-family/c-warn.c
3703fbdadc41ffb57a4ebab41b986168 gcc/c-family/c.opt
17541db9119abf6fdbc75356872eb74d gcc/c-family/cppspec.c
aa8b8c0c92776ef568d28cc0be2c118b gcc/c-family/known-headers.cc
1d8729bfb5168940f094c5467d23d18a gcc/c-family/known-headers.h
95d7888b5c91642be153950ead0fe53f gcc/c-family/name-hint.h
486e4e0fe16c4735aa71549fe44e45a4 gcc/c-family/stub-objc.c
! 36dfbc520bf81b073594b37c5983c215 gcc/c/ChangeLog
e2986e827d75732d76f60a2f440aea90 gcc/c/Make-lang.in
1052580fc1a5dcf61f5187778cce9e9e gcc/c/c-aux-info.c
a6e915d6595e5ce0c6e06196129c5675 gcc/c/c-convert.c
! adad66add1c5765b4bf4bfff0a28436a gcc/c/c-decl.c
b95cf4e938fc7503cfcd938fde042586 gcc/c/c-errors.c
573795d93ab1c97cf49af46e3c6aa098 gcc/c/c-fold.c
84e874f6c1c4c67f302338fd3e542121 gcc/c/c-lang.c
a50b72cffed5275f6c6a1914bc7b7720 gcc/c/c-lang.h
cbbffcf99ee522116b4b2fc498a9956d gcc/c/c-objc-common.c
60515079d4f1f61748b3bd5c040abcc8 gcc/c/c-objc-common.h
! 7f691a864d2e4f293c07776e4f435523 gcc/c/c-parser.c
de7fdf850c2558fedc7d6b64ecc3882c gcc/c/c-parser.h
447a07f41ef147bc9a7d003b989fd8bb gcc/c/c-tree.h
! 6d4dc433da12c590ef998348525056c9 gcc/c/c-typeck.c
e0482ef46be955f4e64ba697cc2b8342 gcc/c/config-lang.in
e43f502e14e5a147faaa60e6f382c67e gcc/c/gccspec.c
865df96f45f670f8daa2ed245fc8f64d gcc/c/gimple-parser.c
9f4bd54edc73763195673ac2b1682941 gcc/c/gimple-parser.h
57e7922af2f14669435483a4755927b7 gcc/caller-save.c
! 880330078325db42d0e941c2f2e70a23 gcc/calls.c
eff202a658a884feaf3dea6d8628123d gcc/calls.h
001043a9e182f9cf10009b4d3430dd06 gcc/ccmp.c
bf3a66c3cab2b1ca9cb7d52392aa5005 gcc/ccmp.h
*************** bf3a66c3cab2b1ca9cb7d52392aa5005 gcc/cc
*** 2753,2759 ****
dc7a53afb0222a05a0d519157123fcbf gcc/cfganal.h
1c4d111f7b541b317268afd73e47626a gcc/cfgbuild.c
e6f59cc79aa2c1bdb16a88e352b6886f gcc/cfgbuild.h
! 0633f29598e0f557b7de3457e9268f7e gcc/cfgcleanup.c
f4692b770621730591573a07c4d95fb3 gcc/cfgcleanup.h
43f8baa0a538a92e1e6d6dfaac3e89eb gcc/cfgexpand.c
fe629b59c6e094d5d8a88ee7ba383257 gcc/cfgexpand.h
--- 2754,2760 ----
dc7a53afb0222a05a0d519157123fcbf gcc/cfganal.h
1c4d111f7b541b317268afd73e47626a gcc/cfgbuild.c
e6f59cc79aa2c1bdb16a88e352b6886f gcc/cfgbuild.h
! 3e135eeee929a5bc5aa18f47a0b94544 gcc/cfgcleanup.c
f4692b770621730591573a07c4d95fb3 gcc/cfgcleanup.h
43f8baa0a538a92e1e6d6dfaac3e89eb gcc/cfgexpand.c
fe629b59c6e094d5d8a88ee7ba383257 gcc/cfgexpand.h
*************** d0212d2f39c97e91b55bb8048871b875 gcc/cf
*** 2766,2772 ****
05d761d9a2fc9947b911169bb7cd205c gcc/cfgloopmanip.h
c3b866bd1d8fd06efa3e0f1b7877efc8 gcc/cfgrtl.c
bccd993b0524c368bad380e50210af12 gcc/cfgrtl.h
! 14ce6d093c72ab3aaeb85ea01211d616 gcc/cgraph.c
1efd36e9433bdebdd9e6def2769af746 gcc/cgraph.h
5ab10412c44ddfb5b0f25ca8ea3a0202 gcc/cgraphbuild.c
7a74bbacbd55adadc590f0b83088c09f gcc/cgraphclones.c
--- 2767,2773 ----
05d761d9a2fc9947b911169bb7cd205c gcc/cfgloopmanip.h
c3b866bd1d8fd06efa3e0f1b7877efc8 gcc/cfgrtl.c
bccd993b0524c368bad380e50210af12 gcc/cfgrtl.h
! fe42a46880c980de109ca92b79260bed gcc/cgraph.c
1efd36e9433bdebdd9e6def2769af746 gcc/cgraph.h
5ab10412c44ddfb5b0f25ca8ea3a0202 gcc/cgraphbuild.c
7a74bbacbd55adadc590f0b83088c09f gcc/cgraphclones.c
*************** dcd3e968a11720fd3605b8a83f4c36a2 gcc/cg
*** 2776,2786 ****
f955fc53f7b1d14e95343fca1c4906cb gcc/collect-utils.h
d4e8edbe029cb4d56501e7b8ab5eafe2 gcc/collect2-aix.c
274e2f96171b6e209f0a870f01b0114f gcc/collect2-aix.h
! c65544098d354f73fffdaf0037a80942 gcc/collect2.c
8a9ef178a4b6b91baf4fd905dd9e6fac gcc/collect2.h
a490aaf423f221389948b97149327357 gcc/color-macros.h
01d6047755a03366f991859a1f29ef14 gcc/combine-stack-adj.c
! 68c14442605d6fa19d8420b8d66fc4aa gcc/combine.c
0c8753864413a0970cf0c9bedb15e1eb gcc/common.md
5d06f57a508758d3aa5dcede294fca38 gcc/common.opt
a8117752467eeae4763990eebb20a666 gcc/common/common-target-def.h
--- 2777,2787 ----
f955fc53f7b1d14e95343fca1c4906cb gcc/collect-utils.h
d4e8edbe029cb4d56501e7b8ab5eafe2 gcc/collect2-aix.c
274e2f96171b6e209f0a870f01b0114f gcc/collect2-aix.h
! 6ce9b7d5b934bd6eae7f48f1cd76d280 gcc/collect2.c
8a9ef178a4b6b91baf4fd905dd9e6fac gcc/collect2.h
a490aaf423f221389948b97149327357 gcc/color-macros.h
01d6047755a03366f991859a1f29ef14 gcc/combine-stack-adj.c
! 6e3231f1e3c0163fc1f2c69900890b97 gcc/combine.c
0c8753864413a0970cf0c9bedb15e1eb gcc/common.md
5d06f57a508758d3aa5dcede294fca38 gcc/common.opt
a8117752467eeae4763990eebb20a666 gcc/common/common-target-def.h
*************** c7453ce3ee2961e0ac023d5be73e4f14 gcc/co
*** 2826,2832 ****
977140fb1d7bfef6f4c9cce761d6623c gcc/common/config/riscv/riscv-common.c
cf5d9f577e2ff3f518ec44212de4f88c gcc/common/config/rs6000/rs6000-common.c
5b076a06a013ee9eb027d2e1e38c9fff gcc/common/config/rx/rx-common.c
! d4584987a94c19f924e1d392f43d8c30 gcc/common/config/s390/s390-common.c
c814126984da51e1f5fffe9bf14b7114 gcc/common/config/sh/sh-common.c
c5ffafae689a9cabd6911ae879006843 gcc/common/config/sparc/sparc-common.c
de9956cbd36ab6ac664807fd0cc8ae90 gcc/common/config/spu/spu-common.c
--- 2827,2833 ----
977140fb1d7bfef6f4c9cce761d6623c gcc/common/config/riscv/riscv-common.c
cf5d9f577e2ff3f518ec44212de4f88c gcc/common/config/rs6000/rs6000-common.c
5b076a06a013ee9eb027d2e1e38c9fff gcc/common/config/rx/rx-common.c
! fc95e1c22891e358ded1d629dfabda2e gcc/common/config/s390/s390-common.c
c814126984da51e1f5fffe9bf14b7114 gcc/common/config/sh/sh-common.c
c5ffafae689a9cabd6911ae879006843 gcc/common/config/sparc/sparc-common.c
de9956cbd36ab6ac664807fd0cc8ae90 gcc/common/config/spu/spu-common.c
*************** d2fe1983a775408a212dcef07d92e930 gcc/co
*** 2840,2846 ****
83ba91e4a269133b4daaf46c51daf5d2 gcc/compare-elim.c
d1100e835255850a32dd95ed5da4496d gcc/conditions.h
4511acc0026237bb57e2a9b008fe5d44 gcc/config.build
! 95b2e9cf8e3d562e56dd10bbd5544e5c gcc/config.gcc
c4271efdeb41a6270bd654eb23d2e339 gcc/config.host
17793c60d6ca8d788ae7a3277634b2ac gcc/config.in
8e697813dc96ca90f5d0f4c196efe2cc gcc/config/README
--- 2841,2847 ----
83ba91e4a269133b4daaf46c51daf5d2 gcc/compare-elim.c
d1100e835255850a32dd95ed5da4496d gcc/conditions.h
4511acc0026237bb57e2a9b008fe5d44 gcc/config.build
! 8d379bce7690277bdbc5cfc8651cf52a gcc/config.gcc
c4271efdeb41a6270bd654eb23d2e339 gcc/config.host
17793c60d6ca8d788ae7a3277634b2ac gcc/config.in
8e697813dc96ca90f5d0f4c196efe2cc gcc/config/README
*************** dafef92df94b78e5bde61ec3b4d3870c gcc/co
*** 2858,2864 ****
d622ad855ab72c4e8951d0c7b2ccc034 gcc/config/aarch64/aarch64-ldpstp.md
c4084b7bbc66f67ef62d37961e022fff gcc/config/aarch64/aarch64-linux.h
56e110b91c9035333ac0cde5bd964e36 gcc/config/aarch64/aarch64-modes.def
! dd571367197edac0217373dc2e6bf68e gcc/config/aarch64/aarch64-option-extensions.def
838f1517af2ca6f144fbeb195607045f gcc/config/aarch64/aarch64-opts.h
23b2873f94be769558c521835e53008d gcc/config/aarch64/aarch64-passes.def
4a370c7161690b96ba4538ee8989d313 gcc/config/aarch64/aarch64-protos.h
--- 2859,2865 ----
d622ad855ab72c4e8951d0c7b2ccc034 gcc/config/aarch64/aarch64-ldpstp.md
c4084b7bbc66f67ef62d37961e022fff gcc/config/aarch64/aarch64-linux.h
56e110b91c9035333ac0cde5bd964e36 gcc/config/aarch64/aarch64-modes.def
! 9c222faec639863a49c612cb794b56f6 gcc/config/aarch64/aarch64-option-extensions.def
838f1517af2ca6f144fbeb195607045f gcc/config/aarch64/aarch64-opts.h
23b2873f94be769558c521835e53008d gcc/config/aarch64/aarch64-passes.def
4a370c7161690b96ba4538ee8989d313 gcc/config/aarch64/aarch64-protos.h
*************** a26908792e566ebf4f2479f2ff030739 gcc/co
*** 2869,2882 ****
4136e56280157ea13020fd8e26eb6a25 gcc/config/aarch64/aarch64-sve.md
1e592d43a448d2246f2b6890ca72b6bd gcc/config/aarch64/aarch64-tune.md
d878a234f4fc01a6cb05dcb7284becb3 gcc/config/aarch64/aarch64-tuning-flags.def
! 66752608a1f94ffbac41215bffbb03a4 gcc/config/aarch64/aarch64.c
! bd19ce459733fb6e474d24a36b838d99 gcc/config/aarch64/aarch64.h
! d6c51033e214a9111a74072906652c1e gcc/config/aarch64/aarch64.md
! d2a9cfe47d563e5309348a045cea8ee2 gcc/config/aarch64/aarch64.opt
4449557b26ddb9c3a60c5516259b8963 gcc/config/aarch64/arm_acle.h
0013b27a5b56f740cec7a9699f584a24 gcc/config/aarch64/arm_fp16.h
e4a2f9339577bb6a325f2eff84b42ad2 gcc/config/aarch64/arm_neon.h
! 0170498201f34a6668cea76790f764a7 gcc/config/aarch64/atomics.md
527902a6ecbda3cb905910ea4f3014b5 gcc/config/aarch64/biarchilp32.h
c48501049777c4394fa9dccb0587cff3 gcc/config/aarch64/biarchlp64.h
0344cc6033f61ddd319badd9d166defb gcc/config/aarch64/constraints.md
--- 2870,2883 ----
4136e56280157ea13020fd8e26eb6a25 gcc/config/aarch64/aarch64-sve.md
1e592d43a448d2246f2b6890ca72b6bd gcc/config/aarch64/aarch64-tune.md
d878a234f4fc01a6cb05dcb7284becb3 gcc/config/aarch64/aarch64-tuning-flags.def
! a6b77fbd48747e45d762a03d66bea093 gcc/config/aarch64/aarch64.c
! 6f7d9f18f80df8dc63848c69ab285ca6 gcc/config/aarch64/aarch64.h
! a56bf24170698b9386ab326b01e5a625 gcc/config/aarch64/aarch64.md
! d7b81febfb8b48efb6d0edcf324bc0a3 gcc/config/aarch64/aarch64.opt
4449557b26ddb9c3a60c5516259b8963 gcc/config/aarch64/arm_acle.h
0013b27a5b56f740cec7a9699f584a24 gcc/config/aarch64/arm_fp16.h
e4a2f9339577bb6a325f2eff84b42ad2 gcc/config/aarch64/arm_neon.h
! b4b284259c89346d625b369e35e99671 gcc/config/aarch64/atomics.md
527902a6ecbda3cb905910ea4f3014b5 gcc/config/aarch64/biarchilp32.h
c48501049777c4394fa9dccb0587cff3 gcc/config/aarch64/biarchlp64.h
0344cc6033f61ddd319badd9d166defb gcc/config/aarch64/constraints.md
*************** dc886975d7cb1689611f58c1887e30e9 gcc/co
*** 2900,2906 ****
4daa20a7a6263d32db29e03ce29dd507 gcc/config/alpha/alpha-modes.def
14c0e3ee10644832aea3d08fcdb3edf1 gcc/config/alpha/alpha-passes.def
dd943b1b255d6b14254d3498c252421f gcc/config/alpha/alpha-protos.h
! 57d81c902e325fc55fdf57863fc25151 gcc/config/alpha/alpha.c
39ae81157f2e165e09d852fd5117138c gcc/config/alpha/alpha.h
d4378571b31f5f2bf5a493cf2676a743 gcc/config/alpha/alpha.md
010c0e6d6a438500e924d803f716e7a9 gcc/config/alpha/alpha.opt
--- 2901,2907 ----
4daa20a7a6263d32db29e03ce29dd507 gcc/config/alpha/alpha-modes.def
14c0e3ee10644832aea3d08fcdb3edf1 gcc/config/alpha/alpha-passes.def
dd943b1b255d6b14254d3498c252421f gcc/config/alpha/alpha-protos.h
! e5d132f367cd3b86ff8354812da9c2e8 gcc/config/alpha/alpha.c
39ae81157f2e165e09d852fd5117138c gcc/config/alpha/alpha.h
d4378571b31f5f2bf5a493cf2676a743 gcc/config/alpha/alpha.md
010c0e6d6a438500e924d803f716e7a9 gcc/config/alpha/alpha.opt
*************** af5a03c7a371fbffa7e34fe76c5396ba gcc/co
*** 2927,2941 ****
cde6e4f4478719063a32dc4ba28a3e16 gcc/config/arc/arc-c.c
d7ecd6ddc7e92d934efbf5bbfabca6e4 gcc/config/arc/arc-c.def
9be7914d23fb7743f42e5c589fbab9fe gcc/config/arc/arc-cpus.def
! f43aabd1fcba994e4a225c1b164b523a gcc/config/arc/arc-modes.def
6fedfd855b8542cdf94e9347f77044e0 gcc/config/arc/arc-options.def
3b2d565f35151ad4acdf9afed00a6523 gcc/config/arc/arc-opts.h
290e74bfd051d65fdd39c687105d9bd2 gcc/config/arc/arc-protos.h
a267b4dc3fc31399842ad23dfaa7dbe9 gcc/config/arc/arc-simd.h
8cc83d0aafdf62555514a957f8f7e8cd gcc/config/arc/arc-tables.opt
! 335d1ebd777ff536242e69baea7fa9f9 gcc/config/arc/arc.c
! db49853674821f32d9a95084819809ac gcc/config/arc/arc.h
! e5f49b5ed3f3b8ef4ecd3ff041ae2370 gcc/config/arc/arc.md
cf90be9d74224a2cc6182042983f2b5f gcc/config/arc/arc.opt
a4bce6d486a1c9a976a7492f50e15b3f gcc/config/arc/arc600.md
14ad418999c835ed974a41d77c1f213e gcc/config/arc/arc700.md
--- 2928,2942 ----
cde6e4f4478719063a32dc4ba28a3e16 gcc/config/arc/arc-c.c
d7ecd6ddc7e92d934efbf5bbfabca6e4 gcc/config/arc/arc-c.def
9be7914d23fb7743f42e5c589fbab9fe gcc/config/arc/arc-cpus.def
! 00776ace433e126b58d8fc2e413bd2c7 gcc/config/arc/arc-modes.def
6fedfd855b8542cdf94e9347f77044e0 gcc/config/arc/arc-options.def
3b2d565f35151ad4acdf9afed00a6523 gcc/config/arc/arc-opts.h
290e74bfd051d65fdd39c687105d9bd2 gcc/config/arc/arc-protos.h
a267b4dc3fc31399842ad23dfaa7dbe9 gcc/config/arc/arc-simd.h
8cc83d0aafdf62555514a957f8f7e8cd gcc/config/arc/arc-tables.opt
! 76001e77698909c6f3fd526252537c70 gcc/config/arc/arc.c
! 8127ad067360a9256c0a2706408652b6 gcc/config/arc/arc.h
! e6aef6e17abfe320f06152bcdb5d2a40 gcc/config/arc/arc.md
cf90be9d74224a2cc6182042983f2b5f gcc/config/arc/arc.opt
a4bce6d486a1c9a976a7492f50e15b3f gcc/config/arc/arc600.md
14ad418999c835ed974a41d77c1f213e gcc/config/arc/arc700.md
*************** e2ff62b1818614bfcd02411e4dd856d3 gcc/co
*** 2948,2959 ****
a8350a84a5a5181d3088c7eb39dc910f gcc/config/arc/constraints.md
161bfafb088c636cdb10f6d8516fb340 gcc/config/arc/driver-arc.c
4c62c02c19a9ebe7fc4333cdddf4c440 gcc/config/arc/elf.h
! e03d83f9e816bb5db0951d03ecdccb6b gcc/config/arc/fpu.md
d8fdc9a33c4bcc5dea81d9082a4b3440 gcc/config/arc/fpx.md
9aa766ebed3c5a504a14c45986206dd6 gcc/config/arc/genmultilib.awk
0ff9d980c06f90da76fdeab962af90d4 gcc/config/arc/genoptions.awk
a5477bc783b3e4c9a1e4c90530079426 gcc/config/arc/linux.h
! 7b4483540357a153a1cf7460f533464c gcc/config/arc/predicates.md
729a5c2298cb11a91656725708c1da1f gcc/config/arc/simdext.md
3eeba7339d409e6a42f8f145d413ba32 gcc/config/arc/t-arc
12c35ce0aebace2a14f44d4ea31c991a gcc/config/arc/t-multilib
--- 2949,2960 ----
a8350a84a5a5181d3088c7eb39dc910f gcc/config/arc/constraints.md
161bfafb088c636cdb10f6d8516fb340 gcc/config/arc/driver-arc.c
4c62c02c19a9ebe7fc4333cdddf4c440 gcc/config/arc/elf.h
! 56d7e36bbf717b1f73c1fff42bb2d3fd gcc/config/arc/fpu.md
d8fdc9a33c4bcc5dea81d9082a4b3440 gcc/config/arc/fpx.md
9aa766ebed3c5a504a14c45986206dd6 gcc/config/arc/genmultilib.awk
0ff9d980c06f90da76fdeab962af90d4 gcc/config/arc/genoptions.awk
a5477bc783b3e4c9a1e4c90530079426 gcc/config/arc/linux.h
! ba5307a02ba364d4a7afb0ebf2bde982 gcc/config/arc/predicates.md
729a5c2298cb11a91656725708c1da1f gcc/config/arc/simdext.md
3eeba7339d409e6a42f8f145d413ba32 gcc/config/arc/t-arc
12c35ce0aebace2a14f44d4ea31c991a gcc/config/arc/t-multilib
*************** de5def37f28bbb179fec0bd32e6c33b1 gcc/co
*** 2973,2991 ****
66fb074d47d486e3953c4de2b1b555dc gcc/config/arm/arm-ldmstm.ml
263cc60e9131bac221e70e5d6dc547cd gcc/config/arm/arm-modes.def
e78009a8d13764d219ebfc56144bf0ac gcc/config/arm/arm-opts.h
! 9688a4e7db799ba6d639911b78de95ae gcc/config/arm/arm-protos.h
8e97c44a8af72486a4c5dbf52ec2f910 gcc/config/arm/arm-simd-builtin-types.def
7976a22f8c2764c0fe4b148bd9f24607 gcc/config/arm/arm-tables.opt
5a60221bb6c21b01a1ab3b54d61edba4 gcc/config/arm/arm-tune.md
! a9136cbbecf7f07d4edc395ae3571754 gcc/config/arm/arm.c
! 9a016068215fbf577277f619fb4e9146 gcc/config/arm/arm.h
! de1c51616255ec1afedb4268e4abcb59 gcc/config/arm/arm.md
! 1664fe13ac73903915e00404a97ce8ce gcc/config/arm/arm.opt
4698b3ffbbbfb9f42bf06a3a420fd7d3 gcc/config/arm/arm1020e.md
44ca0240d101cb0eb5d63e2e1427fab9 gcc/config/arm/arm1026ejs.md
62aa008ea48bdd334aff620b69e4aaa6 gcc/config/arm/arm1136jfs.md
66a0492a1ce0455a8cdf0f896b27dc2a gcc/config/arm/arm926ejs.md
! 53cc5e09fcce88b643082b91b6c72736 gcc/config/arm/arm_acle.h
5561eb4cd61fd4f04f4710bbe305c73c gcc/config/arm/arm_acle_builtins.def
bd0ff25283d8b97b7aff4b4e5daebb8c gcc/config/arm/arm_cmse.h
0aef6c3a1ddf41c3de6bcbe1bee94c6d gcc/config/arm/arm_fp16.h
--- 2974,2992 ----
66fb074d47d486e3953c4de2b1b555dc gcc/config/arm/arm-ldmstm.ml
263cc60e9131bac221e70e5d6dc547cd gcc/config/arm/arm-modes.def
e78009a8d13764d219ebfc56144bf0ac gcc/config/arm/arm-opts.h
! 0839e8dc297ba77a474ca5b54021d430 gcc/config/arm/arm-protos.h
8e97c44a8af72486a4c5dbf52ec2f910 gcc/config/arm/arm-simd-builtin-types.def
7976a22f8c2764c0fe4b148bd9f24607 gcc/config/arm/arm-tables.opt
5a60221bb6c21b01a1ab3b54d61edba4 gcc/config/arm/arm-tune.md
! aacd1872c0b22a6f266afb8e07867dfc gcc/config/arm/arm.c
! 30d086f1ea2f74e10dc923df0a5a618b gcc/config/arm/arm.h
! 547f9ca4d6ce3a07e1896aba043d9d8b gcc/config/arm/arm.md
! 4ccba5fde3d84bab8c82ba954f689e96 gcc/config/arm/arm.opt
4698b3ffbbbfb9f42bf06a3a420fd7d3 gcc/config/arm/arm1020e.md
44ca0240d101cb0eb5d63e2e1427fab9 gcc/config/arm/arm1026ejs.md
62aa008ea48bdd334aff620b69e4aaa6 gcc/config/arm/arm1136jfs.md
66a0492a1ce0455a8cdf0f896b27dc2a gcc/config/arm/arm926ejs.md
! ae7ebe0ef8367ee1e5f9532735c3b249 gcc/config/arm/arm_acle.h
5561eb4cd61fd4f04f4710bbe305c73c gcc/config/arm/arm_acle_builtins.def
bd0ff25283d8b97b7aff4b4e5daebb8c gcc/config/arm/arm_cmse.h
0aef6c3a1ddf41c3de6bcbe1bee94c6d gcc/config/arm/arm_fp16.h
*************** e25ba0da07f2566ac294ea8eaac817c4 gcc/co
*** 3037,3043 ****
64d52eba3e9b59bdffdcd70d788767c7 gcc/config/arm/neon.md
8a125f0bc52191b6835e1a9297a76515 gcc/config/arm/netbsd-elf.h
9728cc28ac9ce55c80a7771a142fbf6c gcc/config/arm/parsecpu.awk
! 4e3ef3ac6f16b95a73a5f63954042ce0 gcc/config/arm/predicates.md
c2be33e26eb8292a27bb21a6c92b78ef gcc/config/arm/rtems.h
8c07356b17ea44561571c21c6c253935 gcc/config/arm/semi.h
32340f243e64a90a7534264fd436d9ab gcc/config/arm/symbian.h
--- 3038,3044 ----
64d52eba3e9b59bdffdcd70d788767c7 gcc/config/arm/neon.md
8a125f0bc52191b6835e1a9297a76515 gcc/config/arm/netbsd-elf.h
9728cc28ac9ce55c80a7771a142fbf6c gcc/config/arm/parsecpu.awk
! d47afa13477045fe8008b0584e46d4e7 gcc/config/arm/predicates.md
c2be33e26eb8292a27bb21a6c92b78ef gcc/config/arm/rtems.h
8c07356b17ea44561571c21c6c253935 gcc/config/arm/semi.h
32340f243e64a90a7534264fd436d9ab gcc/config/arm/symbian.h
*************** dc007b1dbf75597ac2a62d4681e273a0 gcc/co
*** 3049,3061 ****
5cb1364a5dad304a16a4f2ea81229215 gcc/config/arm/t-fuchsia
e3950ec6bd159734835f8f8fb143efc6 gcc/config/arm/t-linux-androideabi
43347f5a0193bfcfd8a439701fdc16d5 gcc/config/arm/t-linux-eabi
! 0b3068c314e12e2a28d607be2eb228c8 gcc/config/arm/t-multilib
2933b88f6eb66e6cab171a229e4f6ae3 gcc/config/arm/t-phoenix
1f56d95be8ef65bbcf46237398023685 gcc/config/arm/t-rmprofile
6219db2eb3bceea962a45e9f1400f370 gcc/config/arm/t-rtems
0ea5b4f92221a7bd097fa437a0048d3e gcc/config/arm/t-symbian
b5539c5e14f1eed60835983547d2b721 gcc/config/arm/t-vxworks
! a5d1e9b421b01f3bfa80ffc2b334a24b gcc/config/arm/thumb1.md
f669257064afc30d581080fb012cfddf gcc/config/arm/thumb2.md
d9951f54357bbd37880fd67d7fcc1be7 gcc/config/arm/types.md
802ce3cab15454d7b6ed350fc2188fc9 gcc/config/arm/uclinux-eabi.h
--- 3050,3062 ----
5cb1364a5dad304a16a4f2ea81229215 gcc/config/arm/t-fuchsia
e3950ec6bd159734835f8f8fb143efc6 gcc/config/arm/t-linux-androideabi
43347f5a0193bfcfd8a439701fdc16d5 gcc/config/arm/t-linux-eabi
! d424f0660f469d6c13a6f84e6b2858cf gcc/config/arm/t-multilib
2933b88f6eb66e6cab171a229e4f6ae3 gcc/config/arm/t-phoenix
1f56d95be8ef65bbcf46237398023685 gcc/config/arm/t-rmprofile
6219db2eb3bceea962a45e9f1400f370 gcc/config/arm/t-rtems
0ea5b4f92221a7bd097fa437a0048d3e gcc/config/arm/t-symbian
b5539c5e14f1eed60835983547d2b721 gcc/config/arm/t-vxworks
! 7aac171f324cfacfe0ab5f40c9246975 gcc/config/arm/thumb1.md
f669257064afc30d581080fb012cfddf gcc/config/arm/thumb2.md
d9951f54357bbd37880fd67d7fcc1be7 gcc/config/arm/types.md
802ce3cab15454d7b6ed350fc2188fc9 gcc/config/arm/uclinux-eabi.h
*************** f3dbeecf08e03e13800c60ab264129e3 gcc/co
*** 3069,3096 ****
4d9d5fee146611f217378df4b0f52634 gcc/config/arm/vxworks.opt
a17a638dc98f3f18b0e13448c69e1e65 gcc/config/arm/x-arm
921d7101ad2ffcc6d45897dae28a53cd gcc/config/arm/xgene1.md
! cf0aae3eedda5508b6b1430eef96e1ac gcc/config/avr/avr-arch.h
94cdce57891ecaaebb970a1da5ac7970 gcc/config/avr/avr-c.c
! 87419f8cb20e30be46642e3c843f3d95 gcc/config/avr/avr-devices.c
88039b38cd494e913f9a41b37a271002 gcc/config/avr/avr-dimode.md
27133d2db9511a14da3d9d79025c79b8 gcc/config/avr/avr-fixed.md
682d4337eafc107d58673403bd4ce75b gcc/config/avr/avr-log.c
! a03e39322b58557248aa2a95961a6e66 gcc/config/avr/avr-mcus.def
8cd797ca10de18e7d17053a797e4ca52 gcc/config/avr/avr-modes.def
75e2953c8a2dbec18eef20ca2178f2e2 gcc/config/avr/avr-passes.def
cf381177ea27b56e2f032d3f3c69d6f2 gcc/config/avr/avr-protos.h
7cae73961538029d7400e28dcfd73e3d gcc/config/avr/avr-stdint.h
! 47539abdd31fbe4648789a0889872975 gcc/config/avr/avr.c
744c414540aca3eab77031e0984460f1 gcc/config/avr/avr.h
13e030e4f159649d4b8ef25323df1938 gcc/config/avr/avr.md
! 2a4aa658793d108c0c702bb4a62ae9e7 gcc/config/avr/avr.opt
2ea9764fd73a496089e4704cc84139f4 gcc/config/avr/avrlibc.h
b767f5c25ddcf168caa80c9c958f2e6d gcc/config/avr/builtins.def
92ea1d9e02515a1c797344e07d42fda1 gcc/config/avr/constraints.md
! 163a768632b73acba9d68a945f739d12 gcc/config/avr/driver-avr.c
f97c82cbdebd2ad214484616e6379dd1 gcc/config/avr/elf.h
! 71ea05dcdada693edeafe2c44fd01acd gcc/config/avr/gen-avr-mmcu-specs.c
! 429582588f0087250493f856dbcf643d gcc/config/avr/gen-avr-mmcu-texi.c
d8d0a3bf7a477ffb19099d6a5b0f95a5 gcc/config/avr/genmultilib.awk
7b674996249f08ba00209ac894d408a9 gcc/config/avr/predicates.md
d1037b3c39bd38ab74d646e71c6c55f9 gcc/config/avr/specs.h
--- 3070,3097 ----
4d9d5fee146611f217378df4b0f52634 gcc/config/arm/vxworks.opt
a17a638dc98f3f18b0e13448c69e1e65 gcc/config/arm/x-arm
921d7101ad2ffcc6d45897dae28a53cd gcc/config/arm/xgene1.md
! ce95fbb072b5617c537bf8a199c3c37f gcc/config/avr/avr-arch.h
94cdce57891ecaaebb970a1da5ac7970 gcc/config/avr/avr-c.c
! 25adcdbc2e6b64676526bc665a688b49 gcc/config/avr/avr-devices.c
88039b38cd494e913f9a41b37a271002 gcc/config/avr/avr-dimode.md
27133d2db9511a14da3d9d79025c79b8 gcc/config/avr/avr-fixed.md
682d4337eafc107d58673403bd4ce75b gcc/config/avr/avr-log.c
! 8b064020d2ea7dbd2c3e95ae46011da0 gcc/config/avr/avr-mcus.def
8cd797ca10de18e7d17053a797e4ca52 gcc/config/avr/avr-modes.def
75e2953c8a2dbec18eef20ca2178f2e2 gcc/config/avr/avr-passes.def
cf381177ea27b56e2f032d3f3c69d6f2 gcc/config/avr/avr-protos.h
7cae73961538029d7400e28dcfd73e3d gcc/config/avr/avr-stdint.h
! 2d059507904b4923043bde3ba141708e gcc/config/avr/avr.c
744c414540aca3eab77031e0984460f1 gcc/config/avr/avr.h
13e030e4f159649d4b8ef25323df1938 gcc/config/avr/avr.md
! b342d3e22847ebd699a12dd43104b737 gcc/config/avr/avr.opt
2ea9764fd73a496089e4704cc84139f4 gcc/config/avr/avrlibc.h
b767f5c25ddcf168caa80c9c958f2e6d gcc/config/avr/builtins.def
92ea1d9e02515a1c797344e07d42fda1 gcc/config/avr/constraints.md
! a3a2beabc0f9c4ea801cac7fc98dc196 gcc/config/avr/driver-avr.c
f97c82cbdebd2ad214484616e6379dd1 gcc/config/avr/elf.h
! 45d3640f7594120ec507c14bc0ea3e75 gcc/config/avr/gen-avr-mmcu-specs.c
! 9b0e6e4024bf3d870c09417391b80063 gcc/config/avr/gen-avr-mmcu-texi.c
d8d0a3bf7a477ffb19099d6a5b0f95a5 gcc/config/avr/genmultilib.awk
7b674996249f08ba00209ac894d408a9 gcc/config/avr/predicates.md
d1037b3c39bd38ab74d646e71c6c55f9 gcc/config/avr/specs.h
*************** e74b0750f0ceb61a5ca4f402148d36a2 gcc/co
*** 3191,3207 ****
991cf305b10ad8fd014e7c8a7453f593 gcc/config/csky/t-csky-linux
bf59b25dacd21c9fcf2b697e30e7c9c9 gcc/config/csky/t-sysroot-suffix
c4532a4134cf07c557904240e6c4728c gcc/config/darwin-c.c
! 826dcfc925e6f5a6d92d1d48a12fee45 gcc/config/darwin-driver.c
412cdcb9c2a2bdedf1f196e2dce1c790 gcc/config/darwin-f.c
f73c72be3c214648bc3101dcd648d842 gcc/config/darwin-ppc-ldouble-patch.def
! efac6d6a03d1962a3dec21e6a0ee4247 gcc/config/darwin-protos.h
da10c05ac6b57283c3ed0f59b6b5a180 gcc/config/darwin-sections.def
! e104dec79bcb9396f4355bffd92425cc gcc/config/darwin.c
! ea4146d2fefa86e990455f9d5c1362ec gcc/config/darwin.h
! 58cc24a6e1a28a718f58fb978798e0b0 gcc/config/darwin.opt
! 2315a4d1bdd4673bddd999dcee3d6d9d gcc/config/darwin10.h
2f6e298611ba6eadc9c43e12955ebcf5 gcc/config/darwin12.h
! 1b44799aee22c302ecd7e9654f92a467 gcc/config/darwin9.h
bdee900a2d429dfef8ca4e9a788ef3b8 gcc/config/dbx.h
d3340af10052b7b7cb5c6b3bfc7b003d gcc/config/dbxcoff.h
adf6ee22de5728f7c90643affe4c8771 gcc/config/dbxelf.h
--- 3192,3208 ----
991cf305b10ad8fd014e7c8a7453f593 gcc/config/csky/t-csky-linux
bf59b25dacd21c9fcf2b697e30e7c9c9 gcc/config/csky/t-sysroot-suffix
c4532a4134cf07c557904240e6c4728c gcc/config/darwin-c.c
! 94bfa269b1fb4d999d6e60d05e62742c gcc/config/darwin-driver.c
412cdcb9c2a2bdedf1f196e2dce1c790 gcc/config/darwin-f.c
f73c72be3c214648bc3101dcd648d842 gcc/config/darwin-ppc-ldouble-patch.def
! 45db974b6c1a9b2c6990be7431e1ad8f gcc/config/darwin-protos.h
da10c05ac6b57283c3ed0f59b6b5a180 gcc/config/darwin-sections.def
! 1bfd41ad09b4e5a92d0d21544b5ac1f8 gcc/config/darwin.c
! 21ebf33f05d434f1baf593d2830f8d5d gcc/config/darwin.h
! 0e5cd48ebe44c4585e83748c0948b2b3 gcc/config/darwin.opt
! 483001c588dd63e97899ef92875d8aa0 gcc/config/darwin10.h
2f6e298611ba6eadc9c43e12955ebcf5 gcc/config/darwin12.h
! 678327f4c169791b244f8c11211f7d49 gcc/config/darwin9.h
bdee900a2d429dfef8ca4e9a788ef3b8 gcc/config/dbx.h
d3340af10052b7b7cb5c6b3bfc7b003d gcc/config/dbxcoff.h
adf6ee22de5728f7c90643affe4c8771 gcc/config/dbxelf.h
*************** dc5cfa1f184c65df88ed4d75bad290f8 gcc/co
*** 3312,3321 ****
dac0941e87c210a03bffaca2a100dd66 gcc/config/i386/athlon.md
604977d7adbb1bd2d40f4f72792ea0fa gcc/config/i386/atom.md
92fffd01755f06a25d4593db95ad7c2c gcc/config/i386/att.h
! 8472ce72add36cdbc49a8c8531d57b3a gcc/config/i386/avx2intrin.h
9cc0069ec2b37141bb262ea05518de80 gcc/config/i386/avx5124fmapsintrin.h
49b42e793e9f57cf83e1d8bbe769ab67 gcc/config/i386/avx5124vnniwintrin.h
! 2057075cd7640edb67bab7997e40ce51 gcc/config/i386/avx512bitalgintrin.h
50a3a566e11262f4c625caa2d14e6e53 gcc/config/i386/avx512bwintrin.h
30236a3956365ca84d335348fe116faf gcc/config/i386/avx512cdintrin.h
c29821db0471b45eadd7ab6ec71f4873 gcc/config/i386/avx512dqintrin.h
--- 3313,3322 ----
dac0941e87c210a03bffaca2a100dd66 gcc/config/i386/athlon.md
604977d7adbb1bd2d40f4f72792ea0fa gcc/config/i386/atom.md
92fffd01755f06a25d4593db95ad7c2c gcc/config/i386/att.h
! 1297f383921811c7dbf3f7ff7b58f15f gcc/config/i386/avx2intrin.h
9cc0069ec2b37141bb262ea05518de80 gcc/config/i386/avx5124fmapsintrin.h
49b42e793e9f57cf83e1d8bbe769ab67 gcc/config/i386/avx5124vnniwintrin.h
! 4879afffa62e4ce6f8bcc1e9934948d1 gcc/config/i386/avx512bitalgintrin.h
50a3a566e11262f4c625caa2d14e6e53 gcc/config/i386/avx512bwintrin.h
30236a3956365ca84d335348fe116faf gcc/config/i386/avx512cdintrin.h
c29821db0471b45eadd7ab6ec71f4873 gcc/config/i386/avx512dqintrin.h
*************** c273810a570b8760b3fdc24059ef72d8 gcc/co
*** 3324,3331 ****
e8268cb64005fed6a678cfbc4642288a gcc/config/i386/avx512ifmaintrin.h
ef0a9a8caf7f653ee9a94b583ea058a6 gcc/config/i386/avx512ifmavlintrin.h
46072b8fd27176db907cf49f10afb4d3 gcc/config/i386/avx512pfintrin.h
! 3f1ac5b4e0fdb9a70967a09a75a6306a gcc/config/i386/avx512vbmi2intrin.h
! 03d36f6a5e0914a4f633d232c09df1bb gcc/config/i386/avx512vbmi2vlintrin.h
3aed6430e71b777018c1bba35cd41324 gcc/config/i386/avx512vbmiintrin.h
fd98c823f7532611bd71847e8a594369 gcc/config/i386/avx512vbmivlintrin.h
c45f16ebc7f9ae690c56dabe5f2362f4 gcc/config/i386/avx512vlbwintrin.h
--- 3325,3332 ----
e8268cb64005fed6a678cfbc4642288a gcc/config/i386/avx512ifmaintrin.h
ef0a9a8caf7f653ee9a94b583ea058a6 gcc/config/i386/avx512ifmavlintrin.h
46072b8fd27176db907cf49f10afb4d3 gcc/config/i386/avx512pfintrin.h
! b829b8798857e19d7b06f6ad461cae8d gcc/config/i386/avx512vbmi2intrin.h
! 1c4ffc13bbb1fb9799dcfb563924ca01 gcc/config/i386/avx512vbmi2vlintrin.h
3aed6430e71b777018c1bba35cd41324 gcc/config/i386/avx512vbmiintrin.h
fd98c823f7532611bd71847e8a594369 gcc/config/i386/avx512vbmivlintrin.h
c45f16ebc7f9ae690c56dabe5f2362f4 gcc/config/i386/avx512vlbwintrin.h
*************** f3649f1f3731a2ff4e4e41903e9e502b gcc/co
*** 3333,3341 ****
93e0dd7808fba06af352b61766402440 gcc/config/i386/avx512vlintrin.h
102fbd70a0d4735563b6e8b4c63bcced gcc/config/i386/avx512vnniintrin.h
5040573cdc903a9b5b6f363ed6fe6015 gcc/config/i386/avx512vnnivlintrin.h
! 659166714e3a4387985f3a8e703cf7df gcc/config/i386/avx512vpopcntdqintrin.h
! aeed43672115e8f8eb1ae19f77e96093 gcc/config/i386/avx512vpopcntdqvlintrin.h
! 640b895406addb6ceeed20182c39281a gcc/config/i386/avxintrin.h
c14d6be6414db5d3f6049dd8c55e1d29 gcc/config/i386/avxmath.h
cdd5a961d90c60f3971bbea99ec50d1b gcc/config/i386/bdver1.md
06e8d8e4176bd76e65d8e38457503778 gcc/config/i386/bdver3.md
--- 3334,3342 ----
93e0dd7808fba06af352b61766402440 gcc/config/i386/avx512vlintrin.h
102fbd70a0d4735563b6e8b4c63bcced gcc/config/i386/avx512vnniintrin.h
5040573cdc903a9b5b6f363ed6fe6015 gcc/config/i386/avx512vnnivlintrin.h
! c213a22df78b0dd901d9f2195a889ee0 gcc/config/i386/avx512vpopcntdqintrin.h
! 3d24b1690923e1dba539e6cf5c143c14 gcc/config/i386/avx512vpopcntdqvlintrin.h
! 4cc51494f38121a759c15165a6c1f56c gcc/config/i386/avxintrin.h
c14d6be6414db5d3f6049dd8c55e1d29 gcc/config/i386/avxmath.h
cdd5a961d90c60f3971bbea99ec50d1b gcc/config/i386/bdver1.md
06e8d8e4176bd76e65d8e38457503778 gcc/config/i386/bdver3.md
*************** a99686cc9a2f9c92b9a0dcaab28fb455 gcc/co
*** 3364,3370 ****
a5c77fe32a963c929d893e7a273f62d7 gcc/config/i386/cygwin-w64.h
f4d9e14f42b879c669ebe9bd8b4bc21b gcc/config/i386/cygwin.h
58740d7076f1d70d0178ceda20735229 gcc/config/i386/cygwin.opt
! 44f12aa7686464ed05c5d38b686944fa gcc/config/i386/darwin.h
8256997a20c204a0527b521ac183cfc2 gcc/config/i386/darwin32-biarch.h
cf642b6e9bac4617209f4bf91245d902 gcc/config/i386/darwin64-biarch.h
e145103837be47ad6f925709ecececb7 gcc/config/i386/djgpp-stdint.h
--- 3365,3371 ----
a5c77fe32a963c929d893e7a273f62d7 gcc/config/i386/cygwin-w64.h
f4d9e14f42b879c669ebe9bd8b4bc21b gcc/config/i386/cygwin.h
58740d7076f1d70d0178ceda20735229 gcc/config/i386/cygwin.opt
! e2ea98d69b1b16fe78539ee226eeea55 gcc/config/i386/darwin.h
8256997a20c204a0527b521ac183cfc2 gcc/config/i386/darwin32-biarch.h
cf642b6e9bac4617209f4bf91245d902 gcc/config/i386/darwin64-biarch.h
e145103837be47ad6f925709ecececb7 gcc/config/i386/djgpp-stdint.h
*************** cef37228f34f595508de3c963449c446 gcc/co
*** 3374,3380 ****
2a9c6de5f3838eab78a4c0be68c6cf21 gcc/config/i386/dragonfly.h
b8284a88bf4a5cac2d593f95ab20af1b gcc/config/i386/driver-i386.c
1425c4f190f2b023755c2aec96f0b0a5 gcc/config/i386/driver-mingw32.c
! 7c90815ce2bd67e67714032ee3fc815d gcc/config/i386/emmintrin.h
adf08cc7a9f8da982b6f17490104534a gcc/config/i386/f16cintrin.h
e0da33cac8e8bce8d8bde31a0d532c2b gcc/config/i386/fma4intrin.h
d99041261e77672273ebf6ce4f41be50 gcc/config/i386/fmaintrin.h
--- 3375,3381 ----
2a9c6de5f3838eab78a4c0be68c6cf21 gcc/config/i386/dragonfly.h
b8284a88bf4a5cac2d593f95ab20af1b gcc/config/i386/driver-i386.c
1425c4f190f2b023755c2aec96f0b0a5 gcc/config/i386/driver-mingw32.c
! f355eee7e86e22e2a1a1d191e376f8ac gcc/config/i386/emmintrin.h
adf08cc7a9f8da982b6f17490104534a gcc/config/i386/f16cintrin.h
e0da33cac8e8bce8d8bde31a0d532c2b gcc/config/i386/fma4intrin.h
d99041261e77672273ebf6ce4f41be50 gcc/config/i386/fmaintrin.h
*************** e8b3387e4a60ba30cc185cfb879a44ea gcc/co
*** 3397,3418 ****
ee299f2180f0db0428cc3ce4fab91db9 gcc/config/i386/host-mingw32.c
64a5d327be2bb0459d15e72f4f25f47b gcc/config/i386/i386-builtin-types.awk
e412449d02c534003aff396e1538b3da gcc/config/i386/i386-builtin-types.def
! 9b158e0622a21d082d180be2c4cd7821 gcc/config/i386/i386-builtin.def
608a1b5ba608236659e032a3c11c4aeb gcc/config/i386/i386-c.c
f7622adb986e24faa5a97e22468b62ff gcc/config/i386/i386-d.c
b3e3a26baaa00d042200fb7171d2ad0b gcc/config/i386/i386-modes.def
ebd361a54224f0abb09743cd7d7c87cd gcc/config/i386/i386-opts.h
480131ba2044127fc48ecef37f6b74e8 gcc/config/i386/i386-passes.def
e115f008106b73eff935b485b13cc766 gcc/config/i386/i386-protos.h
! 5873ec2a4a026bd6a78662b9b1b7ce2f gcc/config/i386/i386.c
! e72a4d2054d16b05598258048891ff11 gcc/config/i386/i386.h
! e46b224725d2c75d6ad0ac74ac39066f gcc/config/i386/i386.md
e1a477f88e849a4c3c9d66ce3d04471d gcc/config/i386/i386.opt
cf4401814fee167918ada91933e2cc9e gcc/config/i386/i386elf.h
5768f331267273ad14615e7256f365f6 gcc/config/i386/ia32intrin.h
5a9ab009e81a5ed18bc480155242f91e gcc/config/i386/iamcu.h
fd2508696c5784e375d4ed9769771323 gcc/config/i386/immintrin.h
! f9dcc372c04abddad2813b023d968577 gcc/config/i386/intelmic-mkoffload.c
45282ebb64f9efbcc18ba7080b6d206f gcc/config/i386/intelmic-offload.h
f4500574dc50722f04334d87632e7cf4 gcc/config/i386/k6.md
39190a9f18abc8b496f08a6b4e70dce4 gcc/config/i386/kfreebsd-gnu.h
--- 3398,3419 ----
ee299f2180f0db0428cc3ce4fab91db9 gcc/config/i386/host-mingw32.c
64a5d327be2bb0459d15e72f4f25f47b gcc/config/i386/i386-builtin-types.awk
e412449d02c534003aff396e1538b3da gcc/config/i386/i386-builtin-types.def
! cd00d49c58ec93227ecf3cde73ae87d8 gcc/config/i386/i386-builtin.def
608a1b5ba608236659e032a3c11c4aeb gcc/config/i386/i386-c.c
f7622adb986e24faa5a97e22468b62ff gcc/config/i386/i386-d.c
b3e3a26baaa00d042200fb7171d2ad0b gcc/config/i386/i386-modes.def
ebd361a54224f0abb09743cd7d7c87cd gcc/config/i386/i386-opts.h
480131ba2044127fc48ecef37f6b74e8 gcc/config/i386/i386-passes.def
e115f008106b73eff935b485b13cc766 gcc/config/i386/i386-protos.h
! 6ab5962000212c011eb7a3f23b92cd90 gcc/config/i386/i386.c
! 8b880484c471417ed112e7d6b1d4bef7 gcc/config/i386/i386.h
! 4bc26bb04525aa639d643ee5ae4a5d68 gcc/config/i386/i386.md
e1a477f88e849a4c3c9d66ce3d04471d gcc/config/i386/i386.opt
cf4401814fee167918ada91933e2cc9e gcc/config/i386/i386elf.h
5768f331267273ad14615e7256f365f6 gcc/config/i386/ia32intrin.h
5a9ab009e81a5ed18bc480155242f91e gcc/config/i386/iamcu.h
fd2508696c5784e375d4ed9769771323 gcc/config/i386/immintrin.h
! 1cea00d4bbaeddc35cc585e30fab85f9 gcc/config/i386/intelmic-mkoffload.c
45282ebb64f9efbcc18ba7080b6d206f gcc/config/i386/intelmic-offload.h
f4500574dc50722f04334d87632e7cf4 gcc/config/i386/k6.md
39190a9f18abc8b496f08a6b4e70dce4 gcc/config/i386/kfreebsd-gnu.h
*************** f2e2b6ba2829bd6182f45c033a3c70ba gcc/co
*** 3432,3438 ****
2c5a8d7ada23fdce030577d79de08244 gcc/config/i386/mingw32.h
2ecb7ea0b66babb0510b4ee1be67616d gcc/config/i386/mm3dnow.h
7b45089ad9aa0a9c12254fa3b52e6491 gcc/config/i386/mmintrin.h
! 6bd15c2a229ff2ce27a6764d93e36884 gcc/config/i386/mmx.md
6a74bf3a6742a37bfc9419e6aceee537 gcc/config/i386/movdirintrin.h
9f146ab9be7c9f630018d49a171d81b7 gcc/config/i386/msformat-c.c
5521c6d346e4dd0a8c8f60f8dee3b197 gcc/config/i386/mwaitxintrin.h
--- 3433,3439 ----
2c5a8d7ada23fdce030577d79de08244 gcc/config/i386/mingw32.h
2ecb7ea0b66babb0510b4ee1be67616d gcc/config/i386/mm3dnow.h
7b45089ad9aa0a9c12254fa3b52e6491 gcc/config/i386/mmintrin.h
! f273d9e50b15042da04399e62f8eed78 gcc/config/i386/mmx.md
6a74bf3a6742a37bfc9419e6aceee537 gcc/config/i386/movdirintrin.h
9f146ab9be7c9f630018d49a171d81b7 gcc/config/i386/msformat-c.c
5521c6d346e4dd0a8c8f60f8dee3b197 gcc/config/i386/mwaitxintrin.h
*************** c00c29b960eba25ad7701d5b3779a49b gcc/co
*** 3461,3467 ****
98f0c61a3452035fd54874836a63d639 gcc/config/i386/slm.md
6b483574d3f8c038362370f678dc3352 gcc/config/i386/smmintrin.h
eef3bf1c23a71ddebdef079e46139a3f gcc/config/i386/sol2.h
! 10b7a9cd4da75261b2810aa6180266d9 gcc/config/i386/sse.md
e701af944d5f18cad99e23d7d5ba21c2 gcc/config/i386/ssemath.h
7a75a57a5da77d44a32094f37fe5e855 gcc/config/i386/stringop.def
f001f25cc3598b7ef8e3caf37dd64d90 gcc/config/i386/subst.md
--- 3462,3468 ----
98f0c61a3452035fd54874836a63d639 gcc/config/i386/slm.md
6b483574d3f8c038362370f678dc3352 gcc/config/i386/smmintrin.h
eef3bf1c23a71ddebdef079e46139a3f gcc/config/i386/sol2.h
! b8d8aa97395acf23d26108cda46bff10 gcc/config/i386/sse.md
e701af944d5f18cad99e23d7d5ba21c2 gcc/config/i386/ssemath.h
7a75a57a5da77d44a32094f37fe5e855 gcc/config/i386/stringop.def
f001f25cc3598b7ef8e3caf37dd64d90 gcc/config/i386/subst.md
*************** e2aba660569dccf803bb911886ce8baa gcc/co
*** 3517,3523 ****
4e7c8bda3a4e1b770528c098bc3492e3 gcc/config/i386/xm-djgpp.h
4e545b120ab9b2969a4054d175af5e81 gcc/config/i386/xm-mingw32.h
fcc6b5b44aca95dc36c731b5ebeefd2a gcc/config/i386/xmmintrin.h
! 957cff9c457f3ec65aabef77d890e68e gcc/config/i386/xopintrin.h
0531a9fbeb124714bafb91a247aabf29 gcc/config/i386/xsavecintrin.h
2de42817c9f90f522de6fa5830dca525 gcc/config/i386/xsaveintrin.h
290b59a3fffcbbfc2f8335f1ccac89b1 gcc/config/i386/xsaveoptintrin.h
--- 3518,3524 ----
4e7c8bda3a4e1b770528c098bc3492e3 gcc/config/i386/xm-djgpp.h
4e545b120ab9b2969a4054d175af5e81 gcc/config/i386/xm-mingw32.h
fcc6b5b44aca95dc36c731b5ebeefd2a gcc/config/i386/xmmintrin.h
! 0b2588cf1e7e108bcae4d1a79da21303 gcc/config/i386/xopintrin.h
0531a9fbeb124714bafb91a247aabf29 gcc/config/i386/xsavecintrin.h
2de42817c9f90f522de6fa5830dca525 gcc/config/i386/xsaveintrin.h
290b59a3fffcbbfc2f8335f1ccac89b1 gcc/config/i386/xsaveoptintrin.h
*************** aecd930f5e2726f5bec1fb426197545b gcc/co
*** 3728,3736 ****
764226fe1b4f917a978a90e372c0f60a gcc/config/mips/mips-protos.h
8001d509158827dddae86a1ef107a36a gcc/config/mips/mips-ps-3d.md
477dc18cac140a9950d9d880bfab331c gcc/config/mips/mips-tables.opt
! 3b6417562c04b4e80b4b75e94ac4cf67 gcc/config/mips/mips.c
ec9d3cae94023262f118d4d58cc16bae gcc/config/mips/mips.h
! a171187f90d3bbf83a3831980f9917a3 gcc/config/mips/mips.md
58a1deebbe708f1c924bc88f260e4a43 gcc/config/mips/mips.opt
2f1c514f6ada332f99d525978fa5f4cb gcc/config/mips/msa.h
f68463bc2308878dc219116cf45c90a2 gcc/config/mips/mti-elf.h
--- 3729,3737 ----
764226fe1b4f917a978a90e372c0f60a gcc/config/mips/mips-protos.h
8001d509158827dddae86a1ef107a36a gcc/config/mips/mips-ps-3d.md
477dc18cac140a9950d9d880bfab331c gcc/config/mips/mips-tables.opt
! 9c76523537789bded96533945720f361 gcc/config/mips/mips.c
ec9d3cae94023262f118d4d58cc16bae gcc/config/mips/mips.h
! ef8331ba20d805a0d756da3eb5122b0e gcc/config/mips/mips.md
58a1deebbe708f1c924bc88f260e4a43 gcc/config/mips/mips.opt
2f1c514f6ada332f99d525978fa5f4cb gcc/config/mips/msa.h
f68463bc2308878dc219116cf45c90a2 gcc/config/mips/mti-elf.h
*************** dd1bb27adeb9872d8fab3f4d1388a91f gcc/co
*** 3881,3888 ****
1a20d5b5fd8468346446806d5b72c05e gcc/config/nios2/nios2-ldstwm.sml
34214b37f9154cb41a131e34295e1625 gcc/config/nios2/nios2-opts.h
8c694e24713f1de9da0de92cbcdc9aca gcc/config/nios2/nios2-protos.h
! 0b6347b94dc1ae9fb0558291ef6bcc16 gcc/config/nios2/nios2.c
! 482bad0730deb85a1819398900767dae gcc/config/nios2/nios2.h
4c7467827f4eb55fc2237f4368d37519 gcc/config/nios2/nios2.md
5d790b9ac302b6adbf5402890ed0e8e8 gcc/config/nios2/nios2.opt
057d6043108d07d550c4400a5ae81809 gcc/config/nios2/predicates.md
--- 3882,3889 ----
1a20d5b5fd8468346446806d5b72c05e gcc/config/nios2/nios2-ldstwm.sml
34214b37f9154cb41a131e34295e1625 gcc/config/nios2/nios2-opts.h
8c694e24713f1de9da0de92cbcdc9aca gcc/config/nios2/nios2-protos.h
! b93a736cf60935c92fbf82dcb779da60 gcc/config/nios2/nios2.c
! 96cfa82ecc8371bb65e5680cc0118693 gcc/config/nios2/nios2.h
4c7467827f4eb55fc2237f4368d37519 gcc/config/nios2/nios2.md
5d790b9ac302b6adbf5402890ed0e8e8 gcc/config/nios2/nios2.opt
057d6043108d07d550c4400a5ae81809 gcc/config/nios2/predicates.md
*************** d5563ed37efabc4113c6d2d52ae069f0 gcc/co
*** 3937,3947 ****
221b23af89db8c07ec3d7dedbc5f4b07 gcc/config/pa/pa-openbsd.h
6b83d58f7455656adda798a184b07961 gcc/config/pa/pa-opts.h
b61d90d50654c7416ffbc50abb8b19f1 gcc/config/pa/pa-protos.h
! 27c650aeed972e422c5c23f827bfcab5 gcc/config/pa/pa.c
! aecad92b0d23a49cca12a2eb00f68542 gcc/config/pa/pa.h
! ef4f2d135f43a04a63dfb854ba3d6d8c gcc/config/pa/pa.md
! 88bd457a7657c348e414abd81aaefa24 gcc/config/pa/pa.opt
! 08addb62aa1e28ec1df2319962efe906 gcc/config/pa/pa32-linux.h
383d3a99e9a7d8e4a4acc6a9321613a4 gcc/config/pa/pa32-openbsd.h
221d32ea2a8f767e44a2d726dbc0dbef gcc/config/pa/pa32-regs.h
262310aee6b34f2fd0871797c49702c8 gcc/config/pa/pa64-hpux.h
--- 3938,3948 ----
221b23af89db8c07ec3d7dedbc5f4b07 gcc/config/pa/pa-openbsd.h
6b83d58f7455656adda798a184b07961 gcc/config/pa/pa-opts.h
b61d90d50654c7416ffbc50abb8b19f1 gcc/config/pa/pa-protos.h
! a0a179e8b7cbfa07d3f53186b1a7d08e gcc/config/pa/pa.c
! df423497f3494376692f3b451902ae72 gcc/config/pa/pa.h
! f214cdd0a0af71d8a9c464d72dd09146 gcc/config/pa/pa.md
! bf462e8a5710a6aafdf81ccefa55fd56 gcc/config/pa/pa.opt
! 720abbdc4cfa6947475c60b33316e8cb gcc/config/pa/pa32-linux.h
383d3a99e9a7d8e4a4acc6a9321613a4 gcc/config/pa/pa32-openbsd.h
221d32ea2a8f767e44a2d726dbc0dbef gcc/config/pa/pa32-regs.h
262310aee6b34f2fd0871797c49702c8 gcc/config/pa/pa64-hpux.h
*************** eb9d36b974fb5da522252c2fd83f6add gcc/co
*** 3949,3956 ****
2a9c877b50b313f9fe7398888b5c6b0c gcc/config/pa/pa64-linux.h
50d486e69e8da5cd1e913d309a324408 gcc/config/pa/pa64-regs.h
a9a6afd79b827565ffb8de8330b4cfe6 gcc/config/pa/pa64-start.h
! 7f4db55414b7919352d4dae90e718da7 gcc/config/pa/predicates.md
! 4204b24bdbb7e291a399d26a2a1a4780 gcc/config/pa/som.h
4104beb84cb7f3a8a5915652c3da66c5 gcc/config/pa/t-dce-thr
6fd25f8c665d2d7390ea94c01dcb8e34 gcc/config/pa/t-linux
b6278c3de5f5690b62f0fdb46d14dfde gcc/config/pa/t-pa
--- 3950,3957 ----
2a9c877b50b313f9fe7398888b5c6b0c gcc/config/pa/pa64-linux.h
50d486e69e8da5cd1e913d309a324408 gcc/config/pa/pa64-regs.h
a9a6afd79b827565ffb8de8330b4cfe6 gcc/config/pa/pa64-start.h
! ab0afcd45fd4bb30092657caa64d8c43 gcc/config/pa/predicates.md
! dd811cd74da4093bf2efff2e636b4f73 gcc/config/pa/som.h
4104beb84cb7f3a8a5915652c3da66c5 gcc/config/pa/t-dce-thr
6fd25f8c665d2d7390ea94c01dcb8e34 gcc/config/pa/t-linux
b6278c3de5f5690b62f0fdb46d14dfde gcc/config/pa/t-pa
*************** b633ae2c150c0a7ff32e94677366ac6b gcc/co
*** 3980,3989 ****
372fbbf660d5901d0ac9b56f0cb5414c gcc/config/riscv/riscv-ftypes.def
afffedc233620fe88ee1b6b5d6670d00 gcc/config/riscv/riscv-modes.def
05684f4f767303bf3e8ee2037e8460a3 gcc/config/riscv/riscv-opts.h
! e5929a50928fd224822c997b287af1ac gcc/config/riscv/riscv-protos.h
! 86097dbf1bbec8faa46980ae30986735 gcc/config/riscv/riscv.c
! 365d11e301f3d45216a9e97f47389b60 gcc/config/riscv/riscv.h
! a9361b093e4240fb11fc7edc29f4c483 gcc/config/riscv/riscv.md
d503449a0faaaf29e00e2a90d5d5aa9a gcc/config/riscv/riscv.opt
fa44ac898fb39747d9ba92f0cc85fc2d gcc/config/riscv/rtems.h
e6cdbfde821d41652865b25c4da8dd71 gcc/config/riscv/sifive-7.md
--- 3981,3990 ----
372fbbf660d5901d0ac9b56f0cb5414c gcc/config/riscv/riscv-ftypes.def
afffedc233620fe88ee1b6b5d6670d00 gcc/config/riscv/riscv-modes.def
05684f4f767303bf3e8ee2037e8460a3 gcc/config/riscv/riscv-opts.h
! 6fb3302054530f88042ca648121653be gcc/config/riscv/riscv-protos.h
! 451b03732522d0ac16c477cfd6dbcdae gcc/config/riscv/riscv.c
! 4a844d7ddddd743268554abd432be8aa gcc/config/riscv/riscv.h
! 74dc369ded5dd7872baaa5d6efc4256d gcc/config/riscv/riscv.md
d503449a0faaaf29e00e2a90d5d5aa9a gcc/config/riscv/riscv.opt
fa44ac898fb39747d9ba92f0cc85fc2d gcc/config/riscv/rtems.h
e6cdbfde821d41652865b25c4da8dd71 gcc/config/riscv/sifive-7.md
*************** b43fe9b9c3729d83fe44b7ce71ed0876 gcc/co
*** 4028,4034 ****
5eea7a0c18fee710ed2f449775387492 gcc/config/rs6000/aix71.h
e7c1170f546e1c5c2e054c60799c11eb gcc/config/rs6000/aix72.h
e55f0789345e9b72fc8a7b8cb7b19e4a gcc/config/rs6000/altivec.h
! a85e707cc5de9a1714844fb1affcf0b8 gcc/config/rs6000/altivec.md
f8a755a4ac201e92796b8d6135392b4a gcc/config/rs6000/amo.h
957423610c96144855faff9547a793e1 gcc/config/rs6000/biarch64.h
a915600458fae47869e65eed62c0ef5e gcc/config/rs6000/bmi2intrin.h
--- 4029,4035 ----
5eea7a0c18fee710ed2f449775387492 gcc/config/rs6000/aix71.h
e7c1170f546e1c5c2e054c60799c11eb gcc/config/rs6000/aix72.h
e55f0789345e9b72fc8a7b8cb7b19e4a gcc/config/rs6000/altivec.h
! 078a59ca1104b58754cc56a1ac407984 gcc/config/rs6000/altivec.md
f8a755a4ac201e92796b8d6135392b4a gcc/config/rs6000/amo.h
957423610c96144855faff9547a793e1 gcc/config/rs6000/biarch64.h
a915600458fae47869e65eed62c0ef5e gcc/config/rs6000/bmi2intrin.h
*************** c95dd9752e41e9258ebaf3b692adada6 gcc/co
*** 4036,4043 ****
567f6de64645ab4b1122ae612e5d543e gcc/config/rs6000/cell.md
6d8baadd5e64948caea5c3aa15475ba0 gcc/config/rs6000/constraints.md
dfd6eafaab4ad60c780cfef035f0322e gcc/config/rs6000/crypto.md
! cadc7727e5e55e0020f009a5afcc756f gcc/config/rs6000/darwin.h
! 01cf6448def53c6b354f3e29bb258278 gcc/config/rs6000/darwin.md
b274f63e1b2447b8058a0bcf2402eb3f gcc/config/rs6000/darwin.opt
e2442f7a7d39c650b30c87274f59db87 gcc/config/rs6000/darwin32-biarch.h
3aeaaf4c43f3df11b4fac94ff932c8c1 gcc/config/rs6000/darwin64-biarch.h
--- 4037,4044 ----
567f6de64645ab4b1122ae612e5d543e gcc/config/rs6000/cell.md
6d8baadd5e64948caea5c3aa15475ba0 gcc/config/rs6000/constraints.md
dfd6eafaab4ad60c780cfef035f0322e gcc/config/rs6000/crypto.md
! 9f7c2b965f1e1b18f022e30af1668c9a gcc/config/rs6000/darwin.h
! ad5b9c09387e3b630cb1aef9bcc5a9e6 gcc/config/rs6000/darwin.md
b274f63e1b2447b8058a0bcf2402eb3f gcc/config/rs6000/darwin.opt
e2442f7a7d39c650b30c87274f59db87 gcc/config/rs6000/darwin32-biarch.h
3aeaaf4c43f3df11b4fac94ff932c8c1 gcc/config/rs6000/darwin64-biarch.h
*************** b3d939adbe3c24b55301ff602e773471 gcc/co
*** 4084,4091 ****
9f28b459a3e622d1b4ae0adfcabbe4dd gcc/config/rs6000/ppc-asm.h
5777c2d902ae4f4ff95446156e481673 gcc/config/rs6000/ppc-auxv.h
3187f46196cebfb604900c1bbe5eae39 gcc/config/rs6000/ppu_intrinsics.h
! b6ba3d6397778fc8a9b95b8cc1a8921d gcc/config/rs6000/predicates.md
! db3a72d4ab08bdecda86fb321131459e gcc/config/rs6000/rs6000-builtin.def
3a99424cba4785c7f3d76710f9c6609b gcc/config/rs6000/rs6000-c.c
348da2d9b5598c03de90a6b5d3b4f37a gcc/config/rs6000/rs6000-cpus.def
35cba9a7bddf0d5252d71953ae76e024 gcc/config/rs6000/rs6000-d.c
--- 4085,4092 ----
9f28b459a3e622d1b4ae0adfcabbe4dd gcc/config/rs6000/ppc-asm.h
5777c2d902ae4f4ff95446156e481673 gcc/config/rs6000/ppc-auxv.h
3187f46196cebfb604900c1bbe5eae39 gcc/config/rs6000/ppu_intrinsics.h
! 75e4ec071f21e961634668614605a4cd gcc/config/rs6000/predicates.md
! ac48c1cbf81ae8b34d00f72a585ee0e5 gcc/config/rs6000/rs6000-builtin.def
3a99424cba4785c7f3d76710f9c6609b gcc/config/rs6000/rs6000-c.c
348da2d9b5598c03de90a6b5d3b4f37a gcc/config/rs6000/rs6000-cpus.def
35cba9a7bddf0d5252d71953ae76e024 gcc/config/rs6000/rs6000-d.c
*************** c67f18c015c106b14dacb2ba51479ff7 gcc/co
*** 4093,4106 ****
4c247e7d5a6ce74cf83a3fe8aab4f654 gcc/config/rs6000/rs6000-modes.def
15ae2f98aaf815d75cf6c901ae237246 gcc/config/rs6000/rs6000-modes.h
07e2821d2d84428d1d1b6556421c64bc gcc/config/rs6000/rs6000-opts.h
! b7decad9b412bf54a19e72fda0e53102 gcc/config/rs6000/rs6000-p8swap.c
e05d5c8a047de2d8fdd1f7ee6af44deb gcc/config/rs6000/rs6000-passes.def
f168035749ab2d165f81b6bb536c11f9 gcc/config/rs6000/rs6000-protos.h
3a8f1ad11a0dba7ead152579f7b3da5b gcc/config/rs6000/rs6000-string.c
02c1e43342566e1b7fa224f7a0cf807c gcc/config/rs6000/rs6000-tables.opt
! fac4339c0b9fef13fddf986326e4e379 gcc/config/rs6000/rs6000.c
76927b1dd36d76ab689025e8f53db229 gcc/config/rs6000/rs6000.h
! 4a3514e43b2e5fc573ea0cf33eedf0bf gcc/config/rs6000/rs6000.md
f42f20695669f67fccd35baa16ab0310 gcc/config/rs6000/rs6000.opt
b54874e2fde6e0300f164482ad632a4b gcc/config/rs6000/rs64.md
424fb74362a73e416da3877193899737 gcc/config/rs6000/rtems.h
--- 4094,4107 ----
4c247e7d5a6ce74cf83a3fe8aab4f654 gcc/config/rs6000/rs6000-modes.def
15ae2f98aaf815d75cf6c901ae237246 gcc/config/rs6000/rs6000-modes.h
07e2821d2d84428d1d1b6556421c64bc gcc/config/rs6000/rs6000-opts.h
! 7bed5a5c20fd6da84667ef7d4fb1c246 gcc/config/rs6000/rs6000-p8swap.c
e05d5c8a047de2d8fdd1f7ee6af44deb gcc/config/rs6000/rs6000-passes.def
f168035749ab2d165f81b6bb536c11f9 gcc/config/rs6000/rs6000-protos.h
3a8f1ad11a0dba7ead152579f7b3da5b gcc/config/rs6000/rs6000-string.c
02c1e43342566e1b7fa224f7a0cf807c gcc/config/rs6000/rs6000-tables.opt
! 5a36e4f72ac846fd03bea7961574e7b8 gcc/config/rs6000/rs6000.c
76927b1dd36d76ab689025e8f53db229 gcc/config/rs6000/rs6000.h
! 15d64eebbffa950613bebf86a98d9a78 gcc/config/rs6000/rs6000.md
f42f20695669f67fccd35baa16ab0310 gcc/config/rs6000/rs6000.opt
b54874e2fde6e0300f164482ad632a4b gcc/config/rs6000/rs64.md
424fb74362a73e416da3877193899737 gcc/config/rs6000/rtems.h
*************** f11925c88524d2fd457bf77944da1302 gcc/co
*** 4136,4142 ****
c3054f6c3f5da02827e7daaede36f96c gcc/config/rs6000/titan.md
fcd8864ddc626c0896bf07db7cb4b10f gcc/config/rs6000/tmmintrin.h
e7c6abe3e4c1f795aea38db6f87100ef gcc/config/rs6000/vec_types.h
! efa30893b5d21cd8ef645501efba3911 gcc/config/rs6000/vector.md
52f0286fece184451b30aa6ecdde7621 gcc/config/rs6000/vsx.md
d88c24ce567bf733e4984b96f051df6e gcc/config/rs6000/vxworks.h
1c95cf789023980c7f19ce5c4df89871 gcc/config/rs6000/vxworksae.h
--- 4137,4143 ----
c3054f6c3f5da02827e7daaede36f96c gcc/config/rs6000/titan.md
fcd8864ddc626c0896bf07db7cb4b10f gcc/config/rs6000/tmmintrin.h
e7c6abe3e4c1f795aea38db6f87100ef gcc/config/rs6000/vec_types.h
! 58998952b5554e3a9fbf3ab504a30cce gcc/config/rs6000/vector.md
52f0286fece184451b30aa6ecdde7621 gcc/config/rs6000/vsx.md
d88c24ce567bf733e4984b96f051df6e gcc/config/rs6000/vxworks.h
1c95cf789023980c7f19ce5c4df89871 gcc/config/rs6000/vxworksae.h
*************** aace25a7a99722370f5bbb4ea8ede17c gcc/co
*** 4168,4193 ****
1947bfced8a0f19c9ce13415fe8bc7bd gcc/config/s390/2827.md
8ebbc7301c6c9d7437971588cfbad5d7 gcc/config/s390/2964.md
0bc60c1135764267ff7a18533e9d6d3a gcc/config/s390/3906.md
! 839ea3caff7ba84d1eecd318929597c5 gcc/config/s390/8561.md
b9775fb0b786e95500ef4c3282f2d196 gcc/config/s390/constraints.md
! c5b44dd90f3e1980c07169388ad9765c gcc/config/s390/driver-native.c
c4723824aac95293fe06a0d0f03e7fcc gcc/config/s390/htmintrin.h
2ac628db9a0722e19db3984cabf0bdd2 gcc/config/s390/htmxlintrin.h
470243daad5f900b9480e6660e40bfcd gcc/config/s390/linux.h
6d6f752891c6a5263db90d432ad1fdc5 gcc/config/s390/predicates.md
04ce79db852e19e8a51c0ab61d156e77 gcc/config/s390/s390-builtin-types.def
! 9003fb028bd2ca54d39b03dc377ee7a7 gcc/config/s390/s390-builtins.def
5f17ced67bad53d0f067cc4a6a9631c9 gcc/config/s390/s390-builtins.h
! 7ebad9a2cce3ae1eb2c9cededa3f4cb4 gcc/config/s390/s390-c.c
d62ad81b9b95b971688c1385c878bc31 gcc/config/s390/s390-d.c
0366678280dc8b0477044c81ce524f4e gcc/config/s390/s390-modes.def
! 1328208fac979b3f159cf0f9039e70c5 gcc/config/s390/s390-opts.h
21970edfb4a16e9319b3bf577666397b gcc/config/s390/s390-passes.def
6e21265ae0a20bcc8f3e7ecee4ded227 gcc/config/s390/s390-protos.h
! 44693f728f25bd3a1e38141c3be17229 gcc/config/s390/s390.c
! 2f0538ee39eb709792fe44c1cb564f51 gcc/config/s390/s390.h
! 156584dc3810f540be3e2ee68e5c9773 gcc/config/s390/s390.md
! 01acd928a3dd1619082c6f8f36604b41 gcc/config/s390/s390.opt
3a7d4589eccec5ca0c1509ad826a7645 gcc/config/s390/s390intrin.h
38978838a5b1948ea8a22c90711f0ea8 gcc/config/s390/s390x.h
cbd40463e3ea483403791298453fd71e gcc/config/s390/subst.md
--- 4169,4194 ----
1947bfced8a0f19c9ce13415fe8bc7bd gcc/config/s390/2827.md
8ebbc7301c6c9d7437971588cfbad5d7 gcc/config/s390/2964.md
0bc60c1135764267ff7a18533e9d6d3a gcc/config/s390/3906.md
! e62e566004dee2dfaddf5b4abf3cfdb0 gcc/config/s390/8561.md
b9775fb0b786e95500ef4c3282f2d196 gcc/config/s390/constraints.md
! 3ae90e048a9b94b111fb0372c3564d6c gcc/config/s390/driver-native.c
c4723824aac95293fe06a0d0f03e7fcc gcc/config/s390/htmintrin.h
2ac628db9a0722e19db3984cabf0bdd2 gcc/config/s390/htmxlintrin.h
470243daad5f900b9480e6660e40bfcd gcc/config/s390/linux.h
6d6f752891c6a5263db90d432ad1fdc5 gcc/config/s390/predicates.md
04ce79db852e19e8a51c0ab61d156e77 gcc/config/s390/s390-builtin-types.def
! 6e236c7f87a7df0ad4eeb3b66cb250bf gcc/config/s390/s390-builtins.def
5f17ced67bad53d0f067cc4a6a9631c9 gcc/config/s390/s390-builtins.h
! 5ff9c1018b5bd0324fc851da40fa4daa gcc/config/s390/s390-c.c
d62ad81b9b95b971688c1385c878bc31 gcc/config/s390/s390-d.c
0366678280dc8b0477044c81ce524f4e gcc/config/s390/s390-modes.def
! ca961517247358a5ffc34d0c59247348 gcc/config/s390/s390-opts.h
21970edfb4a16e9319b3bf577666397b gcc/config/s390/s390-passes.def
6e21265ae0a20bcc8f3e7ecee4ded227 gcc/config/s390/s390-protos.h
! 51306c1b1436b88c0c69202ac099ae14 gcc/config/s390/s390.c
! 82f9561a6a9f3081fdbb4ee739d174f1 gcc/config/s390/s390.h
! a3a97382432237c66f55a60df5bd1bc4 gcc/config/s390/s390.md
! bdbd5866cc1cf0030217b3d42f505a09 gcc/config/s390/s390.opt
3a7d4589eccec5ca0c1509ad826a7645 gcc/config/s390/s390intrin.h
38978838a5b1948ea8a22c90711f0ea8 gcc/config/s390/s390x.h
cbd40463e3ea483403791298453fd71e gcc/config/s390/subst.md
*************** c9bbda48804d4713ec85f78f9d2d6e6d gcc/co
*** 4197,4204 ****
62076dd49a73c59d5edaf7d215d1c780 gcc/config/s390/tpf.md
c07c00818fb5b099d66aaebda265bdbb gcc/config/s390/tpf.opt
ea0acfd9c6b6faf70d98bed7a69f30dc gcc/config/s390/vecintrin.h
! f165ba13d6f2e65afa611effc8d91bdd gcc/config/s390/vector.md
! fe7a02218dffbe45ed74aae1a436d5ed gcc/config/s390/vx-builtins.md
19876f77a242921272972ac5b8bd32d0 gcc/config/s390/x-native
f4f7b404fcddc18914dae558d104af08 gcc/config/sh/constraints.md
cdcba76a08631d945bbc4da7795d5214 gcc/config/sh/divcost-analysis
--- 4198,4205 ----
62076dd49a73c59d5edaf7d215d1c780 gcc/config/s390/tpf.md
c07c00818fb5b099d66aaebda265bdbb gcc/config/s390/tpf.opt
ea0acfd9c6b6faf70d98bed7a69f30dc gcc/config/s390/vecintrin.h
! 7deb993be73261715bad04e286f721c2 gcc/config/s390/vector.md
! 0c28296e373ef4c0462b02b76e97d264 gcc/config/s390/vx-builtins.md
19876f77a242921272972ac5b8bd32d0 gcc/config/s390/x-native
f4f7b404fcddc18914dae558d104af08 gcc/config/sh/constraints.md
cdcba76a08631d945bbc4da7795d5214 gcc/config/sh/divcost-analysis
*************** f310845fcf532dedab23b0fc91cb3568 gcc/co
*** 4219,4227 ****
8b4b0855ed5d1842b5e56ddcd69bc503 gcc/config/sh/sh-mem.cc
5b08d19292c262fd3da797a5590df401 gcc/config/sh/sh-modes.def
5a81a0c3a99d8de465804b5346bdbfdf gcc/config/sh/sh-protos.h
! 2a6d354c4ccc62dcb516f8470f917e9d gcc/config/sh/sh.c
! f385d180679a4ae484d77a7f8123ab26 gcc/config/sh/sh.h
! f0bc2f8917c3daaae78e7cd387f205c9 gcc/config/sh/sh.md
7e7c2018a6c87b994b6e8a14585f0af7 gcc/config/sh/sh.opt
20bf20a289282088598974dc05a5e46e gcc/config/sh/sh1.md
32b66d09c1e01c79eff39b56feaf0bc7 gcc/config/sh/sh4-300.md
--- 4220,4228 ----
8b4b0855ed5d1842b5e56ddcd69bc503 gcc/config/sh/sh-mem.cc
5b08d19292c262fd3da797a5590df401 gcc/config/sh/sh-modes.def
5a81a0c3a99d8de465804b5346bdbfdf gcc/config/sh/sh-protos.h
! e21052b9eced2c0778f1502d289759ba gcc/config/sh/sh.c
! ef560ba32868e2fd6490d682b243afff gcc/config/sh/sh.h
! d3f27a217035f9be4042a2819e02cfb2 gcc/config/sh/sh.md
7e7c2018a6c87b994b6e8a14585f0af7 gcc/config/sh/sh.opt
20bf20a289282088598974dc05a5e46e gcc/config/sh/sh1.md
32b66d09c1e01c79eff39b56feaf0bc7 gcc/config/sh/sh4-300.md
*************** d6a9639a16de2f1ae0f263abb58d2eae gcc/co
*** 4276,4285 ****
aa427cfe3d4647ac44c278f45436ba49 gcc/config/sparc/sparc-modes.def
4d82caaf475b262387af725b2a52e701 gcc/config/sparc/sparc-opts.h
1ca073b706c09a8ae55d2d0ee31091a0 gcc/config/sparc/sparc-passes.def
! 59ef6e842f252c9bb831564db49c3df2 gcc/config/sparc/sparc-protos.h
! c04e4747a299c2f4b7f2b294dea6ee2c gcc/config/sparc/sparc.c
! de3d22a440f256ba4e2d34bfb81f01f6 gcc/config/sparc/sparc.h
! 110a5f2151e4458fb6d95a08006a7df7 gcc/config/sparc/sparc.md
050d31a7b1dbcd95852a707f8ebe3664 gcc/config/sparc/sparc.opt
c052a53dc474a5b053d578d0786b423f gcc/config/sparc/sparclet.md
32e66172adfe4887087c0252d7c91228 gcc/config/sparc/supersparc.md
--- 4277,4286 ----
aa427cfe3d4647ac44c278f45436ba49 gcc/config/sparc/sparc-modes.def
4d82caaf475b262387af725b2a52e701 gcc/config/sparc/sparc-opts.h
1ca073b706c09a8ae55d2d0ee31091a0 gcc/config/sparc/sparc-passes.def
! e8f3f2e01b0ed58f47eeac35c8e0b772 gcc/config/sparc/sparc-protos.h
! c7a04165ff8ccd0ade80467c687602c1 gcc/config/sparc/sparc.c
! a2ede8e59ead9a217e540e45df14d1d0 gcc/config/sparc/sparc.h
! ea7f7d916e67a76bdf99ac97a56120ac gcc/config/sparc/sparc.md
050d31a7b1dbcd95852a707f8ebe3664 gcc/config/sparc/sparc.opt
c052a53dc474a5b053d578d0786b423f gcc/config/sparc/sparclet.md
32e66172adfe4887087c0252d7c91228 gcc/config/sparc/supersparc.md
*************** cedce92401c4008c9536106e451ece62 gcc/co
*** 4465,4476 ****
a8c893ecb112128e2e019ca7925bc177 gcc/config/xtensa/uclinux.h
8fddc00a69db0ebf7f56b72d61f1e14f gcc/config/xtensa/uclinux.opt
e2716a9c263d8620df09ed3545363391 gcc/config/xtensa/xtensa-protos.h
! f0b5323b9553fa1139cd29c338a9ea19 gcc/config/xtensa/xtensa.c
9435e37ec4d9b10632cb0274c23733dd gcc/config/xtensa/xtensa.h
ec3e3224a3f6496c1a6dd45373ea942d gcc/config/xtensa/xtensa.md
4d2567221429e8ff6bdf03bddaf11294 gcc/config/xtensa/xtensa.opt
! 6ab2cb239daed476bbeff3bdbec2ac4c gcc/configure
! 62e702d44582105b93df359a85debf33 gcc/configure.ac
a172c20ab64d456534d82432f8645b86 gcc/context.c
efedd3c44c8cd7fc59f7eda74f6fd29d gcc/context.h
37a26a95e18d4e6618aff970a29ca502 gcc/convert.c
--- 4466,4477 ----
a8c893ecb112128e2e019ca7925bc177 gcc/config/xtensa/uclinux.h
8fddc00a69db0ebf7f56b72d61f1e14f gcc/config/xtensa/uclinux.opt
e2716a9c263d8620df09ed3545363391 gcc/config/xtensa/xtensa-protos.h
! 19177a171b89ec197c2e7619de45899a gcc/config/xtensa/xtensa.c
9435e37ec4d9b10632cb0274c23733dd gcc/config/xtensa/xtensa.h
ec3e3224a3f6496c1a6dd45373ea942d gcc/config/xtensa/xtensa.md
4d2567221429e8ff6bdf03bddaf11294 gcc/config/xtensa/xtensa.opt
! db16420fb29002524e72a6ae5aee4dac gcc/configure
! 4121496431f6081ffbd92911480216dd gcc/configure.ac
a172c20ab64d456534d82432f8645b86 gcc/context.c
efedd3c44c8cd7fc59f7eda74f6fd29d gcc/context.h
37a26a95e18d4e6618aff970a29ca502 gcc/convert.c
*************** d1a041b82500893b285a0062712d277b gcc/co
*** 4478,4484 ****
f36fa6387bfd9a1849583a199f1bbb8b gcc/coretypes.h
e78da05a0986f248aff43cbd5b3494f0 gcc/coverage.c
57a63860b2bca8fd7a62d7386a3a92f7 gcc/coverage.h
! 8c196718141396e635f974d0b4030fdd gcc/cp/ChangeLog
d271e3663538ba1f3281cab3838e92cd gcc/cp/ChangeLog-1993
f5a44adbc05521162350ca409d1d95ce gcc/cp/ChangeLog-1994
ac55db48d964cb5469ff03c1cd3ee04d gcc/cp/ChangeLog-1995
--- 4479,4485 ----
f36fa6387bfd9a1849583a199f1bbb8b gcc/coretypes.h
e78da05a0986f248aff43cbd5b3494f0 gcc/coverage.c
57a63860b2bca8fd7a62d7386a3a92f7 gcc/coverage.h
! 7f3ac9ce2acfe782cae23e8037406fb1 gcc/cp/ChangeLog
d271e3663538ba1f3281cab3838e92cd gcc/cp/ChangeLog-1993
f5a44adbc05521162350ca409d1d95ce gcc/cp/ChangeLog-1994
ac55db48d964cb5469ff03c1cd3ee04d gcc/cp/ChangeLog-1995
*************** c1c7801b9b0f379e702a4f6cb83972e7 gcc/cp
*** 4509,4564 ****
9aa3cd9f75c785de9f51446e3f295515 gcc/cp/ChangeLog.tree-ssa
927c956157fea028964c8aec368e5ed2 gcc/cp/Make-lang.in
a278dbf0995f78e9c037b3c4f1558d27 gcc/cp/NEWS
! 905b009c625bc5d48ec53cf4eda5b561 gcc/cp/call.c
bd7a7016228b634d3bb60519ffbdcde6 gcc/cp/cfns.gperf
e1aef57a57197c4db859e6bafa97cbfb gcc/cp/cfns.h
! 75f0d7f3ffe607138911abf5db69e3bf gcc/cp/class.c
5bb396c6ffef5b425dc65c47c112fed6 gcc/cp/config-lang.in
! 9a3d67c643e1c142025cdb6e53240c3b gcc/cp/constexpr.c
! 6438b01a449c6c1c8bd5fc7b127be7f3 gcc/cp/constraint.cc
! 3b9ec13706212fb9248903c032e790fb gcc/cp/cp-gimplify.c
8d003f7c56f3b655d27aededf2e31606 gcc/cp/cp-lang.c
cc48600f1ca0be9a19049072dd42b85e gcc/cp/cp-name-hint.h
! ba261506b22207389fea2bb55fe402c7 gcc/cp/cp-objcp-common.c
c8b9da9c09a506504b0c54beff127041 gcc/cp/cp-objcp-common.h
6ea954ee3f925c4785d3d5857da37472 gcc/cp/cp-tree.def
! fe3d2bf68c7b732aca95952928ab1ecf gcc/cp/cp-tree.h
0783a755e68a2794f241b524e94f3353 gcc/cp/cp-ubsan.c
daadab04ea47474c93c89ea05140ebbd gcc/cp/cvt.c
01b7c558a0ac024db7c60c6be62c6182 gcc/cp/cxx-pretty-print.c
7678a47a8d93312c8398e268ffc5f308 gcc/cp/cxx-pretty-print.h
! 537433c6cc08f6a4eb86c9627ea90f56 gcc/cp/decl.c
76de9595bf45ff8c300bb78f7b6e3c45 gcc/cp/decl.h
! 8f138efafaa69a3eb3ff459a60617efb gcc/cp/decl2.c
d68784ba349655ce2b051133db1fa676 gcc/cp/dump.c
8cfe3d7f84da7499e66a2551e0e3ee76 gcc/cp/error.c
80a9b2f4c389366bb1f4c40386761718 gcc/cp/except.c
11ce96c0d1e1bf354ec48e2e448664d8 gcc/cp/expr.c
50e91fd6211f17a456f074a8d8327f2d gcc/cp/friend.c
924d92243a92c5fe453452023675f96d gcc/cp/g++spec.c
! 450f9ce2eb9e209abe2c7cf5e5b6d9c3 gcc/cp/init.c
! 4f6397e67b176f88561f4c5a9db0edf7 gcc/cp/lambda.c
e7f47fb180b2ce4ccd8d330e3fc7e0fb gcc/cp/lang-specs.h
f1a6231ae470a1750e57819b2f004be9 gcc/cp/lex.c
656a41f03fcd123732899b8be272be88 gcc/cp/logic.cc
! d23d8a62b13c842733358e62acf2ea0a gcc/cp/mangle.c
c35b9e09bf86e979189e4b4ff320ed81 gcc/cp/method.c
! 68d5e2bf8ce1292bfe6822be7d4dc589 gcc/cp/name-lookup.c
415a1e03948c0a97410e0c8df020777c gcc/cp/name-lookup.h
779f6c0c5ade6968723ca62c0849ab82 gcc/cp/operators.def
b9f1b1883295d945297dfce4b04adc55 gcc/cp/optimize.c
! 8a54d70262a68ad148ba3e98414a3f27 gcc/cp/parser.c
61fc5d88549647fbe68ceb0f175b1a6f gcc/cp/parser.h
! 318116e8b34b87e8aa2d628bb097e1ac gcc/cp/pt.c
dc36180a1e0205c61709a1dcb3da2bc1 gcc/cp/ptree.c
c191067abf9a5a2693dbbe01025ed1e2 gcc/cp/repo.c
37d68656370c1e59494aec59f81a7334 gcc/cp/rtti.c
19996ebc786c9b84189e3750bee1dec1 gcc/cp/search.c
! 6b240f10d994ac15c88702084192d5b9 gcc/cp/semantics.c
! 392210500e68921ed44221a84cc8f07c gcc/cp/tree.c
839663aeac0fb479ddbc961c92afb34d gcc/cp/type-utils.h
! fbe465a5109444d3faf5ca850fb0d3b9 gcc/cp/typeck.c
! 9d59826bb0f162c5568d6c0a27290ec4 gcc/cp/typeck2.c
b11f9a133d5862c4062de877470cbc63 gcc/cp/vtable-class-hierarchy.c
c7b05adeb502c9e885483461d1e59f99 gcc/cppbuiltin.c
fd364bcfc8956c1e8e97417e3d79206a gcc/cppbuiltin.h
--- 4510,4565 ----
9aa3cd9f75c785de9f51446e3f295515 gcc/cp/ChangeLog.tree-ssa
927c956157fea028964c8aec368e5ed2 gcc/cp/Make-lang.in
a278dbf0995f78e9c037b3c4f1558d27 gcc/cp/NEWS
! d974b491588b595619b0009df675942b gcc/cp/call.c
bd7a7016228b634d3bb60519ffbdcde6 gcc/cp/cfns.gperf
e1aef57a57197c4db859e6bafa97cbfb gcc/cp/cfns.h
! b3b9592b43f1088212cc109b6ac16fa1 gcc/cp/class.c
5bb396c6ffef5b425dc65c47c112fed6 gcc/cp/config-lang.in
! 9a13064820d3c754f6aef0fb989413f7 gcc/cp/constexpr.c
! 0a465881de25f2f3086e995915c8e33a gcc/cp/constraint.cc
! 803a35301366f3f3af762fd0db61acdc gcc/cp/cp-gimplify.c
8d003f7c56f3b655d27aededf2e31606 gcc/cp/cp-lang.c
cc48600f1ca0be9a19049072dd42b85e gcc/cp/cp-name-hint.h
! 9b1647c60e17bf71d36685f45bd35790 gcc/cp/cp-objcp-common.c
c8b9da9c09a506504b0c54beff127041 gcc/cp/cp-objcp-common.h
6ea954ee3f925c4785d3d5857da37472 gcc/cp/cp-tree.def
! abb30163c564de1d51a6702465880213 gcc/cp/cp-tree.h
0783a755e68a2794f241b524e94f3353 gcc/cp/cp-ubsan.c
daadab04ea47474c93c89ea05140ebbd gcc/cp/cvt.c
01b7c558a0ac024db7c60c6be62c6182 gcc/cp/cxx-pretty-print.c
7678a47a8d93312c8398e268ffc5f308 gcc/cp/cxx-pretty-print.h
! b8e0df9c48834efea8dfbf7b26c94173 gcc/cp/decl.c
76de9595bf45ff8c300bb78f7b6e3c45 gcc/cp/decl.h
! 8a4eeba7c195a85e360078d7c9c9fad2 gcc/cp/decl2.c
d68784ba349655ce2b051133db1fa676 gcc/cp/dump.c
8cfe3d7f84da7499e66a2551e0e3ee76 gcc/cp/error.c
80a9b2f4c389366bb1f4c40386761718 gcc/cp/except.c
11ce96c0d1e1bf354ec48e2e448664d8 gcc/cp/expr.c
50e91fd6211f17a456f074a8d8327f2d gcc/cp/friend.c
924d92243a92c5fe453452023675f96d gcc/cp/g++spec.c
! 36b904a9d3aa475cfb02dc0600803db1 gcc/cp/init.c
! 8091451e3b70b38dbb8b5e1790f5374a gcc/cp/lambda.c
e7f47fb180b2ce4ccd8d330e3fc7e0fb gcc/cp/lang-specs.h
f1a6231ae470a1750e57819b2f004be9 gcc/cp/lex.c
656a41f03fcd123732899b8be272be88 gcc/cp/logic.cc
! 754a1c3b458bc459ef030ea26e079b33 gcc/cp/mangle.c
c35b9e09bf86e979189e4b4ff320ed81 gcc/cp/method.c
! 5abb739389554feedce4015cac3e8355 gcc/cp/name-lookup.c
415a1e03948c0a97410e0c8df020777c gcc/cp/name-lookup.h
779f6c0c5ade6968723ca62c0849ab82 gcc/cp/operators.def
b9f1b1883295d945297dfce4b04adc55 gcc/cp/optimize.c
! 63b361cb5c0498f965055aadc0b06ac4 gcc/cp/parser.c
61fc5d88549647fbe68ceb0f175b1a6f gcc/cp/parser.h
! 6c906bfac37466d8a0a84c0a1606c45a gcc/cp/pt.c
dc36180a1e0205c61709a1dcb3da2bc1 gcc/cp/ptree.c
c191067abf9a5a2693dbbe01025ed1e2 gcc/cp/repo.c
37d68656370c1e59494aec59f81a7334 gcc/cp/rtti.c
19996ebc786c9b84189e3750bee1dec1 gcc/cp/search.c
! 18ec5be803a6df3d4f9b50214e690f5d gcc/cp/semantics.c
! da26fb7f723c0dff77d5d6448cc52feb gcc/cp/tree.c
839663aeac0fb479ddbc961c92afb34d gcc/cp/type-utils.h
! 24117d2ca96a515291ace9f5c7b560ea gcc/cp/typeck.c
! d6edd32f4a64fbf1da10c96462e3f753 gcc/cp/typeck2.c
b11f9a133d5862c4062de877470cbc63 gcc/cp/vtable-class-hierarchy.c
c7b05adeb502c9e885483461d1e59f99 gcc/cppbuiltin.c
fd364bcfc8956c1e8e97417e3d79206a gcc/cppbuiltin.h
*************** ef3d8fd098598bd0e5755bdfd9f4bf2a gcc/cp
*** 4569,4575 ****
b1a7078331945dc9fa7c62633b4d7d50 gcc/cselib.c
063a252b68c316f24dc59a07f97e1d2b gcc/cselib.h
1ded054093de910d9786c62bc4fe8cc6 gcc/cstamp-h.in
! 913d267e278467a7fbbae4f9e77e2071 gcc/d/ChangeLog
86f687c485111eedca2eb048294f957e gcc/d/ChangeLog-2006
70ed1c47fd9b3f5dd95055642ed79265 gcc/d/ChangeLog-2007
a7090ab2dd83aa4f44823c17566b83ef gcc/d/ChangeLog-2008
--- 4570,4576 ----
b1a7078331945dc9fa7c62633b4d7d50 gcc/cselib.c
063a252b68c316f24dc59a07f97e1d2b gcc/cselib.h
1ded054093de910d9786c62bc4fe8cc6 gcc/cstamp-h.in
! 07fd812eb63d52699f2b2621931112b6 gcc/d/ChangeLog
86f687c485111eedca2eb048294f957e gcc/d/ChangeLog-2006
70ed1c47fd9b3f5dd95055642ed79265 gcc/d/ChangeLog-2007
a7090ab2dd83aa4f44823c17566b83ef gcc/d/ChangeLog-2008
*************** ab2f5418f1c15c04e6a1d91d968f531b gcc/di
*** 4781,4787 ****
94987d85fa0ecfdde6b7640a9f0e6e71 gcc/diagnostic.c
7a208b59c65869bf08fabf581f390197 gcc/diagnostic.def
2a723301855607472ce6ec1bd7dc876d gcc/diagnostic.h
! eea00eaa64d0d73adf4d44b8c928461b gcc/doc/avr-mmcu.texi
2996fde88037296d1a6cf9408a0681ce gcc/doc/bugreport.texi
51fc3b710678b1c1ca23d516762ea568 gcc/doc/cfg.texi
c0835a38b8c18669b65faf5efacb98d8 gcc/doc/collect2.texi
--- 4782,4788 ----
94987d85fa0ecfdde6b7640a9f0e6e71 gcc/diagnostic.c
7a208b59c65869bf08fabf581f390197 gcc/diagnostic.def
2a723301855607472ce6ec1bd7dc876d gcc/diagnostic.h
! a87c4af8638789a2ab96fc4e08569594 gcc/doc/avr-mmcu.texi
2996fde88037296d1a6cf9408a0681ce gcc/doc/bugreport.texi
51fc3b710678b1c1ca23d516762ea568 gcc/doc/cfg.texi
c0835a38b8c18669b65faf5efacb98d8 gcc/doc/collect2.texi
*************** f61fe8bd99c6a1ee739116e65817e9d4 gcc/do
*** 4789,4796 ****
85ec518d349577c9ee250bb43a2384bf gcc/doc/configfiles.texi
7b7190fbddc8b4e564f4ae2123abd2a8 gcc/doc/configterms.texi
60795d196c8261eb7d710f4bbdf5b015 gcc/doc/contrib.texi
! 2197383335890ab6f9d97741387a4787 gcc/doc/contribute.texi
! adfc0fa4e81a02197588d582f47e9b94 gcc/doc/cpp.1
4851bbb23c3348de1de4987f269ef888 gcc/doc/cpp.info
c9313bba6f7eacee229112ff3b8c8f70 gcc/doc/cpp.texi
b5148df3818448706f2b184a97174cad gcc/doc/cppdiropts.texi
--- 4790,4797 ----
85ec518d349577c9ee250bb43a2384bf gcc/doc/configfiles.texi
7b7190fbddc8b4e564f4ae2123abd2a8 gcc/doc/configterms.texi
60795d196c8261eb7d710f4bbdf5b015 gcc/doc/contrib.texi
! c6b2e96df83a0ae7111453ccafa54bd5 gcc/doc/contribute.texi
! 142f6e37be20b6bc017e3d00a970d569 gcc/doc/cpp.1
4851bbb23c3348de1de4987f269ef888 gcc/doc/cpp.info
c9313bba6f7eacee229112ff3b8c8f70 gcc/doc/cpp.texi
b5148df3818448706f2b184a97174cad gcc/doc/cppdiropts.texi
*************** fd3c07c06ef6f5ddefebf71a5528f68d gcc/do
*** 4799,4827 ****
598960212ed0c8d73595224d7d76691f gcc/doc/cppinternals.texi
f7bb9ac1b5dae60734555eca90a141ca gcc/doc/cppopts.texi
227d2ef483283b21aa396125c6d46af8 gcc/doc/cppwarnopts.texi
! 5b8486d4ec844f76ea0e094a9349baff gcc/doc/extend.texi
9847a0b4ecac8bf01bc1390013fa25f1 gcc/doc/fragments.texi
c6bd1ed9265f37784faebba05d829a4f gcc/doc/frontends.texi
! e72b2d74820fc8ccc3e33887f1c69856 gcc/doc/fsf-funding.7
! 7d09d5437f22d2099ebb7f23f61acf8b gcc/doc/g++.1
! 7d09d5437f22d2099ebb7f23f61acf8b gcc/doc/gcc.1
! 906f7ae859d6b42ae4227d486f28c421 gcc/doc/gcc.info
e49f40ab3091f625cf3ed09bbd005483 gcc/doc/gcc.texi
! ff758fe6546cdff8044c4a2c1e3d3133 gcc/doc/gccinstall.info
! 4bae601012691d2483dd5692312e8131 gcc/doc/gccint.info
b71c697ca91f3744177b1504dd26599c gcc/doc/gccint.texi
! 29ae8a02708edbdda72e8f372daf312a gcc/doc/gcov-dump.1
8a2e1271edd73ce818e66d7603a38736 gcc/doc/gcov-dump.texi
! d5ffd9db475fb7a6b3eea573e19ce4c8 gcc/doc/gcov-tool.1
c8c5612b4f78f5bbbb9094c3ce76017f gcc/doc/gcov-tool.texi
! d201598599cf01b1f667075dd986cf20 gcc/doc/gcov.1
4b1362331fe06b615478dd02a6a38525 gcc/doc/gcov.texi
a3b1af463ddc14719f053f2825afcd86 gcc/doc/generic.texi
! 861a3aab5449da30235ae0f508240b19 gcc/doc/gfdl.7
! 7f39f5e2bfbed0b33c225bc4a8c8d22c gcc/doc/gfortran.1
0162e7820af2a1b1c5ded204215ac77b gcc/doc/gimple.texi
290370669f02bef1502ada9273e5261f gcc/doc/gnu.texi
! 59465de0f006c3f1c7204c804bcb48eb gcc/doc/gpl.7
dd066b0630411d8431ab6142fd30bbaf gcc/doc/gty.texi
706dcee8b5b7d645197a197c3ef0764d gcc/doc/headerdirs.texi
11553023c3bbd45ec05788fcb50553d0 gcc/doc/hostconfig.texi
--- 4800,4828 ----
598960212ed0c8d73595224d7d76691f gcc/doc/cppinternals.texi
f7bb9ac1b5dae60734555eca90a141ca gcc/doc/cppopts.texi
227d2ef483283b21aa396125c6d46af8 gcc/doc/cppwarnopts.texi
! fed566a25b79ec8e5f260fa77efb80ef gcc/doc/extend.texi
9847a0b4ecac8bf01bc1390013fa25f1 gcc/doc/fragments.texi
c6bd1ed9265f37784faebba05d829a4f gcc/doc/frontends.texi
! 37e196a82bdedd6a1b63a29321a66a54 gcc/doc/fsf-funding.7
! 19b62fe2c32c9c0b59b4be662440c4a2 gcc/doc/g++.1
! 19b62fe2c32c9c0b59b4be662440c4a2 gcc/doc/gcc.1
! 766adaff478c47aa9b3efd902c2d25e2 gcc/doc/gcc.info
e49f40ab3091f625cf3ed09bbd005483 gcc/doc/gcc.texi
! cd2760702b14facfeccf1d723b2b085b gcc/doc/gccinstall.info
! 64b429fb6d6b46fc391503c94e4bc539 gcc/doc/gccint.info
b71c697ca91f3744177b1504dd26599c gcc/doc/gccint.texi
! 86c7983b0341a6036915247d090f335a gcc/doc/gcov-dump.1
8a2e1271edd73ce818e66d7603a38736 gcc/doc/gcov-dump.texi
! 40475741182cdf94ae2d52c1ab348e99 gcc/doc/gcov-tool.1
c8c5612b4f78f5bbbb9094c3ce76017f gcc/doc/gcov-tool.texi
! 866c1921d435d6048504a1f2b408782e gcc/doc/gcov.1
4b1362331fe06b615478dd02a6a38525 gcc/doc/gcov.texi
a3b1af463ddc14719f053f2825afcd86 gcc/doc/generic.texi
! 033abb801560eaf2c4f52506351c84bb gcc/doc/gfdl.7
! a27715a36cf212d8d805b5cfde2cf8ca gcc/doc/gfortran.1
0162e7820af2a1b1c5ded204215ac77b gcc/doc/gimple.texi
290370669f02bef1502ada9273e5261f gcc/doc/gnu.texi
! 75e8d4882f1805ff20f93ff23fb4a26e gcc/doc/gpl.7
dd066b0630411d8431ab6142fd30bbaf gcc/doc/gty.texi
706dcee8b5b7d645197a197c3ef0764d gcc/doc/headerdirs.texi
11553023c3bbd45ec05788fcb50553d0 gcc/doc/hostconfig.texi
*************** f0bb2341551b42660d4b8754a7d36ad4 gcc/do
*** 4833,4849 ****
5f5adc2c6c4ebdcf03cc0125250f5995 gcc/doc/include/gpl_v3.texi
73819b3930a3d4be5d6234070d02386a gcc/doc/include/texinfo.tex
f525208b1949ff445fb4a894794e8e05 gcc/doc/install-old.texi
! 9e97d084cfc56c8b6cec685aa1465f92 gcc/doc/install.texi
0f558b94d69d2b1452bc739b3d8712de gcc/doc/install.texi2html
ba0abad9116562664f5e8ea17d3cec7e gcc/doc/interface.texi
! 67898d77690b8cb33bed043be7b58025 gcc/doc/invoke.texi
096755dfefc05752e3fd09c84b9632a8 gcc/doc/languages.texi
7ca1cfbc8d0459fc45e1a53008bd1259 gcc/doc/libgcc.texi
d690c5f97dbd9a2c12aed96a27abfdc2 gcc/doc/loop.texi
6a65b736bae210ee6ac699129fef9136 gcc/doc/lto.texi
65e905ced82d6dad1abe88312afd1c02 gcc/doc/makefile.texi
590b29f7568e96895214b8a654823bca gcc/doc/match-and-simplify.texi
! 669f084ee769dabc8cfaa65d11c07ac6 gcc/doc/md.texi
a549bd2a5dd250ec64aba752604dab9b gcc/doc/objc.texi
224e14dfabc7a13be6aadf5b1b254e9d gcc/doc/optinfo.texi
ef592edb7b25dfd6ee1a108065e8d519 gcc/doc/options.texi
--- 4834,4850 ----
5f5adc2c6c4ebdcf03cc0125250f5995 gcc/doc/include/gpl_v3.texi
73819b3930a3d4be5d6234070d02386a gcc/doc/include/texinfo.tex
f525208b1949ff445fb4a894794e8e05 gcc/doc/install-old.texi
! 5cc5e954fc01686e56a9e380c98cb06c gcc/doc/install.texi
0f558b94d69d2b1452bc739b3d8712de gcc/doc/install.texi2html
ba0abad9116562664f5e8ea17d3cec7e gcc/doc/interface.texi
! 7d433bdb662c303d0e459f4864766165 gcc/doc/invoke.texi
096755dfefc05752e3fd09c84b9632a8 gcc/doc/languages.texi
7ca1cfbc8d0459fc45e1a53008bd1259 gcc/doc/libgcc.texi
d690c5f97dbd9a2c12aed96a27abfdc2 gcc/doc/loop.texi
6a65b736bae210ee6ac699129fef9136 gcc/doc/lto.texi
65e905ced82d6dad1abe88312afd1c02 gcc/doc/makefile.texi
590b29f7568e96895214b8a654823bca gcc/doc/match-and-simplify.texi
! 2f42cb2af0cd7d1fb7c19bcffa3e8895 gcc/doc/md.texi
a549bd2a5dd250ec64aba752604dab9b gcc/doc/objc.texi
224e14dfabc7a13be6aadf5b1b254e9d gcc/doc/optinfo.texi
ef592edb7b25dfd6ee1a108065e8d519 gcc/doc/options.texi
*************** d3b4d592e1f64e102849eebc9abf97d5 gcc/do
*** 4868,4881 ****
226fe2bbc73548a505901d13fb46b724 gcc/domwalk.h
e869f4b798f66ff3ffba28757ebca299 gcc/double-int.c
ecdf03096645bd6f1cebfdc727a686a9 gcc/double-int.h
! 7ba589a37debbbd7c84b01d944eedb85 gcc/dse.c
722f796482283e0c93d4e5000fbfcc00 gcc/dump-context.h
59b7fdb0b0e2a4c1c2ffa9233cb1cf97 gcc/dumpfile.c
ac8212e5149b4a43b5514799717c12e8 gcc/dumpfile.h
b427cf7950620d2efb54a542b24a040a gcc/dwarf2asm.c
3a904ab05dda79aabc42b47af11cd1d7 gcc/dwarf2asm.h
e4864f329de20345a85ba44662e25a91 gcc/dwarf2cfi.c
! 04bdd7d3b1852f032dce783a6296eb45 gcc/dwarf2out.c
51a2795ae1bb809164907da8da55a5c0 gcc/dwarf2out.h
3a65d932448ff362e9e09a4e85f01665 gcc/early-remat.c
084ecabdaf2905b82436533aaaf0b94b gcc/edit-context.c
--- 4869,4882 ----
226fe2bbc73548a505901d13fb46b724 gcc/domwalk.h
e869f4b798f66ff3ffba28757ebca299 gcc/double-int.c
ecdf03096645bd6f1cebfdc727a686a9 gcc/double-int.h
! 8fb601d26eb9f20278283a0799e74861 gcc/dse.c
722f796482283e0c93d4e5000fbfcc00 gcc/dump-context.h
59b7fdb0b0e2a4c1c2ffa9233cb1cf97 gcc/dumpfile.c
ac8212e5149b4a43b5514799717c12e8 gcc/dumpfile.h
b427cf7950620d2efb54a542b24a040a gcc/dwarf2asm.c
3a904ab05dda79aabc42b47af11cd1d7 gcc/dwarf2asm.h
e4864f329de20345a85ba44662e25a91 gcc/dwarf2cfi.c
! 7c4df4a783d19b5a10dcdcd86ffcdf3b gcc/dwarf2out.c
51a2795ae1bb809164907da8da55a5c0 gcc/dwarf2out.h
3a65d932448ff362e9e09a4e85f01665 gcc/early-remat.c
084ecabdaf2905b82436533aaaf0b94b gcc/edit-context.c
*************** af181a02f33e8d4d5264ddc86008d7d1 gcc/em
*** 4889,4897 ****
7da8abfbff30af506bd6267c01fd3a32 gcc/except.c
e3dbcca9faf05cdec97b81b92a0193e0 gcc/except.h
c57c11af41129f87aaf9a8eec7c5b614 gcc/exec-tool.in
! e8cb7a70ebd7ffa119d9588711ca65f7 gcc/explow.c
d445c1bb97b86f76c7530964bc3ac62e gcc/explow.h
! 67ac0c4166ae294625b1daddd5190419 gcc/expmed.c
9ff2927efa2e1a0e55558021c26390b5 gcc/expmed.h
e03097fa8bab2e0f672c851e349fe506 gcc/expr.c
22a1b040a029cec71713c858072c2d14 gcc/expr.h
--- 4890,4898 ----
7da8abfbff30af506bd6267c01fd3a32 gcc/except.c
e3dbcca9faf05cdec97b81b92a0193e0 gcc/except.h
c57c11af41129f87aaf9a8eec7c5b614 gcc/exec-tool.in
! 433c0a7e4b3b6fe4be1bffe126a6746f gcc/explow.c
d445c1bb97b86f76c7530964bc3ac62e gcc/explow.h
! c9816fbb324ebc697496c853b4149689 gcc/expmed.c
9ff2927efa2e1a0e55558021c26390b5 gcc/expmed.h
e03097fa8bab2e0f672c851e349fe506 gcc/expr.c
22a1b040a029cec71713c858072c2d14 gcc/expr.h
*************** e4b447e1be275c2eb7ef7a53fff39820 gcc/fi
*** 4908,4916 ****
2245c6ff80a16a793e9b5348de6e91f8 gcc/flags.h
62ab96e4969839c0d49207c84e167bdb gcc/fold-const-call.c
6d7b5c94cd6a5d83f71696406018c0a3 gcc/fold-const-call.h
! 6d739e8dc5da8622cdeac73b4dbdee98 gcc/fold-const.c
a1a5b70d2d5210db75df2a17bc70430e gcc/fold-const.h
! 14f1527be6a9dfb858a0dcc8222078ac gcc/fortran/ChangeLog
3330102ad3a0217cba963be6b5eefd58 gcc/fortran/ChangeLog-2002
d000ab985b1eeb1ad5749f98b8fef99f gcc/fortran/ChangeLog-2003
bf42f94f0c51dcc7d8051cc7fda1efdc gcc/fortran/ChangeLog-2004
--- 4909,4917 ----
2245c6ff80a16a793e9b5348de6e91f8 gcc/flags.h
62ab96e4969839c0d49207c84e167bdb gcc/fold-const-call.c
6d7b5c94cd6a5d83f71696406018c0a3 gcc/fold-const-call.h
! 4b5505a0318d2195f34db01b51673d0d gcc/fold-const.c
a1a5b70d2d5210db75df2a17bc70430e gcc/fold-const.h
! 846fa27e009f677029eefda3dd649b09 gcc/fortran/ChangeLog
3330102ad3a0217cba963be6b5eefd58 gcc/fortran/ChangeLog-2002
d000ab985b1eeb1ad5749f98b8fef99f gcc/fortran/ChangeLog-2003
bf42f94f0c51dcc7d8051cc7fda1efdc gcc/fortran/ChangeLog-2004
*************** a71efd3e199a80ee07c7f350cc8fcf91 gcc/fo
*** 4930,4941 ****
7329983fba9efec50463c1ec516a8bb6 gcc/fortran/ChangeLog-2018
9e0636f92243fb9b3480e27cefc96749 gcc/fortran/ChangeLog.ptr
f93ce4ff63aa482acfbf5a258406caf4 gcc/fortran/Make-lang.in
! 1d4cbc1b0cbf7c7c08037328100a1ce8 gcc/fortran/arith.c
6690836eb720015b7835e95cd989703d gcc/fortran/arith.h
! c79cb81381296667682bdb61483e604a gcc/fortran/array.c
05d16522c697cac97b84b91201171e02 gcc/fortran/bbt.c
! 941992d3a6f17bda2786f079c05c0d47 gcc/fortran/check.c
! f0eebb144e133d9bcafe2924d98ab6bb gcc/fortran/class.c
0e917b3713317f87e6dc15b1ad750f62 gcc/fortran/config-lang.in
2eee8a4a70686c5631dc61c35a89d41c gcc/fortran/constructor.c
654703401f8709ab9f4aaa9a8268c9b3 gcc/fortran/constructor.h
--- 4931,4942 ----
7329983fba9efec50463c1ec516a8bb6 gcc/fortran/ChangeLog-2018
9e0636f92243fb9b3480e27cefc96749 gcc/fortran/ChangeLog.ptr
f93ce4ff63aa482acfbf5a258406caf4 gcc/fortran/Make-lang.in
! 88530577751506e8debcf03819287351 gcc/fortran/arith.c
6690836eb720015b7835e95cd989703d gcc/fortran/arith.h
! cea296f7d4a8d62899a6dfb6fe7525b4 gcc/fortran/array.c
05d16522c697cac97b84b91201171e02 gcc/fortran/bbt.c
! a300171308727c27e5f4891e177f2b38 gcc/fortran/check.c
! 5c1dc2fdaacf40deea781c111cf16719 gcc/fortran/class.c
0e917b3713317f87e6dc15b1ad750f62 gcc/fortran/config-lang.in
2eee8a4a70686c5631dc61c35a89d41c gcc/fortran/constructor.c
654703401f8709ab9f4aaa9a8268c9b3 gcc/fortran/constructor.h
*************** b59fb0736f3f4578927b040ae8f77938 gcc/fo
*** 4944,4969 ****
c53510898175a735499a6d352eb16ebb gcc/fortran/cpp.h
64504f7c2066290912a3539c510679cb gcc/fortran/data.c
713d22369c1f1fcefd7a1679e3fb3b64 gcc/fortran/data.h
! 7263f6a5d45a82ebc9dae64afd8be25a gcc/fortran/decl.c
55c0619e60ea4f3e4f6e7151b4b26ea7 gcc/fortran/dependency.c
e447ed1c3ad604ee5016b65f79ed4c02 gcc/fortran/dependency.h
c6fbd637c07d0c8791ae950f824a203f gcc/fortran/dump-parse-tree.c
ede6895c89e02d2d9e7349452194899a gcc/fortran/error.c
! 36714ff19ab36f16438459f8efef58c9 gcc/fortran/expr.c
4e03cda963b3169c1fbda02df38964e9 gcc/fortran/f95-lang.c
! d59efc0e442622d5f206b83f61b6a1da gcc/fortran/frontend-passes.c
3fd259abb59ef9e6976c0454605afc0e gcc/fortran/gfc-diagnostic.def
656bf644425fd5feb9342279fbf284c2 gcc/fortran/gfc-internals.texi
! e7da6129ed0678cf956e7ce7c53fd425 gcc/fortran/gfortran.h
! c55957741058c2fcd32872fff50c61c7 gcc/fortran/gfortran.info
! 635ff8ca3ab979159685266e35ccc2b7 gcc/fortran/gfortran.texi
22e71554f803f8d2e62849b4737c3981 gcc/fortran/gfortranspec.c
! 152c33d9871ec5b02888d91725ee27b7 gcc/fortran/interface.c
! 23be2f9d44764e574644d5ffd9824f4f gcc/fortran/intrinsic.c
74c19897e7db71beea588034368e2433 gcc/fortran/intrinsic.h
! 34a17559d3f1d5b6243140db21e0db36 gcc/fortran/intrinsic.texi
b697f4eb995ff9d18d91f0ac5f265202 gcc/fortran/invoke.texi
! a995b1899fcd557818f4fc2166d5493a gcc/fortran/io.c
d2ac7774e9141113736270e4f5d47262 gcc/fortran/ioparm.def
87b467c06a1b0203d0c84ebd0e75eceb gcc/fortran/iresolve.c
c7c109af1ff2fc4892193c9d4e85ebd9 gcc/fortran/iso-c-binding.def
--- 4945,4970 ----
c53510898175a735499a6d352eb16ebb gcc/fortran/cpp.h
64504f7c2066290912a3539c510679cb gcc/fortran/data.c
713d22369c1f1fcefd7a1679e3fb3b64 gcc/fortran/data.h
! 43fb3ebc8f5b8b42134fb69d8622488b gcc/fortran/decl.c
55c0619e60ea4f3e4f6e7151b4b26ea7 gcc/fortran/dependency.c
e447ed1c3ad604ee5016b65f79ed4c02 gcc/fortran/dependency.h
c6fbd637c07d0c8791ae950f824a203f gcc/fortran/dump-parse-tree.c
ede6895c89e02d2d9e7349452194899a gcc/fortran/error.c
! 0e7b25050d01599fb5c3fb3dc43a1f5b gcc/fortran/expr.c
4e03cda963b3169c1fbda02df38964e9 gcc/fortran/f95-lang.c
! befbb9db8fe362a60da4088c225ae1ac gcc/fortran/frontend-passes.c
3fd259abb59ef9e6976c0454605afc0e gcc/fortran/gfc-diagnostic.def
656bf644425fd5feb9342279fbf284c2 gcc/fortran/gfc-internals.texi
! b90437665248529477f0bebe66a52a36 gcc/fortran/gfortran.h
! 847c66fd7bf72d8c5471e328d53e8179 gcc/fortran/gfortran.info
! 148c0054609b07ed97a421cdba7fe6e7 gcc/fortran/gfortran.texi
22e71554f803f8d2e62849b4737c3981 gcc/fortran/gfortranspec.c
! d263d8f9bbe0c1f1a5e781ab08920954 gcc/fortran/interface.c
! 82f04402523e414ab21e2a65f37308fe gcc/fortran/intrinsic.c
74c19897e7db71beea588034368e2433 gcc/fortran/intrinsic.h
! 950ec6325d891d28b6af311b37e5037c gcc/fortran/intrinsic.texi
b697f4eb995ff9d18d91f0ac5f265202 gcc/fortran/invoke.texi
! 64eec273c98a6e0945d7d0acf9bc9747 gcc/fortran/io.c
d2ac7774e9141113736270e4f5d47262 gcc/fortran/ioparm.def
87b467c06a1b0203d0c84ebd0e75eceb gcc/fortran/iresolve.c
c7c109af1ff2fc4892193c9d4e85ebd9 gcc/fortran/iso-c-binding.def
*************** c7c109af1ff2fc4892193c9d4e85ebd9 gcc/fo
*** 4971,5015 ****
18bca2a897c95c53d5180935018750c0 gcc/fortran/lang-specs.h
fe6b73b81635da88de16a6202ce2caa1 gcc/fortran/lang.opt
cebab3ef54cb3a4c193daa83bdb9a0e4 gcc/fortran/libgfortran.h
! b54895fc90fd578a435706c5990e1387 gcc/fortran/match.c
! be5decbece50f1c7426bd064475247b6 gcc/fortran/match.h
b963693d98b80d4cfea882998d563e9a gcc/fortran/matchexp.c
58ffee79d4ae036799bb40633dacf538 gcc/fortran/mathbuiltins.def
! fffccf71fa3690d17190fd8d539f4057 gcc/fortran/misc.c
! 464d78673383f3498d1e957c4b8b1cef gcc/fortran/module.c
! d59a8182843c09502bf82b658b37a4f4 gcc/fortran/openmp.c
f095631319d07a3a3936b639e3e1accc gcc/fortran/options.c
! ace2a185d6148df164c5613ce02de386 gcc/fortran/parse.c
d1adfddb8878d4805a7fc236b3c20889 gcc/fortran/parse.h
! 7f40a1b8c7787833505e24943d887a17 gcc/fortran/primary.c
! a27b51bbafb5b1d25797a3e7e4cec570 gcc/fortran/resolve.c
! 834a84c626545487c713349bbb1b081f gcc/fortran/scanner.c
9dcd63b70743079da9fc354873d59439 gcc/fortran/scanner.h
! 625a1599ae19520343fddc63896f83d9 gcc/fortran/simplify.c
a1f4b55a0b9b527024a4ee138311b639 gcc/fortran/st.c
! 705af2ca43c9fee904d0d7dff6ed9991 gcc/fortran/symbol.c
b8dc81d2bb586c45cad96700dac806ac gcc/fortran/target-memory.c
cc4a189ff7003dc03b49eeb76a83af99 gcc/fortran/target-memory.h
! 57857b68852392492aa49ef3ffee5059 gcc/fortran/trans-array.c
! ebe97b9df34311444f24aca4643b773b gcc/fortran/trans-array.h
1eda04f5194626de8c17962ab38e146b gcc/fortran/trans-common.c
41a1229f5f63123bd9ead09467d00a34 gcc/fortran/trans-const.c
077cb8eeab5058daa9568ef0fc4a2e14 gcc/fortran/trans-const.h
! f01f9261641d9b7e1d41844c20653a2a gcc/fortran/trans-decl.c
! 4db5ebba52a816d6c70d3aadd41a7cf0 gcc/fortran/trans-expr.c
47dec5a844080c55f7950c313ceadbe8 gcc/fortran/trans-intrinsic.c
2d979e269fb210ca986be1d64ec08a99 gcc/fortran/trans-io.c
! 0b5bc62050d63f45da6f133dff032185 gcc/fortran/trans-openmp.c
! 1cbe3a1cfc9f42935eed30e1bd95a826 gcc/fortran/trans-stmt.c
10db947b29d97f98aa8af08ddb4b5689 gcc/fortran/trans-stmt.h
! 03835df63d6563b412d27abff8693a4b gcc/fortran/trans-types.c
c22006170686ea7e7f2a7dd8a4ac0a98 gcc/fortran/trans-types.h
! 89d462f2b5bad02121476e0de349dc66 gcc/fortran/trans.c
! e1ed0805ed897462a3eb494df7b8e9a9 gcc/fortran/trans.h
594746bff0efa8fc539627550bd1ef43 gcc/fortran/types.def
3a98b848a7fc3b3ece25b9a082235cbd gcc/fp-test.c
5f1f378eb488a4b13fa0a03ffe648272 gcc/function-tests.c
! 494796ac024a83781f009d28ed6ac3f0 gcc/function.c
ba789f52eda6da4a9ea3b3c7e7a8c013 gcc/function.h
90665aa238aba1ca80f31d5b6ec1d69d gcc/fwprop.c
b0db1c7f3007354a89925b222dae0c86 gcc/gcc-ar.c
--- 4972,5016 ----
18bca2a897c95c53d5180935018750c0 gcc/fortran/lang-specs.h
fe6b73b81635da88de16a6202ce2caa1 gcc/fortran/lang.opt
cebab3ef54cb3a4c193daa83bdb9a0e4 gcc/fortran/libgfortran.h
! 9fe4f89986435790ce7246f2d01bba51 gcc/fortran/match.c
! ce975c33f50128b97854154f09216d54 gcc/fortran/match.h
b963693d98b80d4cfea882998d563e9a gcc/fortran/matchexp.c
58ffee79d4ae036799bb40633dacf538 gcc/fortran/mathbuiltins.def
! 7afc3404f714d461fcbd749921ccb98b gcc/fortran/misc.c
! fb02332095eb01a54a4257fd3df45c43 gcc/fortran/module.c
! 8f3165aef2cc1d1f54301fc5dec4e0a3 gcc/fortran/openmp.c
f095631319d07a3a3936b639e3e1accc gcc/fortran/options.c
! 80a298d9ee0ea3e0638a1cb03a4e0dc7 gcc/fortran/parse.c
d1adfddb8878d4805a7fc236b3c20889 gcc/fortran/parse.h
! 6a7c5e955f35055e239c189ed7b4accb gcc/fortran/primary.c
! eea7d4e1879f462ec0a85945ca2bd012 gcc/fortran/resolve.c
! 9a58a2d73bc89b881362fc2febd07aa8 gcc/fortran/scanner.c
9dcd63b70743079da9fc354873d59439 gcc/fortran/scanner.h
! 4f4a4a40a9c734fde015c1a4388dd902 gcc/fortran/simplify.c
a1f4b55a0b9b527024a4ee138311b639 gcc/fortran/st.c
! 7dc6040a9e62e60324547c6be382db29 gcc/fortran/symbol.c
b8dc81d2bb586c45cad96700dac806ac gcc/fortran/target-memory.c
cc4a189ff7003dc03b49eeb76a83af99 gcc/fortran/target-memory.h
! bece448e206a971c40f97a3608e30309 gcc/fortran/trans-array.c
! e733e4cead324cb4cde3b4f4fc8d7524 gcc/fortran/trans-array.h
1eda04f5194626de8c17962ab38e146b gcc/fortran/trans-common.c
41a1229f5f63123bd9ead09467d00a34 gcc/fortran/trans-const.c
077cb8eeab5058daa9568ef0fc4a2e14 gcc/fortran/trans-const.h
! 251584727cd63fbf720527067cc441ea gcc/fortran/trans-decl.c
! 77b5ee8eea76d46b421df04b9f3398ec gcc/fortran/trans-expr.c
47dec5a844080c55f7950c313ceadbe8 gcc/fortran/trans-intrinsic.c
2d979e269fb210ca986be1d64ec08a99 gcc/fortran/trans-io.c
! 4fbacc437435c7e0fb558b2d508b69ba gcc/fortran/trans-openmp.c
! aeefefb3282f8f46bc66f1824780e700 gcc/fortran/trans-stmt.c
10db947b29d97f98aa8af08ddb4b5689 gcc/fortran/trans-stmt.h
! 8f85db9554ba79b3732fd418a08774d7 gcc/fortran/trans-types.c
c22006170686ea7e7f2a7dd8a4ac0a98 gcc/fortran/trans-types.h
! c6af57fdd2686c5488023474bdb7b199 gcc/fortran/trans.c
! ee117a6e3722fc523f17d50ec82cdb52 gcc/fortran/trans.h
594746bff0efa8fc539627550bd1ef43 gcc/fortran/types.def
3a98b848a7fc3b3ece25b9a082235cbd gcc/fp-test.c
5f1f378eb488a4b13fa0a03ffe648272 gcc/function-tests.c
! 3696200441793d62c40897ac6e7938de gcc/function.c
ba789f52eda6da4a9ea3b3c7e7a8c013 gcc/function.h
90665aa238aba1ca80f31d5b6ec1d69d gcc/fwprop.c
b0db1c7f3007354a89925b222dae0c86 gcc/gcc-ar.c
*************** a7ff8581f7bf4ee6fb4f265715228cf7 gcc/gc
*** 5026,5032 ****
a814d961d7e9e073b252565cde8c155f gcc/gcov-io.h
dc992d5b98c495610a6923e7d6415420 gcc/gcov-iov.c
5b23029f96bae333294f9ee4e7411547 gcc/gcov-tool.c
! a78ce8e169e55c44a0c3d55af0443643 gcc/gcov.c
447d863504a25932baff9beb3cfb6e44 gcc/gcse-common.c
5440da13c1de0a22fc48d492d607f66e gcc/gcse-common.h
1902281f513c1362f71da52d1cdc355d gcc/gcse.c
--- 5027,5033 ----
a814d961d7e9e073b252565cde8c155f gcc/gcov-io.h
dc992d5b98c495610a6923e7d6415420 gcc/gcov-iov.c
5b23029f96bae333294f9ee4e7411547 gcc/gcov-tool.c
! 00a2683fbdc6876da7e9cfe86060eceb gcc/gcov.c
447d863504a25932baff9beb3cfb6e44 gcc/gcse-common.c
5440da13c1de0a22fc48d492d607f66e gcc/gcse-common.h
1902281f513c1362f71da52d1cdc355d gcc/gcse.c
*************** bd8939f12fd0f267d28a2bce1345638a gcc/ge
*** 5048,5066 ****
6548f323abe184929cddb7902a1b8f59 gcc/genconstants.c
c3d3bca3550233dd9af90bed7ccc18c2 gcc/genemit.c
cda4b49528909fb1792335767f849280 gcc/genenums.c
! 45746ab34a26ba98cb3f51f6526e1798 gcc/generic-match-head.c
210638ce76e75540f029ab7d8d8b136c gcc/generic-match.h
84f9f809e1190b730831dbc5dfb85e21 gcc/genextract.c
74d89bef10f452419493538163fcba6e gcc/genflags.c
3f6aa70123bbc2cd7943d1af1bb1c7e6 gcc/gengenrtl.c
! c7f086278fad6581dd01054ca269b947 gcc/gengtype-lex.c
d6a5c2c81b9e7185f5cb40d1c5a3387f gcc/gengtype-lex.l
ef8a85e16c49cc975ea80e6e4401f6ad gcc/gengtype-parse.c
24e7c2757ffbf7927773c712f6788c40 gcc/gengtype-state.c
a3f7ab1e6cfc0a4016160da1202eb973 gcc/gengtype.c
3f2249009dc1076056988b32a83f3b3c gcc/gengtype.h
3e082f7c0f0bd75f102586ca082b2d04 gcc/genhooks.c
! 2a63e382a325a378d44cb4fa751fe3d9 gcc/genmatch.c
7a47b261a983d9d5376accfaf8f64da6 gcc/genmddeps.c
02d4c627fc48ee8385e2f33addb85d80 gcc/genmddump.c
10a1385e1eca5f10cc5c7e0a2b5d465c gcc/genmodes.c
--- 5049,5067 ----
6548f323abe184929cddb7902a1b8f59 gcc/genconstants.c
c3d3bca3550233dd9af90bed7ccc18c2 gcc/genemit.c
cda4b49528909fb1792335767f849280 gcc/genenums.c
! 0ed94e23de50ca15e6c082a4bb0adfe2 gcc/generic-match-head.c
210638ce76e75540f029ab7d8d8b136c gcc/generic-match.h
84f9f809e1190b730831dbc5dfb85e21 gcc/genextract.c
74d89bef10f452419493538163fcba6e gcc/genflags.c
3f6aa70123bbc2cd7943d1af1bb1c7e6 gcc/gengenrtl.c
! 0109dc3c5b853ec3e3a0302360bb89f2 gcc/gengtype-lex.c
d6a5c2c81b9e7185f5cb40d1c5a3387f gcc/gengtype-lex.l
ef8a85e16c49cc975ea80e6e4401f6ad gcc/gengtype-parse.c
24e7c2757ffbf7927773c712f6788c40 gcc/gengtype-state.c
a3f7ab1e6cfc0a4016160da1202eb973 gcc/gengtype.c
3f2249009dc1076056988b32a83f3b3c gcc/gengtype.h
3e082f7c0f0bd75f102586ca082b2d04 gcc/genhooks.c
! 707c317ed9b9bab987b92ca382816307 gcc/genmatch.c
7a47b261a983d9d5376accfaf8f64da6 gcc/genmddeps.c
02d4c627fc48ee8385e2f33addb85d80 gcc/genmddump.c
10a1385e1eca5f10cc5c7e0a2b5d465c gcc/genmodes.c
*************** cf7571696e624a579917e310b027f022 gcc/ge
*** 5075,5095 ****
50fe26ee0e8459746b74f6bea6d2b94d gcc/gentarget-def.c
8daac863bac22cb746d5394c3b90c941 gcc/ggc-common.c
12758873dd696da0b01cc5e6a2f6bf7f gcc/ggc-internal.h
! b6803a4e7b911ba732d3bd1b63771a2d gcc/ggc-none.c
! 8a80b8a4a843d88ab9571fa4e4746c1b gcc/ggc-page.c
448e6bea5405d417864cd0726098c456 gcc/ggc-tests.c
! 28c0372aa5b4add38e1f093fb60ca24c gcc/ggc.h
14a6dbffee7f53e63f5db225ae19bdda gcc/gimple-builder.c
fe776463982ded0d56be76536ca458ab gcc/gimple-builder.h
33cda24a0e46cc4177b621760f46ce2d gcc/gimple-expr.c
a026330f3f8e5ac33622b51cdbdf0617 gcc/gimple-expr.h
! 715cf4ea624f3c003b0410775ca213fe gcc/gimple-fold.c
6ca763486e28e598342728afde8faf3d gcc/gimple-fold.h
cd8563c27ad3db4bc7c4ea623b39732a gcc/gimple-iterator.c
ace1a0d92d6cdd622d3c7bd19303781c gcc/gimple-iterator.h
35c24fecb621723d3515631ac4d34547 gcc/gimple-laddress.c
b3fe8f3f4dc718d48211bbda066c6060 gcc/gimple-loop-interchange.cc
! 0f86751d04de4efebdf4de164335fa74 gcc/gimple-loop-jam.c
0be3abb400bc287133905dc6d8017f05 gcc/gimple-loop-versioning.cc
73229265187e7cfa0d2e677f837a2566 gcc/gimple-low.c
5dbc7b9651cef8ed681c4b5d29fc99ce gcc/gimple-low.h
--- 5076,5096 ----
50fe26ee0e8459746b74f6bea6d2b94d gcc/gentarget-def.c
8daac863bac22cb746d5394c3b90c941 gcc/ggc-common.c
12758873dd696da0b01cc5e6a2f6bf7f gcc/ggc-internal.h
! 2025ae588010128a43aea8d3473e57e0 gcc/ggc-none.c
! 71a21368e2520b2c4ad2b9935d1fc6d1 gcc/ggc-page.c
448e6bea5405d417864cd0726098c456 gcc/ggc-tests.c
! 3ea19ac20e57dcb3e6213b07a89957fc gcc/ggc.h
14a6dbffee7f53e63f5db225ae19bdda gcc/gimple-builder.c
fe776463982ded0d56be76536ca458ab gcc/gimple-builder.h
33cda24a0e46cc4177b621760f46ce2d gcc/gimple-expr.c
a026330f3f8e5ac33622b51cdbdf0617 gcc/gimple-expr.h
! e5172a9cb28e9885e4c9e271f7a2b063 gcc/gimple-fold.c
6ca763486e28e598342728afde8faf3d gcc/gimple-fold.h
cd8563c27ad3db4bc7c4ea623b39732a gcc/gimple-iterator.c
ace1a0d92d6cdd622d3c7bd19303781c gcc/gimple-iterator.h
35c24fecb621723d3515631ac4d34547 gcc/gimple-laddress.c
b3fe8f3f4dc718d48211bbda066c6060 gcc/gimple-loop-interchange.cc
! b62f2be3c07988cd994f1dd2a17300cd gcc/gimple-loop-jam.c
0be3abb400bc287133905dc6d8017f05 gcc/gimple-loop-versioning.cc
73229265187e7cfa0d2e677f837a2566 gcc/gimple-low.c
5dbc7b9651cef8ed681c4b5d29fc99ce gcc/gimple-low.h
*************** b2ca5aefc1483eac5180b94247ab87f4 gcc/gi
*** 5106,5119 ****
8f9800879105df9af7d2e9a0ff7c54af gcc/gimple-ssa-nonnull-compare.c
323b8f0c8a8da97ca9445a2d5c9ddc88 gcc/gimple-ssa-split-paths.c
8df73dc6abf181e8b2177e62880750ff gcc/gimple-ssa-sprintf.c
! a00653ac70a1e3cf4bf2f3a3631dfe70 gcc/gimple-ssa-store-merging.c
8cb08b09a37b794a52d31195a2d7e325 gcc/gimple-ssa-strength-reduction.c
4cc96ae538fa8489e02efccf68c3e316 gcc/gimple-ssa-warn-alloca.c
89f060b6731dca618debd6520665e51a gcc/gimple-ssa-warn-restrict.c
be521991258271129d6ae1067a903600 gcc/gimple-ssa-warn-restrict.h
d1d4cc5e4729db91a8ac198f69556aa0 gcc/gimple-ssa.h
eb6f2fbedeb227c87ce9704d03c767c5 gcc/gimple-streamer-in.c
! 71c116e0c7fcf1b6566795c5d0f81eda gcc/gimple-streamer-out.c
86c2255ddfc5853ac382e47725e99d49 gcc/gimple-streamer.h
ad8d59f22ae7e4e0ee115ba801d34a8d gcc/gimple-walk.c
863cec6b5ac71e6fa3185bde3aea5c17 gcc/gimple-walk.h
--- 5107,5120 ----
8f9800879105df9af7d2e9a0ff7c54af gcc/gimple-ssa-nonnull-compare.c
323b8f0c8a8da97ca9445a2d5c9ddc88 gcc/gimple-ssa-split-paths.c
8df73dc6abf181e8b2177e62880750ff gcc/gimple-ssa-sprintf.c
! bab04ee4d3c4b16eb872f659fd40db61 gcc/gimple-ssa-store-merging.c
8cb08b09a37b794a52d31195a2d7e325 gcc/gimple-ssa-strength-reduction.c
4cc96ae538fa8489e02efccf68c3e316 gcc/gimple-ssa-warn-alloca.c
89f060b6731dca618debd6520665e51a gcc/gimple-ssa-warn-restrict.c
be521991258271129d6ae1067a903600 gcc/gimple-ssa-warn-restrict.h
d1d4cc5e4729db91a8ac198f69556aa0 gcc/gimple-ssa.h
eb6f2fbedeb227c87ce9704d03c767c5 gcc/gimple-streamer-in.c
! b697e447c40f98604761f12179797ce2 gcc/gimple-streamer-out.c
86c2255ddfc5853ac382e47725e99d49 gcc/gimple-streamer.h
ad8d59f22ae7e4e0ee115ba801d34a8d gcc/gimple-walk.c
863cec6b5ac71e6fa3185bde3aea5c17 gcc/gimple-walk.h
*************** efba4f60d77659f0b4e126b3894344af gcc/gi
*** 5122,5128 ****
398d13e61baf9570b3ccb3318454180c gcc/gimple.h
49c11f744d31cc41069cc45dbba1bc25 gcc/gimplify-me.c
43fa6e5094c93aad8036a14d8ac60e20 gcc/gimplify-me.h
! ea47d9908de46496016b8481696c38a6 gcc/gimplify.c
c6c0510b3e23b740d9a289269fda55b9 gcc/gimplify.h
87ed659d26854a1857ea25b6233dd522 gcc/ginclude/float.h
8840798a3cd9f1606a7a0d1ef178904d gcc/ginclude/iso646.h
--- 5123,5129 ----
398d13e61baf9570b3ccb3318454180c gcc/gimple.h
49c11f744d31cc41069cc45dbba1bc25 gcc/gimplify-me.c
43fa6e5094c93aad8036a14d8ac60e20 gcc/gimplify-me.h
! 65971fdad0032f307a06edca67eed254 gcc/gimplify.c
c6c0510b3e23b740d9a289269fda55b9 gcc/gimplify.h
87ed659d26854a1857ea25b6233dd522 gcc/ginclude/float.h
8840798a3cd9f1606a7a0d1ef178904d gcc/ginclude/iso646.h
*************** ad51c6dce046c56b6a8e5d6ac922150b gcc/gi
*** 5139,5145 ****
e7c24451311a3e2059da9b3e5233e549 gcc/ginclude/unwind-arm-common.h
8d9ecf0d6ef93c79623ce1d27a32a2cb gcc/ginclude/varargs.h
d1d7a18eab357274c98cfeb68fb7577f gcc/glimits.h
! 4216c4c4943bb86619ef54ba3eca4862 gcc/go/ChangeLog
5dd2a0d1adf4b7075e03ae31c64bfc47 gcc/go/Make-lang.in
60ea054548c83c7f66170073f9f3e74c gcc/go/README.gcc
4ce687ab1f7ff58da47bb2be300ecad5 gcc/go/config-lang.in
--- 5140,5146 ----
e7c24451311a3e2059da9b3e5233e549 gcc/ginclude/unwind-arm-common.h
8d9ecf0d6ef93c79623ce1d27a32a2cb gcc/ginclude/varargs.h
d1d7a18eab357274c98cfeb68fb7577f gcc/glimits.h
! 78406b570818daaddaf21888c89411c2 gcc/go/ChangeLog
5dd2a0d1adf4b7075e03ae31c64bfc47 gcc/go/Make-lang.in
60ea054548c83c7f66170073f9f3e74c gcc/go/README.gcc
4ce687ab1f7ff58da47bb2be300ecad5 gcc/go/config-lang.in
*************** d1758aeae7f1e4621d1c96fe8851d37d gcc/go
*** 5161,5171 ****
c3269a74f526334a0e4733d04fe0bdd2 gcc/go/gofrontend/ast-dump.cc
456b6d4cc785176b6e3eb0c685a93b39 gcc/go/gofrontend/ast-dump.h
fff7f59ee6d62aa83c030fbfb78a39ef gcc/go/gofrontend/backend.h
! 264837ead9749c5b5fc15208dda6a15c gcc/go/gofrontend/escape.cc
83bba961b0c49d06a0bd58b0b2b5ed44 gcc/go/gofrontend/escape.h
84db433eb66dba58d069e4b39d8c39b2 gcc/go/gofrontend/export.cc
c479642dcaeb57ea0342e5600eb19b3b gcc/go/gofrontend/export.h
! 2e81a28adefe2f98bae490e7dea38620 gcc/go/gofrontend/expressions.cc
bc22cdfdfd6c127d82d985a40d6d3ada gcc/go/gofrontend/expressions.h
7d753b8578fa638c2da1c3f27cae2878 gcc/go/gofrontend/go-diagnostics.cc
6018d89190ca6202e5dd86b2f81f6c42 gcc/go/gofrontend/go-diagnostics.h
--- 5162,5172 ----
c3269a74f526334a0e4733d04fe0bdd2 gcc/go/gofrontend/ast-dump.cc
456b6d4cc785176b6e3eb0c685a93b39 gcc/go/gofrontend/ast-dump.h
fff7f59ee6d62aa83c030fbfb78a39ef gcc/go/gofrontend/backend.h
! 7612f460a79c9399e8dbe72e1909e7ba gcc/go/gofrontend/escape.cc
83bba961b0c49d06a0bd58b0b2b5ed44 gcc/go/gofrontend/escape.h
84db433eb66dba58d069e4b39d8c39b2 gcc/go/gofrontend/export.cc
c479642dcaeb57ea0342e5600eb19b3b gcc/go/gofrontend/export.h
! 3309a717880bc523f1810616b63a7d7b gcc/go/gofrontend/expressions.cc
bc22cdfdfd6c127d82d985a40d6d3ada gcc/go/gofrontend/expressions.h
7d753b8578fa638c2da1c3f27cae2878 gcc/go/gofrontend/go-diagnostics.cc
6018d89190ca6202e5dd86b2f81f6c42 gcc/go/gofrontend/go-diagnostics.h
*************** c5589f3b74975aeac726e28a73808bc2 gcc/in
*** 5260,5274 ****
f9f3091082e2a53c0a08ba239ff869a0 gcc/insn-addr.h
3df8df5d249ecd076f17ce534ea79e2d gcc/insn-notes.def
a0e0a2a007223e1dd7a3e8b7cea9716a gcc/int-vector-builder.h
! 119bf0e60d62d779205aa474ba1b17e5 gcc/internal-fn.c
75ee69a2fd8729e375c99f58063c915b gcc/internal-fn.def
c06275d8a3a38cb5832dd5c2c4713066 gcc/internal-fn.h
c635ef2f5753617a60869700b05ff304 gcc/intl.c
b830ed3141b82cd7d738c9e1625d3877 gcc/intl.h
0343fae56569bff7d0a1987df3ef21de gcc/ipa-comdats.c
! f743ac80b729b12791571090c5009756 gcc/ipa-cp.c
35c3d9a7af7c266bc122e1e19484e526 gcc/ipa-devirt.c
! 27d85bc6a1b157e1e0c56bb8a286ed84 gcc/ipa-fnsummary.c
b231d101383c784df13b08fb9d507308 gcc/ipa-fnsummary.h
fb40952a6ce3b62999d6ce91032348fd gcc/ipa-hsa.c
a249f6431ab72ad0a8a1236e7a387499 gcc/ipa-icf-gimple.c
--- 5261,5275 ----
f9f3091082e2a53c0a08ba239ff869a0 gcc/insn-addr.h
3df8df5d249ecd076f17ce534ea79e2d gcc/insn-notes.def
a0e0a2a007223e1dd7a3e8b7cea9716a gcc/int-vector-builder.h
! d0cff08d2458dee6b758effcbdabfd6a gcc/internal-fn.c
75ee69a2fd8729e375c99f58063c915b gcc/internal-fn.def
c06275d8a3a38cb5832dd5c2c4713066 gcc/internal-fn.h
c635ef2f5753617a60869700b05ff304 gcc/intl.c
b830ed3141b82cd7d738c9e1625d3877 gcc/intl.h
0343fae56569bff7d0a1987df3ef21de gcc/ipa-comdats.c
! 2884e52eff1df01dd5f09b2dfa19e12a gcc/ipa-cp.c
35c3d9a7af7c266bc122e1e19484e526 gcc/ipa-devirt.c
! 707034fa2339aa0a74196f27400ed261 gcc/ipa-fnsummary.c
b231d101383c784df13b08fb9d507308 gcc/ipa-fnsummary.h
fb40952a6ce3b62999d6ce91032348fd gcc/ipa-hsa.c
a249f6431ab72ad0a8a1236e7a387499 gcc/ipa-icf-gimple.c
*************** d9d77a7cd2abda1024391d72afc05523 gcc/ip
*** 5285,5293 ****
9b14467404873b3f1bd5e572fff06380 gcc/ipa-predicate.c
9c1b9ec119d95bb6233896468219ee8a gcc/ipa-predicate.h
58244d38b306c53757b03fda86970d4c gcc/ipa-profile.c
! ba313d55ecd421259ec3b5feb9529e88 gcc/ipa-prop.c
! 997e1590df09a9eef8428cb5a3c94142 gcc/ipa-prop.h
! 26bb45708e6ea46f9354a71df86ff7c4 gcc/ipa-pure-const.c
06f8bbdeab3c11c5d2d7790841b3dbbd gcc/ipa-ref.c
6df3ba98ea16de671956223d72a85acf gcc/ipa-ref.h
f28dfd8f7308648578d13498523932ca gcc/ipa-reference.c
--- 5286,5294 ----
9b14467404873b3f1bd5e572fff06380 gcc/ipa-predicate.c
9c1b9ec119d95bb6233896468219ee8a gcc/ipa-predicate.h
58244d38b306c53757b03fda86970d4c gcc/ipa-profile.c
! efefc6f65f1e1a90caa77e2f49f25fcb gcc/ipa-prop.c
! c3613620c90b32afce8736fa308aaddf gcc/ipa-prop.h
! 08c163fa101969c638b8529a27b9e3aa gcc/ipa-pure-const.c
06f8bbdeab3c11c5d2d7790841b3dbbd gcc/ipa-ref.c
6df3ba98ea16de671956223d72a85acf gcc/ipa-ref.h
f28dfd8f7308648578d13498523932ca gcc/ipa-reference.c
*************** febad586f5f08951e042ff075420b59e gcc/ip
*** 5304,5313 ****
ea527252c54efc9ee4bc0ef5f9891013 gcc/ira-emit.c
8716b9e7c010b096bd10971411be74f7 gcc/ira-int.h
ed8837fcbbe053c18350910f4576cc35 gcc/ira-lives.c
! 21ba1ac3d0177f982c0b6d00323ccb2a gcc/ira.c
21568d492259d37083295ba429e5a425 gcc/ira.h
0a247958e75cc3f70045797573fbaccb gcc/is-a.h
! e95045784f50e74b942611ddf09bf53f gcc/jit/ChangeLog
6071bdf04fb356c5ac99a99ec00c9a12 gcc/jit/ChangeLog.jit
1679b6e3887d20d9a2efb258aacbd1e3 gcc/jit/Make-lang.in
fd0d76b6467c987f813d430a35d4760a gcc/jit/TODO.rst
--- 5305,5314 ----
ea527252c54efc9ee4bc0ef5f9891013 gcc/ira-emit.c
8716b9e7c010b096bd10971411be74f7 gcc/ira-int.h
ed8837fcbbe053c18350910f4576cc35 gcc/ira-lives.c
! f3b2cd197795cb4eded5edb7473fd30f gcc/ira.c
21568d492259d37083295ba429e5a425 gcc/ira.h
0a247958e75cc3f70045797573fbaccb gcc/is-a.h
! a4fc32ff717babf88c21e3ffca76bbba gcc/jit/ChangeLog
6071bdf04fb356c5ac99a99ec00c9a12 gcc/jit/ChangeLog.jit
1679b6e3887d20d9a2efb258aacbd1e3 gcc/jit/Make-lang.in
fd0d76b6467c987f813d430a35d4760a gcc/jit/TODO.rst
*************** c5ff1afd8ef8c06eabd2c53cf38eab60 gcc/li
*** 5405,5411 ****
72abe9b3dd40d4d259761d3bf8216b72 gcc/loop-doloop.c
2c9c1a0c05e2f76a888ece7f4840f586 gcc/loop-init.c
fb8c8db615bb18ab2e5f20e258f2bd93 gcc/loop-invariant.c
! 65f4717d8846374ac1715d557bcc0456 gcc/loop-iv.c
d724737212c2ad2b43eccdae2ba8f977 gcc/loop-unroll.c
a28e34c069154ac89879de0c398e9b52 gcc/loop-unroll.h
95f945a474f39991f905c8b5b5d276e0 gcc/lower-subreg.c
--- 5406,5412 ----
72abe9b3dd40d4d259761d3bf8216b72 gcc/loop-doloop.c
2c9c1a0c05e2f76a888ece7f4840f586 gcc/loop-init.c
fb8c8db615bb18ab2e5f20e258f2bd93 gcc/loop-invariant.c
! 0a6cf297e218d147312cb0f5260fc382 gcc/loop-iv.c
d724737212c2ad2b43eccdae2ba8f977 gcc/loop-unroll.c
a28e34c069154ac89879de0c398e9b52 gcc/loop-unroll.h
95f945a474f39991f905c8b5b5d276e0 gcc/lower-subreg.c
*************** e70b9710876d5eed15fb9d1551734b8b gcc/lo
*** 5414,5424 ****
dd822c2249139084fa9eec7725fd6640 gcc/lra-coalesce.c
5c6154f3ff4b324480e6a19daaee9445 gcc/lra-constraints.c
8aa49d741fd66b1a4aee38db5c7c8c04 gcc/lra-eliminations.c
! 6e437a64e14740ea3c4f6945e15fe244 gcc/lra-int.h
6ec29f03acb8d52afba070d8cf8049f1 gcc/lra-lives.c
! 534f3d6f4b4bb0caee919de8c328dd91 gcc/lra-remat.c
! 263572e53b93de402bd6af479d33058b gcc/lra-spills.c
! 508824a82895ef85edc7a12630452e09 gcc/lra.c
cc84e02c30c6bb6802ad8609aad8bf77 gcc/lra.h
75532e07d685525f1f547158e63cee67 gcc/lto-cgraph.c
8684045dd1802aa2812edd98bc4be110 gcc/lto-compress.c
--- 5415,5425 ----
dd822c2249139084fa9eec7725fd6640 gcc/lra-coalesce.c
5c6154f3ff4b324480e6a19daaee9445 gcc/lra-constraints.c
8aa49d741fd66b1a4aee38db5c7c8c04 gcc/lra-eliminations.c
! 63ff47f07181e336d5f50b7d2da5a68c gcc/lra-int.h
6ec29f03acb8d52afba070d8cf8049f1 gcc/lra-lives.c
! 44e9ff058cbf966c827659af7ce02164 gcc/lra-remat.c
! 517b55b3c3ad818054fa5eb03f6b7eb1 gcc/lra-spills.c
! a8e08ac945834c02a48294f9daae46ed gcc/lra.c
cc84e02c30c6bb6802ad8609aad8bf77 gcc/lra.h
75532e07d685525f1f547158e63cee67 gcc/lto-cgraph.c
8684045dd1802aa2812edd98bc4be110 gcc/lto-compress.c
*************** acdf8a24da1fd6341ed7ea7273449ee3 gcc/lt
*** 5428,5457 ****
df8a9e2718f16387e20d5af9865c5f3a gcc/lto-section-names.h
5a2439f6217d4332366143de5c9684da gcc/lto-section-out.c
d6f8bd96ccc5e6dc5482072e99faa69f gcc/lto-streamer-in.c
! 6323cfe5ebcbfa8b635950bc76ef3c61 gcc/lto-streamer-out.c
ea9a63d9999a8189268e9406236adac4 gcc/lto-streamer.c
! 9207ea9e45c2c53dfea902ccf027b4f6 gcc/lto-streamer.h
! a54271f7d1d20b8a9ecfa6353758297f gcc/lto-wrapper.c
! 4fb2474c50692951356990b781b2145e gcc/lto/ChangeLog
0a760452464b48ac5e71eae9a072c5be gcc/lto/Make-lang.in
042176bc09ee78dc5382c75e0e6986dd gcc/lto/common.c
610aacfb6af9f3888f48ce742b264326 gcc/lto/common.h
c7cf49d993470721532f2a95651dab33 gcc/lto/config-lang.in
98918a8090a22cf3a61ee3f55cb6019b gcc/lto/lang-specs.h
3bbd8781c4fb65124babb8045a01cc57 gcc/lto/lang.opt
! ba968bb94432da4bd8d9d25753a82fe2 gcc/lto/lto-lang.c
5b2364cfad1530335eab73c3261571c2 gcc/lto/lto-object.c
! da72d28d8cc7ec7a1722f0a2f3eadd57 gcc/lto/lto-partition.c
ac2ba702756d361307744dcf2df540b9 gcc/lto/lto-partition.h
93911c5f6ed6197a208e7d21355f20a5 gcc/lto/lto-symtab.c
dab154e53d81e05bb7e7ceecd27c4875 gcc/lto/lto-symtab.h
a930b10ccbbe0cc4e35fa331105e5ac7 gcc/lto/lto-tree.h
! 7567b00374256e50951d61ef44ccee33 gcc/lto/lto.c
b77621f7e33a6f67145e9fcb27739ca3 gcc/lto/lto.h
cdfc68fbdc83281ea11a0a17fc5fbcd2 gcc/machmode.def
42f23ead782de538c88f82ea71ff3bcb gcc/machmode.h
83dea027e67504ea7b51b60a2bde9d96 gcc/main.c
! 5f0b433dc96843e550d0d5e5b2a655e9 gcc/match.pd
5f6448efeb306cf4b441915ac49b6780 gcc/mcf.c
a02e0e109980581b862198eb814afe94 gcc/mem-stats-traits.h
7731938c5855f3d8c75ae87b9f92bd3b gcc/mem-stats.h
--- 5429,5458 ----
df8a9e2718f16387e20d5af9865c5f3a gcc/lto-section-names.h
5a2439f6217d4332366143de5c9684da gcc/lto-section-out.c
d6f8bd96ccc5e6dc5482072e99faa69f gcc/lto-streamer-in.c
! edd2591e77259d4572bc5fa52c01965c gcc/lto-streamer-out.c
ea9a63d9999a8189268e9406236adac4 gcc/lto-streamer.c
! 4d3cfd5139b6d308c5cfbf0fdedcd99d gcc/lto-streamer.h
! 0f40444884c9a80859fdad361d718132 gcc/lto-wrapper.c
! 4d630d4b4cfe060cce9723000767c000 gcc/lto/ChangeLog
0a760452464b48ac5e71eae9a072c5be gcc/lto/Make-lang.in
042176bc09ee78dc5382c75e0e6986dd gcc/lto/common.c
610aacfb6af9f3888f48ce742b264326 gcc/lto/common.h
c7cf49d993470721532f2a95651dab33 gcc/lto/config-lang.in
98918a8090a22cf3a61ee3f55cb6019b gcc/lto/lang-specs.h
3bbd8781c4fb65124babb8045a01cc57 gcc/lto/lang.opt
! 7764070f258ec6eb029cc2f7620bb34b gcc/lto/lto-lang.c
5b2364cfad1530335eab73c3261571c2 gcc/lto/lto-object.c
! a8f131da69b18832e7c1d8e3d3a55a2a gcc/lto/lto-partition.c
ac2ba702756d361307744dcf2df540b9 gcc/lto/lto-partition.h
93911c5f6ed6197a208e7d21355f20a5 gcc/lto/lto-symtab.c
dab154e53d81e05bb7e7ceecd27c4875 gcc/lto/lto-symtab.h
a930b10ccbbe0cc4e35fa331105e5ac7 gcc/lto/lto-tree.h
! fa3bc150cbfddea2229d9f1670b828c7 gcc/lto/lto.c
b77621f7e33a6f67145e9fcb27739ca3 gcc/lto/lto.h
cdfc68fbdc83281ea11a0a17fc5fbcd2 gcc/machmode.def
42f23ead782de538c88f82ea71ff3bcb gcc/machmode.h
83dea027e67504ea7b51b60a2bde9d96 gcc/main.c
! 137ff4572cf9d7328af713e44a82d05b gcc/match.pd
5f6448efeb306cf4b441915ac49b6780 gcc/mcf.c
a02e0e109980581b862198eb814afe94 gcc/mem-stats-traits.h
7731938c5855f3d8c75ae87b9f92bd3b gcc/mem-stats.h
*************** a02e0e109980581b862198eb814afe94 gcc/me
*** 5461,5469 ****
cf3b5b2df4c991b681af33a0072d4c3a gcc/mkconfig.sh
b430985133bbb2d1156515bc5d847196 gcc/mode-classes.def
350e71f020af88666db17c55c0e66deb gcc/mode-switching.c
! 42c292d245051f216e5e48a4038797e8 gcc/modulo-sched.c
18252d174482fac7521ebbc9f6298f98 gcc/multiple_target.c
! 931d6bf01ec2d65acd4742f5733cc511 gcc/objc/ChangeLog
b957c220c88ba0f2c8f46365b3df098b gcc/objc/Make-lang.in
4aa09aa70d19e60b57528c684006bc78 gcc/objc/config-lang.in
ad9e39ae0889f63088c011098dccdae7 gcc/objc/lang-specs.h
--- 5462,5470 ----
cf3b5b2df4c991b681af33a0072d4c3a gcc/mkconfig.sh
b430985133bbb2d1156515bc5d847196 gcc/mode-classes.def
350e71f020af88666db17c55c0e66deb gcc/mode-switching.c
! 17a38e7676b9c03d5d5af38106cd9ed0 gcc/modulo-sched.c
18252d174482fac7521ebbc9f6298f98 gcc/multiple_target.c
! 0aaccf9c5357e49948443705cff7b2e2 gcc/objc/ChangeLog
b957c220c88ba0f2c8f46365b3df098b gcc/objc/Make-lang.in
4aa09aa70d19e60b57528c684006bc78 gcc/objc/config-lang.in
ad9e39ae0889f63088c011098dccdae7 gcc/objc/lang-specs.h
*************** e13ac2417502f1cd325cac908a8d96c7 gcc/ob
*** 5482,5488 ****
7637bb49949015bd1a96412472d6ad33 gcc/objc/objc-runtime-shared-support.c
b88d8dbb459057d08e2bfc6795c2b9d6 gcc/objc/objc-runtime-shared-support.h
42012b7a1bcce69478d76aba894ea6df gcc/objc/objc-tree.def
! 9230a5733f6486605d1286296fd32e6e gcc/objcp/ChangeLog
002dccc4b6cd904aa07783ad3dd26389 gcc/objcp/Make-lang.in
db38d8ce3bed5cb418fb15b88c359f1c gcc/objcp/config-lang.in
e9142f765d98bd6847a7b01f531db273 gcc/objcp/lang-specs.h
--- 5483,5489 ----
7637bb49949015bd1a96412472d6ad33 gcc/objc/objc-runtime-shared-support.c
b88d8dbb459057d08e2bfc6795c2b9d6 gcc/objc/objc-runtime-shared-support.h
42012b7a1bcce69478d76aba894ea6df gcc/objc/objc-tree.def
! 3c75361a2d7e5e6187ec993b9edd5ffb gcc/objcp/ChangeLog
002dccc4b6cd904aa07783ad3dd26389 gcc/objcp/Make-lang.in
db38d8ce3bed5cb418fb15b88c359f1c gcc/objcp/config-lang.in
e9142f765d98bd6847a7b01f531db273 gcc/objcp/lang-specs.h
*************** b65ed3137a00381ad36ae192973acb35 gcc/om
*** 5496,5506 ****
9285a8a3012098d97afbd4fd2fc0b5fc gcc/omp-general.h
e7005cd6099db0d8379847938d5a9e89 gcc/omp-grid.c
88e0dbc1543f1cc02dd20c216f6c5c31 gcc/omp-grid.h
! 316ac21e7ec9a0a4793aaf7e4fa74ad9 gcc/omp-low.c
4f601bdff79f47d83afecc62c35cd8f8 gcc/omp-low.h
54d52698b257f43dc3f27efdd506978d gcc/omp-offload.c
2ff7e715ed89e1f7eb89bf9b4c9ca0a8 gcc/omp-offload.h
! dc36aa32f2923e01dea7654e372e7df6 gcc/omp-simd-clone.c
bfadc77c96d490b5dd71d56b5915ce5a gcc/omp-simd-clone.h
56d376b6797d41359a0a648e6ad4d749 gcc/opt-functions.awk
e07ab43d79870eb99e81687a425deb95 gcc/opt-gather.awk
--- 5497,5507 ----
9285a8a3012098d97afbd4fd2fc0b5fc gcc/omp-general.h
e7005cd6099db0d8379847938d5a9e89 gcc/omp-grid.c
88e0dbc1543f1cc02dd20c216f6c5c31 gcc/omp-grid.h
! 15e8122ba93ed0158781dcf802410079 gcc/omp-low.c
4f601bdff79f47d83afecc62c35cd8f8 gcc/omp-low.h
54d52698b257f43dc3f27efdd506978d gcc/omp-offload.c
2ff7e715ed89e1f7eb89bf9b4c9ca0a8 gcc/omp-offload.h
! 5bac72104152f80b5b134731109bae04 gcc/omp-simd-clone.c
bfadc77c96d490b5dd71d56b5915ce5a gcc/omp-simd-clone.h
56d376b6797d41359a0a648e6ad4d749 gcc/opt-functions.awk
e07ab43d79870eb99e81687a425deb95 gcc/opt-gather.awk
*************** f3e5c1cb5ee8a02c7e2e8209fc88ea85 gcc/op
*** 5516,5526 ****
bdbea9e383b4076066877aa71c0d2366 gcc/optabs-query.h
8fa4dc0fa0f578eb4ffc2bb60627e398 gcc/optabs-tree.c
30ee144bf56333a1b32b9b029f482a17 gcc/optabs-tree.h
! 6a534c0e2083be7414035180f6dee87e gcc/optabs.c
94f76f231bdbccb14b8cf51635f911e5 gcc/optabs.def
9f4c21163802095802ef777001a49154 gcc/optabs.h
614293f5f23a24a7e0343e82abb193b6 gcc/optc-gen.awk
! 9985cee5d5188e43caf5c6dd6fbfff46 gcc/optc-save-gen.awk
423f11829cf639db6e92252a4d399d16 gcc/opth-gen.awk
c064e96c835e59fb275bd8f11f1749a3 gcc/optinfo-emit-json.cc
83c1b1e973536d335274f767d27af618 gcc/optinfo-emit-json.h
--- 5517,5527 ----
bdbea9e383b4076066877aa71c0d2366 gcc/optabs-query.h
8fa4dc0fa0f578eb4ffc2bb60627e398 gcc/optabs-tree.c
30ee144bf56333a1b32b9b029f482a17 gcc/optabs-tree.h
! e38484ec4e88767c8f7dd831ed66c19b gcc/optabs.c
94f76f231bdbccb14b8cf51635f911e5 gcc/optabs.def
9f4c21163802095802ef777001a49154 gcc/optabs.h
614293f5f23a24a7e0343e82abb193b6 gcc/optc-gen.awk
! 155d43f460df5da430f3b6a33ea594cd gcc/optc-save-gen.awk
423f11829cf639db6e92252a4d399d16 gcc/opth-gen.awk
c064e96c835e59fb275bd8f11f1749a3 gcc/optinfo-emit-json.cc
83c1b1e973536d335274f767d27af618 gcc/optinfo-emit-json.h
*************** be3b6f71c158bf3820c911da4adb4695 gcc/op
*** 5531,5550 ****
9a2e4a22baa5ddf9aebf347b8f781ce0 gcc/opts-global.c
a8983698f217409632b4851b48c5934f gcc/opts.c
e9cb364a9a9d8629fac7a9125a55ed1e gcc/opts.h
! 5eb6dc6d38c45a56a688a5f60c22a992 gcc/output.h
350384e6d18600926b1e8063e63d4fe3 gcc/params-enum.h
d243929a3c5e1ac544db7839c23b33c6 gcc/params-list.h
310365bd14ae461ae8fba864926aaccb gcc/params-options.h
eb3ce0191066addb6f78953fe80b843b gcc/params.c
! 194b8553e13b0a43f0ff79d61652596c gcc/params.def
7108fb7589804e17e8d9b22c6433b592 gcc/params.h
f879f40369fe5cc37da2c38955f4c6fd gcc/pass_manager.h
! d6715df9960d1c9fb85d9e6f0b32cca0 gcc/passes.c
! 62478a13a0a53d37e2e9484d9c63325e gcc/passes.def
fd818d3d720bafdfaa7770d5fac2d3a0 gcc/plugin.c
1fa9106368c8f95cc930e11b6a3ce4b6 gcc/plugin.def
50ec79e5308c5537ef9876bdb3e3e9bb gcc/plugin.h
! 285ce98498f7324f9e75782a653d5657 gcc/po/ChangeLog
39305724bd042920259dbe00350f65c4 gcc/po/EXCLUDES
7bd3573799f04ef22e9bd587c84913b9 gcc/po/be.gmo
f2d4ebc53db42a57d238129bb7b17720 gcc/po/be.po
--- 5532,5551 ----
9a2e4a22baa5ddf9aebf347b8f781ce0 gcc/opts-global.c
a8983698f217409632b4851b48c5934f gcc/opts.c
e9cb364a9a9d8629fac7a9125a55ed1e gcc/opts.h
! 3b661229fafb8807c43faa08e46861d8 gcc/output.h
350384e6d18600926b1e8063e63d4fe3 gcc/params-enum.h
d243929a3c5e1ac544db7839c23b33c6 gcc/params-list.h
310365bd14ae461ae8fba864926aaccb gcc/params-options.h
eb3ce0191066addb6f78953fe80b843b gcc/params.c
! f84135f8229983d59483fc0b0bf5df36 gcc/params.def
7108fb7589804e17e8d9b22c6433b592 gcc/params.h
f879f40369fe5cc37da2c38955f4c6fd gcc/pass_manager.h
! 650560c2a4802a5511e11f3bb52cc2f9 gcc/passes.c
! 17a2ec9ff7dd59f80eb7409bb8e992a4 gcc/passes.def
fd818d3d720bafdfaa7770d5fac2d3a0 gcc/plugin.c
1fa9106368c8f95cc930e11b6a3ce4b6 gcc/plugin.def
50ec79e5308c5537ef9876bdb3e3e9bb gcc/plugin.h
! 90a28d2c434005a23b1263e5537bcb9a gcc/po/ChangeLog
39305724bd042920259dbe00350f65c4 gcc/po/EXCLUDES
7bd3573799f04ef22e9bd587c84913b9 gcc/po/be.gmo
f2d4ebc53db42a57d238129bb7b17720 gcc/po/be.po
*************** d0a67c2f5d57884d37977c477b5db243 gcc/po
*** 5554,5564 ****
da55996f2e07e71b19a21da8fc5f2d4f gcc/po/de.po
abe042604f7a68b1a09a4e6a868fd381 gcc/po/el.gmo
20955c7240fcc00f705d0ec1051f5b3f gcc/po/el.po
! 4677ee6705d91013a02ac58830845ac2 gcc/po/es.gmo
! e413acd9330ac965fe2d01ce6adde133 gcc/po/es.po
08adf139e1661f359188a1aaf89c8fbc gcc/po/exgettext
! 3e2c0904249e96a02959b87d9685bbd9 gcc/po/fi.gmo
! 97cb9e5d0c414a0843b79b37d650548e gcc/po/fi.po
487f7d68797576ad7e4bf4ba04405771 gcc/po/fr.gmo
512fea5846a0ce2a5d5593520064bee9 gcc/po/fr.po
4bd456b7e0757217b349566b9fae162e gcc/po/gcc.pot
--- 5555,5565 ----
da55996f2e07e71b19a21da8fc5f2d4f gcc/po/de.po
abe042604f7a68b1a09a4e6a868fd381 gcc/po/el.gmo
20955c7240fcc00f705d0ec1051f5b3f gcc/po/el.po
! a42b4c86fa39ea56b211965972b6284e gcc/po/es.gmo
! 42b8ee4556a745865c26c7fb3ff394d0 gcc/po/es.po
08adf139e1661f359188a1aaf89c8fbc gcc/po/exgettext
! fdf307baa75212fdebf9849d572c571a gcc/po/fi.gmo
! a4125083673cd1780c5806c6f6c18a5e gcc/po/fi.po
487f7d68797576ad7e4bf4ba04405771 gcc/po/fr.gmo
512fea5846a0ce2a5d5593520064bee9 gcc/po/fr.po
4bd456b7e0757217b349566b9fae162e gcc/po/gcc.pot
*************** be3d4469c6e21a670c49e44f9f41da51 gcc/po
*** 5582,5596 ****
432725e3b5fd8d81799ac862e45babfd gcc/po/uk.po
165a6ea389fb7564dc64feefee18342e gcc/po/vi.gmo
fd96fcdae21faada9c8047fdad24b993 gcc/po/vi.po
! 959ec2f0ac3424c32e093aeba4fb87cf gcc/po/zh_CN.gmo
! d11985ddd0e44c02c18a55164da4812c gcc/po/zh_CN.po
! cfc68405fa1812edfa2940e020e261e7 gcc/po/zh_TW.gmo
! 6c08adf73a8095d168367569d665d404 gcc/po/zh_TW.po
ad86c1bfe24cb32827b77775fd35546f gcc/poly-int-types.h
d5467f59438148d3b13fb0178c550edf gcc/poly-int.h
9032d5ee79e4d028077dd971f5715f6c gcc/postreload-gcse.c
! eb499d719ccf9124b3156c2b37a08e5a gcc/postreload.c
! 91e908ea6cffb7e1638dae8361cef6b6 gcc/predict.c
6bf5877a67029100f11e365a656b24aa gcc/predict.def
44796e54633c0744208ffe45ab70eb83 gcc/predict.h
54d7846aa4d8f728b29c1e048ce71010 gcc/prefix.c
--- 5583,5597 ----
432725e3b5fd8d81799ac862e45babfd gcc/po/uk.po
165a6ea389fb7564dc64feefee18342e gcc/po/vi.gmo
fd96fcdae21faada9c8047fdad24b993 gcc/po/vi.po
! 021d42c7a491fc675771bb70eb1c6e0f gcc/po/zh_CN.gmo
! d16e646b371dc72cdd50c957bf9d7fe0 gcc/po/zh_CN.po
! c11b085bf19b67c569198ff1b9cba7a8 gcc/po/zh_TW.gmo
! d85ee44015fcdd800453bc303206ab77 gcc/po/zh_TW.po
ad86c1bfe24cb32827b77775fd35546f gcc/poly-int-types.h
d5467f59438148d3b13fb0178c550edf gcc/poly-int.h
9032d5ee79e4d028077dd971f5715f6c gcc/postreload-gcse.c
! cb7f4a771b98b52771b66b9ba0095840 gcc/postreload.c
! e6f40aa26c4435aee2c1e65dc81ce000 gcc/predict.c
6bf5877a67029100f11e365a656b24aa gcc/predict.def
44796e54633c0744208ffe45ab70eb83 gcc/predict.h
54d7846aa4d8f728b29c1e048ce71010 gcc/prefix.c
*************** c6a44d1349aeae141614121cf075aa55 gcc/rt
*** 5641,5647 ****
92b144947611b826c727606492b698da gcc/rtl.c
d70cb572ec724d7b4e800b88244efbf7 gcc/rtl.def
4b787cfe02855d4f61cb81005d41d416 gcc/rtl.h
! 202d7c83bc14718f184783c24d9e15ff gcc/rtlanal.c
f97ec81129637f5d13ca2acd3fd5202a gcc/rtlhash.c
ecbc8bfac976a6bd25063b78bba2879c gcc/rtlhash.h
9884afdd2241d135f7ed89224fb9d084 gcc/rtlhooks-def.h
--- 5642,5648 ----
92b144947611b826c727606492b698da gcc/rtl.c
d70cb572ec724d7b4e800b88244efbf7 gcc/rtl.def
4b787cfe02855d4f61cb81005d41d416 gcc/rtl.h
! d8cc390bdfafb77038543f58bc36622d gcc/rtlanal.c
f97ec81129637f5d13ca2acd3fd5202a gcc/rtlhash.c
ecbc8bfac976a6bd25063b78bba2879c gcc/rtlhash.h
9884afdd2241d135f7ed89224fb9d084 gcc/rtlhooks-def.h
*************** d825a21933c1853d88a071327098d0f2 gcc/ru
*** 5652,5658 ****
e1d2af9464c17f7bcf896aa0e45fd34b gcc/run-rtl-passes.h
449ccadd4fd1ac277ce3202af1490859 gcc/sancov.c
df98f11d34f35725432f5dd6eed11474 gcc/sanitizer.def
! 4f7398407786e7244b52bd6ee911cd6c gcc/sanopt.c
07ef0b44ae16fe3a81739ae8f07bd5c5 gcc/sbitmap.c
9e44430c2ddfd5729d692cb6068a7051 gcc/sbitmap.h
e3a879745a5769167f35ae991123e645 gcc/sched-deps.c
--- 5653,5659 ----
e1d2af9464c17f7bcf896aa0e45fd34b gcc/run-rtl-passes.h
449ccadd4fd1ac277ce3202af1490859 gcc/sancov.c
df98f11d34f35725432f5dd6eed11474 gcc/sanitizer.def
! a26b81c8f94625f2c1501a97cfa89f31 gcc/sanopt.c
07ef0b44ae16fe3a81739ae8f07bd5c5 gcc/sbitmap.c
9e44430c2ddfd5729d692cb6068a7051 gcc/sbitmap.h
e3a879745a5769167f35ae991123e645 gcc/sched-deps.c
*************** f0ba61386fb01cb549bc4d62070c58ab gcc/se
*** 5663,5669 ****
a4b6d065604126e8775ece10a02efd3c gcc/sel-sched-dump.h
382ac8f74528f4dbbaacf749d7af1a42 gcc/sel-sched-ir.c
de93ca3bc51ca692204d8732812b389e gcc/sel-sched-ir.h
! b3bf8c865db5e8c5c8cbfabff9d74ca3 gcc/sel-sched.c
63ec1c26c1a4af8a569e6c594abb3a7b gcc/sel-sched.h
f14554713c7a2f2a3131578e773d80f1 gcc/selftest-diagnostic.c
b2f845a8d8f2d8ef533e354cd9722311 gcc/selftest-diagnostic.h
--- 5664,5670 ----
a4b6d065604126e8775ece10a02efd3c gcc/sel-sched-dump.h
382ac8f74528f4dbbaacf749d7af1a42 gcc/sel-sched-ir.c
de93ca3bc51ca692204d8732812b389e gcc/sel-sched-ir.h
! fdb073050722e76dcf10f1ca79def04c gcc/sel-sched.c
63ec1c26c1a4af8a569e6c594abb3a7b gcc/sel-sched.h
f14554713c7a2f2a3131578e773d80f1 gcc/selftest-diagnostic.c
b2f845a8d8f2d8ef533e354cd9722311 gcc/selftest-diagnostic.h
*************** d9b5de9e30b15fdbd08609cf2e39209a gcc/se
*** 5677,5683 ****
88df3f18741b5fdf93aaa86a13befaa2 gcc/shrink-wrap.c
b2a402431491d372c33413979b082d77 gcc/shrink-wrap.h
8d948238415629a6f139ae806b313f57 gcc/signop.h
! 8fb9345d0eb3b9fa7374beb9adaab60b gcc/simplify-rtx.c
eb00da521c8348357cfd5906c8b9fccd gcc/sort.cc
e9414aa7962c60effa1170005b9e7e22 gcc/sparseset.c
696e61b88adf33a2a96f076d62592208 gcc/sparseset.h
--- 5678,5684 ----
88df3f18741b5fdf93aaa86a13befaa2 gcc/shrink-wrap.c
b2a402431491d372c33413979b082d77 gcc/shrink-wrap.h
8d948238415629a6f139ae806b313f57 gcc/signop.h
! 138fbd29d6f79a6f3cd98acb15f99a50 gcc/simplify-rtx.c
eb00da521c8348357cfd5906c8b9fccd gcc/sort.cc
e9414aa7962c60effa1170005b9e7e22 gcc/sparseset.c
696e61b88adf33a2a96f076d62592208 gcc/sparseset.h
*************** c9623b4d60f21a9ef0b3cf7fa5e7aed9 gcc/st
*** 5704,5711 ****
b6b3aeb60d16390e93625c615587d0e8 gcc/stringpool.h
b52c12c3a38a901b9cbae8b02f5cf575 gcc/substring-locations.c
6d4def6f754fcda7464974d99e9c467a gcc/substring-locations.h
! e460b8b27ff44fec721fdf67b14c67de gcc/symbol-summary.h
! 169132398ec7b84e187b60935d7fc7d5 gcc/symtab.c
0bbf086100e92c55a6fe2bc1f67b06a3 gcc/sync-builtins.def
4598ecf989b8e92ce32a3121d3981925 gcc/system.h
085e06baadf50bdc4a76b93e8da11ce7 gcc/target-def.h
--- 5705,5712 ----
b6b3aeb60d16390e93625c615587d0e8 gcc/stringpool.h
b52c12c3a38a901b9cbae8b02f5cf575 gcc/substring-locations.c
6d4def6f754fcda7464974d99e9c467a gcc/substring-locations.h
! de8ac0ae6b6ce34ed98aaf046b75a29b gcc/symbol-summary.h
! 828a28ba673b81047e6ca65a601f015b gcc/symtab.c
0bbf086100e92c55a6fe2bc1f67b06a3 gcc/sync-builtins.def
4598ecf989b8e92ce32a3121d3981925 gcc/system.h
085e06baadf50bdc4a76b93e8da11ce7 gcc/target-def.h
*************** b4c473a1ecc1bdecb2b76701e7db2735 gcc/ta
*** 5718,5724 ****
a1af69db4365630ea2e0d96f5e440141 gcc/targhooks.c
4ceeff51ef3de31e77e7a727a0363a37 gcc/targhooks.h
f39fcaa8197187283ccfed40107b426d gcc/testsuite/.gitattributes
! 54f1bde29cb8896d9dd5efa8d6039ec8 gcc/testsuite/ChangeLog
862f04afbd87da2cc6bc432c3f28430f gcc/testsuite/ChangeLog-1993-2007
029a5d8dacd25eb5d4711452ac448e5b gcc/testsuite/ChangeLog-2008
13ac28c41d51b66b4ec40dba6bd50f39 gcc/testsuite/ChangeLog-2009
--- 5719,5725 ----
a1af69db4365630ea2e0d96f5e440141 gcc/targhooks.c
4ceeff51ef3de31e77e7a727a0363a37 gcc/targhooks.h
f39fcaa8197187283ccfed40107b426d gcc/testsuite/.gitattributes
! ca3ef2b8cdb1bb465174b79baca7c83b gcc/testsuite/ChangeLog
862f04afbd87da2cc6bc432c3f28430f gcc/testsuite/ChangeLog-1993-2007
029a5d8dacd25eb5d4711452ac448e5b gcc/testsuite/ChangeLog-2008
13ac28c41d51b66b4ec40dba6bd50f39 gcc/testsuite/ChangeLog-2009
*************** f79bc4a80b6890a56ed93a450311aa3f gcc/te
*** 8529,8534 ****
--- 8530,8536 ----
80c4ecb8009d5febfdba9eeaee769526 gcc/testsuite/c-c++-common/Wunused-var-14.c
4cf8b02a3b864706401fd6b605f0f57f gcc/testsuite/c-c++-common/Wunused-var-15.c
9836c6883123f86042f04422818c01ae gcc/testsuite/c-c++-common/Wunused-var-16.c
+ f7cf252f8fb24838c4491a1b681216d3 gcc/testsuite/c-c++-common/Wunused-var-17.c
5f69d6398e9b0fc829351a16f994916d gcc/testsuite/c-c++-common/Wunused-var-2.c
8504217c544401c14012c8e1a1c18970 gcc/testsuite/c-c++-common/Wunused-var-3.c
43839f1fa5726ea0a0d6e063d7980642 gcc/testsuite/c-c++-common/Wunused-var-4.c
*************** f79bc4a80b6890a56ed93a450311aa3f gcc/te
*** 8540,8545 ****
--- 8542,8548 ----
a50d762e53776af1cdd4faaa0f858285 gcc/testsuite/c-c++-common/Wvarargs-2.c
f86e3374bdfa46067438564a7eae6a71 gcc/testsuite/c-c++-common/Wvarargs.c
e104bcfe21abe9fcad2b191ce9dee6c6 gcc/testsuite/c-c++-common/addrtmp.c
+ f39ce0b617da5fc9aba69733615ee0de gcc/testsuite/c-c++-common/array-1.c
15b241020a9a5497396b58539b2405ba gcc/testsuite/c-c++-common/array-5.c
9073937bc2452a6045dd4f3c9bc2ce80 gcc/testsuite/c-c++-common/array-6.c
b4d1bdfe48ad2f46a924717e65159b86 gcc/testsuite/c-c++-common/array-init.c
*************** ccfd13cce4ab8791afda954376d1c8cf gcc/te
*** 8696,8701 ****
--- 8699,8705 ----
ef95b2391ac4310fde10257ba4f7463b gcc/testsuite/c-c++-common/builtin-shuffle-1.c
3a349fcc5db93dcaf44a93c32735f04a gcc/testsuite/c-c++-common/builtin_location.c
2341b1258f7e71f5aeb2fc1ac6a17b27 gcc/testsuite/c-c++-common/builtins.c
+ a15893a996b14e9ab79c08a9d37157ee gcc/testsuite/c-c++-common/cold-1.c
fc20dcb635dd1e825303cc47593a9155 gcc/testsuite/c-c++-common/conflict-markers-1.c
c2ffea9f8039ad1708c1c073f6b3b25a gcc/testsuite/c-c++-common/conflict-markers-10.c
c83e3d1d9dca930d44de5fee29a51bbb gcc/testsuite/c-c++-common/conflict-markers-11.c
*************** c85025f0def783f70f9bb6a4ea9a23f3 gcc/te
*** 8732,8737 ****
--- 8736,8743 ----
a72a693524249dca84528ebc132082b5 gcc/testsuite/c-c++-common/cpp/pr63831-2.c
fc6312863e2a09e397690651369f617d gcc/testsuite/c-c++-common/cpp/pr65238-1.c
f09773d2f7d23b50a4dac013615f3aaa gcc/testsuite/c-c++-common/cpp/pr88974.c
+ df43df705a8397d72a82fe6d91e8ec64 gcc/testsuite/c-c++-common/cpp/pr92296-1.c
+ dde08a560ecf3f1c0944037da04f2048 gcc/testsuite/c-c++-common/cpp/pr92296-2.c
791d43cbbb9115404405c22be44e4ae7 gcc/testsuite/c-c++-common/cpp/ucnid-2011-1.c
0f93514d0ad79c03edfd672fb354e619 gcc/testsuite/c-c++-common/cpp/va-opt-2.c
d4400c02e16c9ce8399bebed26d20e37 gcc/testsuite/c-c++-common/cpp/va-opt-3.c
*************** f518663bb6d3fa214257a2306172d690 gcc/te
*** 9139,9146 ****
--- 9145,9160 ----
fb9e5ede5d43a206c572fa77be49ff02 gcc/testsuite/c-c++-common/gomp/pr85696.c
5a052f00b5f1b3e9b85f4ae57c40cd3f gcc/testsuite/c-c++-common/gomp/pr85956.c
62a0e309912895235f385cc84af32654 gcc/testsuite/c-c++-common/gomp/pr86025.c
+ 87ee1aaaafc85753df32bcb01994259d gcc/testsuite/c-c++-common/gomp/pr88203-1.c
+ 1f30700143a21b49cf9723cf4b9afff4 gcc/testsuite/c-c++-common/gomp/pr88203-2.c
+ e083342c345fbf82eb1bd2fc11805647 gcc/testsuite/c-c++-common/gomp/pr88203-3.c
0e989c3d25d634c553662814c966233e gcc/testsuite/c-c++-common/gomp/pr88588.c
61ca8b866c491c9064a5bbfddd90f421 gcc/testsuite/c-c++-common/gomp/pr90954.c
+ 819ef14711cd571111df09cc81f8d206 gcc/testsuite/c-c++-common/gomp/pr91401-1.c
+ b5b3167776d67985ba91daaee41243de gcc/testsuite/c-c++-common/gomp/pr91401-2.c
+ e4152974615471671fa0299b4121889f gcc/testsuite/c-c++-common/gomp/pr91920.c
+ bfdfa56ffe2ff48534494fc41ae0f4d1 gcc/testsuite/c-c++-common/gomp/pr93555-1.c
+ b31fd83ffcebdfef84e1d323888e9a76 gcc/testsuite/c-c++-common/gomp/pr93555-2.c
5d522e2f1f7455bc45f6c1f230d5a5b0 gcc/testsuite/c-c++-common/gomp/priority-1.c
1dc7bbbafb91e179ac43fa3959ab125f gcc/testsuite/c-c++-common/gomp/reduction-1.c
857f55ab743945a521e3287d1b905b4b gcc/testsuite/c-c++-common/gomp/reduction-task-1.c
*************** ee387176acb2650d09f446c7722b79b9 gcc/te
*** 9370,9375 ****
--- 9384,9390 ----
331f0a8981efa3c9d46048548df29cb7 gcc/testsuite/c-c++-common/pr83059.c
bd3f72430a07d0b5e231d78def646e60 gcc/testsuite/c-c++-common/pr84293.c
0addab8483a2751fe42aeb39bb3e48eb gcc/testsuite/c-c++-common/pr84293.h
+ 2d96e1440882ef4cd93d76271dcc4b77 gcc/testsuite/c-c++-common/pr84305.c
9dba97555bca18ab93f6efcd421e0a52 gcc/testsuite/c-c++-common/pr84873.c
2ba643064634a79819ce4effedd1fdd3 gcc/testsuite/c-c++-common/pr84982.c
2f717264a94f69b645aabceb21aa58e5 gcc/testsuite/c-c++-common/pr84999.c
*************** e1c6090860137d89e82f5f3641323830 gcc/te
*** 9385,9390 ****
--- 9400,9407 ----
39e1e4487b61521edeb410a0c9d9958b gcc/testsuite/c-c++-common/pr89946.c
75e121868c2f5a95ffbb0bf6c3de0a20 gcc/testsuite/c-c++-common/pr89985.c
6b55a407d08d3d9c405be8cf45164944 gcc/testsuite/c-c++-common/pr90108.c
+ 8fd647f51d930e760ae749a56cb10ac5 gcc/testsuite/c-c++-common/pr90677-2.c
+ d42df05e7fed418c382335210d53f9b8 gcc/testsuite/c-c++-common/pr90677.c
b0ba836310044e7b419ef679f0b48d6f gcc/testsuite/c-c++-common/raw-string-1.c
554e7071d2525351de28445762633866 gcc/testsuite/c-c++-common/raw-string-10.c
fc54e7227094f307fa566b3a8cd0ba9a gcc/testsuite/c-c++-common/raw-string-11.c
*************** cd207cce9213418d57092b0421db04a0 gcc/te
*** 10075,10080 ****
--- 10092,10098 ----
09d5c0b39937ef8fcdbd59cc1b8a35f3 gcc/testsuite/g++.dg/abi/mangle70.C
bdb7d5e9e8b96f820db6f1caaf850dfc gcc/testsuite/g++.dg/abi/mangle71.C
d8f9a5b68d809aa87d02fa7068210f81 gcc/testsuite/g++.dg/abi/mangle72.C
+ b3ecb552fa1904358ec43eadbf16a954 gcc/testsuite/g++.dg/abi/mangle73.C
cc6afae4c242d6e5a9083cec1a9a9907 gcc/testsuite/g++.dg/abi/mangle8.C
7e14b0353ae53e5a5a8bcf850c4fcbc9 gcc/testsuite/g++.dg/abi/mangle9.C
d85264fae2b4c2eb4d8629cb29c42e90 gcc/testsuite/g++.dg/abi/no-linkage-expr1.C
*************** aaab0b483d6b43b9fb8facfcf01ac3b3 gcc/te
*** 10161,10167 ****
573f81866bae96b4c422317d9f9f630c gcc/testsuite/g++.dg/asan/asan_mem_test.cc
ae18505cf8bcf60c7595916e5c13ca68 gcc/testsuite/g++.dg/asan/asan_oob_test.cc
a21e7d58f33bd86c0ccf7a0bac1f06bf gcc/testsuite/g++.dg/asan/asan_str_test.cc
! 53d7db0db315b5324f6dc211cb85a394 gcc/testsuite/g++.dg/asan/asan_test.C
0fcc90e0914494e1fd2869f9e48e49da gcc/testsuite/g++.dg/asan/asan_test.cc
7b5f694f7ad9cbae4aab558727eaceaf gcc/testsuite/g++.dg/asan/asan_test_config.h
6398e6ad4dd068bfb5be8cc034d1ade0 gcc/testsuite/g++.dg/asan/asan_test_utils.h
--- 10179,10185 ----
573f81866bae96b4c422317d9f9f630c gcc/testsuite/g++.dg/asan/asan_mem_test.cc
ae18505cf8bcf60c7595916e5c13ca68 gcc/testsuite/g++.dg/asan/asan_oob_test.cc
a21e7d58f33bd86c0ccf7a0bac1f06bf gcc/testsuite/g++.dg/asan/asan_str_test.cc
! 54d2e71b6a6e865e3e7d792985d5931f gcc/testsuite/g++.dg/asan/asan_test.C
0fcc90e0914494e1fd2869f9e48e49da gcc/testsuite/g++.dg/asan/asan_test.cc
7b5f694f7ad9cbae4aab558727eaceaf gcc/testsuite/g++.dg/asan/asan_test_config.h
6398e6ad4dd068bfb5be8cc034d1ade0 gcc/testsuite/g++.dg/asan/asan_test_utils.h
*************** f04d73b864d3202dc37ea73ff82f16e3 gcc/te
*** 10408,10413 ****
--- 10426,10432 ----
692499c2560134265269b5877c68e133 gcc/testsuite/g++.dg/concepts/class4.C
ba3d4854575b45fcffb3c72905ea4efe gcc/testsuite/g++.dg/concepts/class5.C
56a0b73845900d5520e98b230547b786 gcc/testsuite/g++.dg/concepts/class6.C
+ 5d73f9f5854ca135d48d8f7317f70a59 gcc/testsuite/g++.dg/concepts/concepts-pr88395.C
5abd397f0f456d35458ca2dd797a76f8 gcc/testsuite/g++.dg/concepts/constrained-parm.C
30fee39c3a76fce58fe9f1d338074484 gcc/testsuite/g++.dg/concepts/debug1.C
b82ee52925dd16c12bbc02a6a83e9325 gcc/testsuite/g++.dg/concepts/decl-diagnose.C
*************** abda548f6cf197b5d004afe0b4fa5557 gcc/te
*** 10627,10632 ****
--- 10646,10652 ----
4e8fb17c4bf742706cf3cdf77d845ed9 gcc/testsuite/g++.dg/conversion/op4.C
c0f35a8e0a449b69b0039186b48a3942 gcc/testsuite/g++.dg/conversion/op5.C
4abc5f18f6f8a1f4d436b8a6b3150df3 gcc/testsuite/g++.dg/conversion/op6.C
+ 5c78730bf80025f457f190a83a71fc4e gcc/testsuite/g++.dg/conversion/packed2.C
9b3ae1f3e79f50fca27a3e00a91d2baa gcc/testsuite/g++.dg/conversion/pr16333.C
519c18e7a304cfef222dd6fb78722c0d gcc/testsuite/g++.dg/conversion/pr41426.C
57621b2c950d1c44fdcadc7ab14ae9ac gcc/testsuite/g++.dg/conversion/pr59879.C
*************** aebe00f4a175042412bb35a0e940886a gcc/te
*** 10816,10821 ****
--- 10836,10842 ----
4481ae71257b80b484816097254a7ecb gcc/testsuite/g++.dg/cpp0x/alignas14.C
ff12be74ca1ae28c77d541ad1dc53873 gcc/testsuite/g++.dg/cpp0x/alignas15.C
6b919a388a7f6ff57c7976486c409fb7 gcc/testsuite/g++.dg/cpp0x/alignas16.C
+ d9734e67258a1ae418f1c09c99e52585 gcc/testsuite/g++.dg/cpp0x/alignas17.C
f1354435b9e53f5c5d923994edebb49f gcc/testsuite/g++.dg/cpp0x/alignas2.C
af0c02bf93d49e5385b61d3e59a21e28 gcc/testsuite/g++.dg/cpp0x/alignas3.C
4e770e3d245d014c238b07e798e03b36 gcc/testsuite/g++.dg/cpp0x/alignas4.C
*************** b9007290e56f8c058df6fc2174bc755b gcc/te
*** 10964,10969 ****
--- 10985,10991 ----
8d438a4771a90a79a8bc2ce48909f039 gcc/testsuite/g++.dg/cpp0x/constexpr-87934.C
8b02fdc54cf421462a001ebb0abaa9b9 gcc/testsuite/g++.dg/cpp0x/constexpr-89599.C
7ab875a350cce26e36b1b63c70224b5e gcc/testsuite/g++.dg/cpp0x/constexpr-89709.C
+ 5a518662f72ee08bfff694cc4d66124c gcc/testsuite/g++.dg/cpp0x/constexpr-92015.C
6aa74413b4ef74580a0a5da7abf23914 gcc/testsuite/g++.dg/cpp0x/constexpr-98.C
1bc1c995533b047ed8df6f6f24905cd1 gcc/testsuite/g++.dg/cpp0x/constexpr-99.C
3ccc1912e7827aae6b55936a3bf3bb24 gcc/testsuite/g++.dg/cpp0x/constexpr-__func__.C
*************** a3fe89999694d5e28c05f50283b43674 gcc/te
*** 10997,11002 ****
--- 11019,11026 ----
8b3cdd4f7cd1165cdb6c78c54ac301a5 gcc/testsuite/g++.dg/cpp0x/constexpr-array18.C
326904e2b7feccc3245b271683c77260 gcc/testsuite/g++.dg/cpp0x/constexpr-array19.C
687c6e77d4af3cd918c0ff421773a66c gcc/testsuite/g++.dg/cpp0x/constexpr-array2.C
+ f15a074b6c2f23374821380fa691e3fd gcc/testsuite/g++.dg/cpp0x/constexpr-array23.C
+ 3ac9c1d9fb2c907fc817b194d0e9d585 gcc/testsuite/g++.dg/cpp0x/constexpr-array24.C
8b7c8e7c1b64cfa0626f7f2311c9fef5 gcc/testsuite/g++.dg/cpp0x/constexpr-array3.C
6451aa5bb5fa736dda3ebad1dc2e8336 gcc/testsuite/g++.dg/cpp0x/constexpr-array4.C
1d46f32449f9e0292d662928246ec784 gcc/testsuite/g++.dg/cpp0x/constexpr-array5.C
*************** baf44bb3bbcc1b19835fcba0732c07b8 gcc/te
*** 11086,11091 ****
--- 11110,11116 ----
769dc1c8f5dd3fe287febfc28bff67f6 gcc/testsuite/g++.dg/cpp0x/constexpr-empty11.C
381479cfc8a4816cc7ecac86af925b76 gcc/testsuite/g++.dg/cpp0x/constexpr-empty12.C
753e5f64602d5b078b77508da90185f6 gcc/testsuite/g++.dg/cpp0x/constexpr-empty13.C
+ 2a33a8f9f599ab8ad56bcf27c4f4faa1 gcc/testsuite/g++.dg/cpp0x/constexpr-empty14.C
aef682375c033fe1283502c7f213d6ca gcc/testsuite/g++.dg/cpp0x/constexpr-empty2.C
f2be36db1d24de846eca69288f8e004a gcc/testsuite/g++.dg/cpp0x/constexpr-empty3.C
933cc130bc4ebc33fb81e8901f604e0a gcc/testsuite/g++.dg/cpp0x/constexpr-empty4.C
*************** e30db9bfd86140e4533c65e96fcc3879 gcc/te
*** 11181,11186 ****
--- 11206,11213 ----
d4c1a5cc0803346fbc25f7a4d5748fd8 gcc/testsuite/g++.dg/cpp0x/constexpr-nullptr.C
9234777336f797ed877671569794ca38 gcc/testsuite/g++.dg/cpp0x/constexpr-object1.C
a3363a18129aba2537ab6af225e19a74 gcc/testsuite/g++.dg/cpp0x/constexpr-object2.C
+ f7d1927790fe9ba9f36fd6bbda3f9ed0 gcc/testsuite/g++.dg/cpp0x/constexpr-odr1.C
+ 13d94e5ae0c04d0ff4b29a4b81f1163b gcc/testsuite/g++.dg/cpp0x/constexpr-odr2.C
b0f3e3a129a29b94607b7667c179da90 gcc/testsuite/g++.dg/cpp0x/constexpr-overflow.C
49a55dd7856ddc68e96fae9181b210ee gcc/testsuite/g++.dg/cpp0x/constexpr-overflow2.C
9b22329501cdc0c04eb177944b0b9482 gcc/testsuite/g++.dg/cpp0x/constexpr-pedantic.C
*************** dd4700728489bec2565506d830e467d8 gcc/te
*** 11224,11229 ****
--- 11251,11257 ----
6750ddb6d120c8e7368eaae5150e78c1 gcc/testsuite/g++.dg/cpp0x/constexpr-static10.C
7431d68cb7a29a352611ab8a7cdad67b gcc/testsuite/g++.dg/cpp0x/constexpr-static11.C
323e38ced3137a14df2f9f2f58e82249 gcc/testsuite/g++.dg/cpp0x/constexpr-static12.C
+ 411fb6dd9e470568da2b5ebae64434b1 gcc/testsuite/g++.dg/cpp0x/constexpr-static13.C
797b8689368a7682042cd629a45f6125 gcc/testsuite/g++.dg/cpp0x/constexpr-static2.C
c007c5c7f6d811c5864f3f9c4f7da9a4 gcc/testsuite/g++.dg/cpp0x/constexpr-static3.C
c75a35a6482a003b532401a29c58bf6e gcc/testsuite/g++.dg/cpp0x/constexpr-static4.C
*************** f05f6314bab056a03c548eb4c50f323a gcc/te
*** 11501,11507 ****
6c52dc0b8feff7c3403eed172bec2ebd gcc/testsuite/g++.dg/cpp0x/enum21a.C
52d5ff8d8835de9029291b2e0be36123 gcc/testsuite/g++.dg/cpp0x/enum21b.C
7ff20adcaa2a7e7bc5390f2d01264d25 gcc/testsuite/g++.dg/cpp0x/enum22.C
! 1fce61041d5fe27ecb76803d5fe4e086 gcc/testsuite/g++.dg/cpp0x/enum23.C
6e20f71280665d553eb0b07726a3453d gcc/testsuite/g++.dg/cpp0x/enum24.C
d69ddb30d1feb9e35bc7751f26929957 gcc/testsuite/g++.dg/cpp0x/enum25.C
43b0beab61ef041fe4a52745f4a7aff8 gcc/testsuite/g++.dg/cpp0x/enum26.C
--- 11529,11535 ----
6c52dc0b8feff7c3403eed172bec2ebd gcc/testsuite/g++.dg/cpp0x/enum21a.C
52d5ff8d8835de9029291b2e0be36123 gcc/testsuite/g++.dg/cpp0x/enum21b.C
7ff20adcaa2a7e7bc5390f2d01264d25 gcc/testsuite/g++.dg/cpp0x/enum22.C
! 5bb1acca72edaa4854976e419c1c6a64 gcc/testsuite/g++.dg/cpp0x/enum23.C
6e20f71280665d553eb0b07726a3453d gcc/testsuite/g++.dg/cpp0x/enum24.C
d69ddb30d1feb9e35bc7751f26929957 gcc/testsuite/g++.dg/cpp0x/enum25.C
43b0beab61ef041fe4a52745f4a7aff8 gcc/testsuite/g++.dg/cpp0x/enum26.C
*************** cd13bec4a277695c3f0d055601e86cec gcc/te
*** 11517,11522 ****
--- 11545,11552 ----
b1410081d8b18a483605fea34ded714b gcc/testsuite/g++.dg/cpp0x/enum35.C
948a96ff04f2a9966e35400fe5a0ae86 gcc/testsuite/g++.dg/cpp0x/enum36.C
9d78eeec0d8fa324ce972cdd1b925d06 gcc/testsuite/g++.dg/cpp0x/enum37.C
+ 0c1bd3a6f06a95634ee6e7e1c8cfcb43 gcc/testsuite/g++.dg/cpp0x/enum38.C
+ f520b3c677602a9f4bb925811947dd27 gcc/testsuite/g++.dg/cpp0x/enum39.C
4314a939d182c8ee315404a2d9cf3ec3 gcc/testsuite/g++.dg/cpp0x/enum4.C
771003df84c0886c950718b7f6d81033 gcc/testsuite/g++.dg/cpp0x/enum5.C
67ec15297186c0dc5b419618c460a2f2 gcc/testsuite/g++.dg/cpp0x/enum6.C
*************** c157a52995fc54c0b46c8795dea13ada gcc/te
*** 11658,11664 ****
--- 11688,11697 ----
c75dea1e932fc65c88986652795dcbc3 gcc/testsuite/g++.dg/cpp0x/gen-attrs-64.C
52f82ed142fbe1acdd0fe0b6f0d56e33 gcc/testsuite/g++.dg/cpp0x/gen-attrs-65.C
40fb270687c3b0ccc01dc21db4e07678 gcc/testsuite/g++.dg/cpp0x/gen-attrs-66.C
+ 322765b108a034880469a5351cdc61a2 gcc/testsuite/g++.dg/cpp0x/gen-attrs-68.C
+ b76ee20d4e5161664ef1b5b122268e53 gcc/testsuite/g++.dg/cpp0x/gen-attrs-69.C
f55fa66c82d267feca5db82dc835210a gcc/testsuite/g++.dg/cpp0x/gen-attrs-7.C
+ 1e684e9934b01f7c9c53981ab2a9cd8f gcc/testsuite/g++.dg/cpp0x/gen-attrs-71.C
e0b4f953ad274eb8ec84b8e630f87d3a gcc/testsuite/g++.dg/cpp0x/gen-attrs-8.C
5dd92815927177080853d47a890f5439 gcc/testsuite/g++.dg/cpp0x/gen-attrs-9.C
941ea69f8ea2184ff55eabc54b7eeb07 gcc/testsuite/g++.dg/cpp0x/gnu_fext-numeric-literals.C
*************** eb356bb5e47b9ce813f868c74583298f gcc/te
*** 11716,11721 ****
--- 11749,11755 ----
69ad16a291979db5662ea42e8bd7fa16 gcc/testsuite/g++.dg/cpp0x/inh-ctor7.C
3e47bc4c1090a1639f8ab3081f4464c0 gcc/testsuite/g++.dg/cpp0x/inh-ctor8.C
0ad99281a7ad33864f8d659dc86ddbe2 gcc/testsuite/g++.dg/cpp0x/inh-ctor9.C
+ 5900d3033d3e379599e256c557071368 gcc/testsuite/g++.dg/cpp0x/initlist-array10.C
09f09079c354ad93c3844a14549e0854 gcc/testsuite/g++.dg/cpp0x/initlist-array2.C
2689261b6dbe2bf5875e915ce8a31a53 gcc/testsuite/g++.dg/cpp0x/initlist-array3.C
6c1907913d332611dd16d03002d759f9 gcc/testsuite/g++.dg/cpp0x/initlist-array4.C
*************** f8949630a7a02f66d0ceb796b5525cb8 gcc/te
*** 11740,11745 ****
--- 11774,11780 ----
65466ce772f6f3dffc7bebcc9d464f50 gcc/testsuite/g++.dg/cpp0x/initlist-lifetime2.C
797ec13acacd7b94b604de1651b198db gcc/testsuite/g++.dg/cpp0x/initlist-n3922.C
75fe6dcf44e6fa0a35cfaa871faa2b15 gcc/testsuite/g++.dg/cpp0x/initlist-new1.C
+ 7bddf9c6b842f5be4f0dcb028b72f5d6 gcc/testsuite/g++.dg/cpp0x/initlist-new2.C
bcbe398391cda8139c8462f46935b7e2 gcc/testsuite/g++.dg/cpp0x/initlist-opt.C
a054a7d4e96233b7a3a6591843a8d33f gcc/testsuite/g++.dg/cpp0x/initlist-pmf1.C
e3ec7ab89d20e6ccf50aa92954896f07 gcc/testsuite/g++.dg/cpp0x/initlist-postfix-open-square.C
*************** f787403dc64b99be9c0c9b763121c4d7 gcc/te
*** 11774,11779 ****
--- 11809,11815 ----
69eec03ee9eb1e7dae7248aae0903fd0 gcc/testsuite/g++.dg/cpp0x/initlist113.C
4d9bf62c5a26d090ff28c1f8c54bbfcf gcc/testsuite/g++.dg/cpp0x/initlist114.C
2a71e373ad8beaab8b8cdfe204c0f1fe gcc/testsuite/g++.dg/cpp0x/initlist115.C
+ f3e3a423075b6d0d03243d7a3125c656 gcc/testsuite/g++.dg/cpp0x/initlist118.C
540183723223acf529878183682623fb gcc/testsuite/g++.dg/cpp0x/initlist12.C
a5e64985a46db12492fa03d5e7dfd347 gcc/testsuite/g++.dg/cpp0x/initlist13.C
3071307e831ae441c218cbab9dbc1d8f gcc/testsuite/g++.dg/cpp0x/initlist14.C
*************** b8cc2b4775f53161af6fb5ad8dd9aec9 gcc/te
*** 12072,12077 ****
--- 12108,12114 ----
377519bbfa40d471fa240ad2fabdc7b4 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template13.C
bd42363d4165a48ad99bfda7142b3178 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template14.C
60815d14466a48a5c352df28f6455161 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template15.C
+ 47be9f019182b953c600aba25cf571cc gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template16.C
dbe71301a1e8df7942fe34c5beb4c73e gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template2.C
94cfc36278ab817fd2df7010aa3c83ba gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template3.C
e099bfa2ff82527ea9b86eaaab9acb43 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-template4.C
*************** f834269fe12aa32c10b9a1ccedad58d6 gcc/te
*** 12114,12119 ****
--- 12151,12157 ----
ad61d0dd81ce64e7dd902f8cbf0238b7 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-variadic6.C
071704dfd41c6352bda4c9fd8242a14e gcc/testsuite/g++.dg/cpp0x/lambda/lambda-variadic7.C
a159ce2083ee6333569e0f552b98c062 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-variadic8.C
+ b04e79d6eb874572f153681bc89d3eae gcc/testsuite/g++.dg/cpp0x/lambda/lambda-variadic9.C
a667f158c89a42014e4ccc192862b932 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-vla1.C
9da68ff6b459e7ba59b9ed131bcd5fa5 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-vla2.C
d1d6585012ce959c2cfe7d34a8d32f1f gcc/testsuite/g++.dg/cpp0x/lambda/lambda-vla3.C
*************** b4fac094247fc59b38ba70dd7eb70374 gcc/te
*** 12191,12196 ****
--- 12229,12235 ----
027e92cc415497bd946a9aaea76c4cc6 gcc/testsuite/g++.dg/cpp0x/nondeduced3.C
d4d2473df78fbcede5b80ef1560e5935 gcc/testsuite/g++.dg/cpp0x/nondeduced4.C
c5f62c7fa81e1238df655c66dcf256b6 gcc/testsuite/g++.dg/cpp0x/nontype1.C
+ 31f2b9732c56a8970a3ac0ca38ec1afa gcc/testsuite/g++.dg/cpp0x/nontype5.C
cb5b10af278fbafac78a6d53829b3d37 gcc/testsuite/g++.dg/cpp0x/not_special.C
e950526c0d7127f5718072cb9366641e gcc/testsuite/g++.dg/cpp0x/nsdmi-aggr1.C
94c644ef2cfc0af0de150c6699b774ed gcc/testsuite/g++.dg/cpp0x/nsdmi-anon-struct1.C
*************** de8f6bc0c1c0ee4d4af6662950dc9f48 gcc/te
*** 12221,12226 ****
--- 12260,12266 ----
3c00d9222274c65ab423d76b0d32f706 gcc/testsuite/g++.dg/cpp0x/nsdmi-template16.C
e754c2eb76d7ab2dff572da57c588a4d gcc/testsuite/g++.dg/cpp0x/nsdmi-template17.C
5bb35197de42268300623627600348d9 gcc/testsuite/g++.dg/cpp0x/nsdmi-template18.C
+ 0b3784303bce9e43936f535a111b1d8f gcc/testsuite/g++.dg/cpp0x/nsdmi-template19.C
d83133afa9fe5d533ed8b6cecc90cc44 gcc/testsuite/g++.dg/cpp0x/nsdmi-template2.C
a4838f227c782d1dc8cc894a19deb0d1 gcc/testsuite/g++.dg/cpp0x/nsdmi-template3.C
ecc55c2acf604366d5eab66ebf6a29dd gcc/testsuite/g++.dg/cpp0x/nsdmi-template4.C
*************** a752e6374a9b016d0db3cc3d89cb1994 gcc/te
*** 12293,12302 ****
--- 12333,12345 ----
dd2e11db6d41e95dd646b54bb5547277 gcc/testsuite/g++.dg/cpp0x/nullptr39.C
d31a397b7e49ac715bfc08852a1710f3 gcc/testsuite/g++.dg/cpp0x/nullptr40.C
cce8d7efe84ba47b6a9a649b7e96db1d gcc/testsuite/g++.dg/cpp0x/nullptr41.C
+ 563e6aa07672f33e94fe0e1d80404a0e gcc/testsuite/g++.dg/cpp0x/nullptr42.C
+ afdfafb40dd063d062a20c67e4309ae4 gcc/testsuite/g++.dg/cpp0x/nullptr45.C
9ac544c85b4718bef7e0acbc03dd004f gcc/testsuite/g++.dg/cpp0x/overflow1.C
fb7661df85ad6b415b31574c67fa4ee0 gcc/testsuite/g++.dg/cpp0x/overload-conv-1.C
5ca00ae02aa7919e0b3d9730fa9f9ac5 gcc/testsuite/g++.dg/cpp0x/overload-conv-2.C
2c6f9529ab2133b66b083833e669fd58 gcc/testsuite/g++.dg/cpp0x/overload-conv-3.C
+ 05f8d114c0307676d7d3b227b2e3213d gcc/testsuite/g++.dg/cpp0x/overload-conv-4.C
e1598f2c9f261104495d9e7d921f8264 gcc/testsuite/g++.dg/cpp0x/overload.C
15b4148c92763edcf90b0fe0cb6f7742 gcc/testsuite/g++.dg/cpp0x/overload2.C
e51fa7b3953a97711f4b666480bad308 gcc/testsuite/g++.dg/cpp0x/overload3.C
*************** db21b41ed5477b5b7d2b3c575f29a0ff gcc/te
*** 12538,12543 ****
--- 12581,12588 ----
ac0f7d877c049ceb6028dbfcf2999027 gcc/testsuite/g++.dg/cpp0x/pr89900-3.C
bc534d453c8bf059bcb562e4107fc4b3 gcc/testsuite/g++.dg/cpp0x/pr89900-4.C
65470c1d7f1a642aa59a9a3d753c0270 gcc/testsuite/g++.dg/cpp0x/pr90598.C
+ cf4d7a0934fa5897248e568b884df620 gcc/testsuite/g++.dg/cpp0x/pr92524.C
+ b01c3079ace1bdd462b03d3af7906721 gcc/testsuite/g++.dg/cpp0x/pr93905.C
1f725aacb479fe72f5d994446fab5d54 gcc/testsuite/g++.dg/cpp0x/ptrmem-cst-arg1.C
6e8e648c26d9bf237cc152180e88c2c2 gcc/testsuite/g++.dg/cpp0x/range-for1.C
5eec4a19463d582cbc114d93dbff246a gcc/testsuite/g++.dg/cpp0x/range-for11.C
*************** bc534d453c8bf059bcb562e4107fc4b3 gcc/te
*** 12548,12554 ****
e52b898f780ed4b01b2040fda37a40e1 gcc/testsuite/g++.dg/cpp0x/range-for16.C
0e454e1ec2555139c4421d867fea9ce8 gcc/testsuite/g++.dg/cpp0x/range-for17.C
fefa8333291f79eeb5c459271d00207d gcc/testsuite/g++.dg/cpp0x/range-for18.C
! f2a4a726a9f93843defe980006f2d5d0 gcc/testsuite/g++.dg/cpp0x/range-for19.C
b3f22dfc51eac328e62e1c71d0450302 gcc/testsuite/g++.dg/cpp0x/range-for2.C
fc5dc64698e20d2a9cebe70f9538336b gcc/testsuite/g++.dg/cpp0x/range-for20.C
7da87eff4f7e64da58b5263b4a758b3a gcc/testsuite/g++.dg/cpp0x/range-for21.C
--- 12593,12599 ----
e52b898f780ed4b01b2040fda37a40e1 gcc/testsuite/g++.dg/cpp0x/range-for16.C
0e454e1ec2555139c4421d867fea9ce8 gcc/testsuite/g++.dg/cpp0x/range-for17.C
fefa8333291f79eeb5c459271d00207d gcc/testsuite/g++.dg/cpp0x/range-for18.C
! 9a60c75d3ed2fb2316c2628dd3959cee gcc/testsuite/g++.dg/cpp0x/range-for19.C
b3f22dfc51eac328e62e1c71d0450302 gcc/testsuite/g++.dg/cpp0x/range-for2.C
fc5dc64698e20d2a9cebe70f9538336b gcc/testsuite/g++.dg/cpp0x/range-for20.C
7da87eff4f7e64da58b5263b4a758b3a gcc/testsuite/g++.dg/cpp0x/range-for21.C
*************** ccba3040ed86b5ffae7d72b18f556d1c gcc/te
*** 12615,12620 ****
--- 12660,12666 ----
3a02f68ebc48112a74f31983fd72c639 gcc/testsuite/g++.dg/cpp0x/rv-cond3.C
4d78acdd9f4b8ae8afa532ceaf0c07c4 gcc/testsuite/g++.dg/cpp0x/rv-conv1.C
68fdce54ec37dd9c4ce6cc23940e6669 gcc/testsuite/g++.dg/cpp0x/rv-conv2.C
+ 55bf372aa23fed509d52b517cd46aa98 gcc/testsuite/g++.dg/cpp0x/rv-conv3.C
889a7002f4d78b4abd44856da792f8dc gcc/testsuite/g++.dg/cpp0x/rv-copy1.C
de88aaa56b0d394bd02f079bb0f4dddf gcc/testsuite/g++.dg/cpp0x/rv-deduce.C
f213598004dcfd0117fecc9593637790 gcc/testsuite/g++.dg/cpp0x/rv-deduce2.C
*************** c8339a090dcd3866e3bcee3adaa249a3 gcc/te
*** 12749,12754 ****
--- 12795,12801 ----
1045190e7a2a2af12d9111218b20eb11 gcc/testsuite/g++.dg/cpp0x/syntax-err1.C
20984e5b7381310a8855ddc725729c4a gcc/testsuite/g++.dg/cpp0x/temp-constructor-bug.C
2a53ad88d27935cbe876c59fe9bc862e gcc/testsuite/g++.dg/cpp0x/temp-extend1.C
+ 0430340587418d0e800795c03d5d2841 gcc/testsuite/g++.dg/cpp0x/temp-extend2.C
97ab61118de35ac65f81fc7075a15809 gcc/testsuite/g++.dg/cpp0x/temp-va-arg-bug.C
e2c30c506c227664a12cede2fc526492 gcc/testsuite/g++.dg/cpp0x/temp_default1.C
b64243df23e4a2b648985cc8fb7842c6 gcc/testsuite/g++.dg/cpp0x/temp_default2.C
*************** e47543bd9482646c5c0d1023519e7eb1 gcc/te
*** 12890,12895 ****
--- 12937,12943 ----
5ad1db01bdd9d87f2a8276b08cff8db7 gcc/testsuite/g++.dg/cpp0x/variadic-new2.C
9965da4f62ae847ce666120789b29c79 gcc/testsuite/g++.dg/cpp0x/variadic-nondeduce1.C
1441fa6139ca73d25aa889aafd3b483c gcc/testsuite/g++.dg/cpp0x/variadic-nondeduce2.C
+ 7ef2a770be31e4cfad400f2e8df32ae9 gcc/testsuite/g++.dg/cpp0x/variadic-parm1.C
48eb2c981da41427b39595337f986824 gcc/testsuite/g++.dg/cpp0x/variadic-partial1.C
929e72e50917907d735e84a67d7462fa gcc/testsuite/g++.dg/cpp0x/variadic-ref1.C
0e1a5d3d60669df0ab8d526a879627f5 gcc/testsuite/g++.dg/cpp0x/variadic-rref.C
*************** b823b50bc430c6f0253adad46e2b9fea gcc/te
*** 13141,13146 ****
--- 13189,13195 ----
c8a2c7e8b1e0cbd3443ab02738d85644 gcc/testsuite/g++.dg/cpp1y/69098.C
8cb32d00716e6f14136f2c7d256f5456 gcc/testsuite/g++.dg/cpp1y/Wnarrowing1.C
438090a75b721771fcfd7c5159abbb67 gcc/testsuite/g++.dg/cpp1y/attr-deprecated-2.C
+ e373712ec656768ee571d2a278d813da gcc/testsuite/g++.dg/cpp1y/attr-deprecated-3.C
27985f1bda815c3234299bd64d8847b2 gcc/testsuite/g++.dg/cpp1y/attr-deprecated-neg.C
668d7e4abca655f37806cd95cf359930 gcc/testsuite/g++.dg/cpp1y/attr-deprecated.C
fb2e417a364945cb8149b9526292009b gcc/testsuite/g++.dg/cpp1y/attributes-enum-1.C
*************** da8b691c486f119146bd69dc1d417757 gcc/te
*** 13196,13201 ****
--- 13245,13251 ----
f14e5c551fb573045f545479bf77b0d9 gcc/testsuite/g++.dg/cpp1y/auto-fn53.C
70f00a62c4cade3da04f5da5bae5f7ed gcc/testsuite/g++.dg/cpp1y/auto-fn54.C
e8b2e4a51212edac48bff97c2ba40b77 gcc/testsuite/g++.dg/cpp1y/auto-fn55.C
+ c58aea587f92e9318dcbcd4325ab9500 gcc/testsuite/g++.dg/cpp1y/auto-fn56.C
3861eed28323480e4913eea3d9c0ec00 gcc/testsuite/g++.dg/cpp1y/auto-fn6.C
03b6f2674c38c8f6ed9f7fc03583b1dc gcc/testsuite/g++.dg/cpp1y/auto-fn7.C
e9a317fa32e36cef4553b50965e48550 gcc/testsuite/g++.dg/cpp1y/auto-fn8.C
*************** d4fc72d059e047077b1d6033d4c13026 gcc/te
*** 13264,13269 ****
--- 13314,13320 ----
f1a863bb06163b628459fbc6a355ec3f gcc/testsuite/g++.dg/cpp1y/constexpr-empty4.C
995873768089d805df939c03d2be8b1c gcc/testsuite/g++.dg/cpp1y/constexpr-hana1.C
f4f6c3d1cdaf2aa67bfa2b8c851853d5 gcc/testsuite/g++.dg/cpp1y/constexpr-incr1.C
+ af9863e9fca568fa5ae3ad41b051cf84 gcc/testsuite/g++.dg/cpp1y/constexpr-incr2.C
3e9dd485a2a6d99132c92a6d04b96ee9 gcc/testsuite/g++.dg/cpp1y/constexpr-initlist1.C
ab56709d31a56066e2a96779bd194779 gcc/testsuite/g++.dg/cpp1y/constexpr-instantiate.C
14b35cb8a87b121f413f22b600d19592 gcc/testsuite/g++.dg/cpp1y/constexpr-local-compound1.C
*************** f8cacc42b6d0ee02c4ec28b4871b946c gcc/te
*** 13305,13311 ****
516d0cef75f4267f67d755a810807bc2 gcc/testsuite/g++.dg/cpp1y/digit-sep-cxx11-neg.C
72e5ba540e8106a24b1c940578366f90 gcc/testsuite/g++.dg/cpp1y/digit-sep-neg.C
2ccf049767734b973a90dea30576d8a8 gcc/testsuite/g++.dg/cpp1y/digit-sep.C
- c4436fb0148cf765eb9ae5580af8f058 gcc/testsuite/g++.dg/cpp1y/dr1560.C
f76edece5ff5aa3ce9cb5508f587b65c gcc/testsuite/g++.dg/cpp1y/feat-cxx11-neg.C
144ddec296f95158abf3660366239e78 gcc/testsuite/g++.dg/cpp1y/feat-cxx11.C
a3ed2dff5176ed6eef5ae2d57cf13c3c gcc/testsuite/g++.dg/cpp1y/feat-cxx14-neg.C
--- 13356,13361 ----
*************** e3c04ea33a4074f5cd6955ab214fc656 gcc/te
*** 13339,13344 ****
--- 13389,13395 ----
c158c48cdc574a61e06922b17254f0d7 gcc/testsuite/g++.dg/cpp1y/lambda-generic-89419.C
7b8a0f9d78b07ded387c1b8722c94c66 gcc/testsuite/g++.dg/cpp1y/lambda-generic-90265.C
3d83ad628fa7a413326bf23651c5bb6e gcc/testsuite/g++.dg/cpp1y/lambda-generic-90548.C
+ e5ec20a7dc7d9414a0113b4d2f182408 gcc/testsuite/g++.dg/cpp1y/lambda-generic-90842.C
87f3d5397981cf431912aae6490ea63a gcc/testsuite/g++.dg/cpp1y/lambda-generic-auto1.C
18a2431f49a5d003b8c4af0ee1ee26fb gcc/testsuite/g++.dg/cpp1y/lambda-generic-cfun.C
043e19917f87f2b2acd754fc6d7db469 gcc/testsuite/g++.dg/cpp1y/lambda-generic-const1.C
*************** fcdbf299db7426d40d79e7ce91bbbc1e gcc/te
*** 13372,13377 ****
--- 13423,13429 ----
79b0200bf1646b28e5d82c30cae3557d gcc/testsuite/g++.dg/cpp1y/lambda-generic-noexcept1.C
52a13a3c9f86f7ceca034afb60b8f785 gcc/testsuite/g++.dg/cpp1y/lambda-generic-nsdmi1.C
a43ac25cf9725b9920a2cff31d07a8a7 gcc/testsuite/g++.dg/cpp1y/lambda-generic-pretty1.C
+ bbd3fddcc74936595e633fdd96432322 gcc/testsuite/g++.dg/cpp1y/lambda-generic-ref1.C
db3760d317d0220aeddc9a1ce4072105 gcc/testsuite/g++.dg/cpp1y/lambda-generic-static1.C
c6cfff44332b8bfb7c52ace4e1af76c5 gcc/testsuite/g++.dg/cpp1y/lambda-generic-static2.C
d91a981f54ab2a15c0e9427ccb338f24 gcc/testsuite/g++.dg/cpp1y/lambda-generic-targ1.C
*************** fe118321a9f7ae6d0b7db3dea8fea392 gcc/te
*** 13420,13426 ****
fabb2b807c750e9106c4bf0957c73eb5 gcc/testsuite/g++.dg/cpp1y/lambda-init14.C
ca7e8735db99f7f5fd14ba8748118d88 gcc/testsuite/g++.dg/cpp1y/lambda-init15.C
94541d9e486223ed3e08f03421566a99 gcc/testsuite/g++.dg/cpp1y/lambda-init15a.C
! be21e9afd5b9562ecdf4950349fa5936 gcc/testsuite/g++.dg/cpp1y/lambda-init16.C
e0f5a695e9604ed19c20c1e333da6015 gcc/testsuite/g++.dg/cpp1y/lambda-init17.C
5fe011c8566939194cd3e0837e9e34c0 gcc/testsuite/g++.dg/cpp1y/lambda-init18.C
958fe0b6d46088167932b1f19e7a6780 gcc/testsuite/g++.dg/cpp1y/lambda-init19.C
--- 13472,13478 ----
fabb2b807c750e9106c4bf0957c73eb5 gcc/testsuite/g++.dg/cpp1y/lambda-init14.C
ca7e8735db99f7f5fd14ba8748118d88 gcc/testsuite/g++.dg/cpp1y/lambda-init15.C
94541d9e486223ed3e08f03421566a99 gcc/testsuite/g++.dg/cpp1y/lambda-init15a.C
! d25d17ead640b35eb6d703f530780723 gcc/testsuite/g++.dg/cpp1y/lambda-init16.C
e0f5a695e9604ed19c20c1e333da6015 gcc/testsuite/g++.dg/cpp1y/lambda-init17.C
5fe011c8566939194cd3e0837e9e34c0 gcc/testsuite/g++.dg/cpp1y/lambda-init18.C
958fe0b6d46088167932b1f19e7a6780 gcc/testsuite/g++.dg/cpp1y/lambda-init19.C
*************** eeda9ed3e95d7a31c74fcdebd07abf15 gcc/te
*** 13434,13442 ****
--- 13486,13496 ----
c9c747d6c51f186d14465f9e9bb8db01 gcc/testsuite/g++.dg/cpp1y/lambda-init9.C
b09f7464f0c692821ff03fb28a825adb gcc/testsuite/g++.dg/cpp1y/lambda-mangle-1.C
d13aa7a67136b0f4d673be5df541a2ab gcc/testsuite/g++.dg/cpp1y/lambda-var-templ1.C
+ a0fd7a682321878b07d220b8dae15ac3 gcc/testsuite/g++.dg/cpp1y/lambda-vla1.C
7686aff0777cf041b8454732d1f17d8e gcc/testsuite/g++.dg/cpp1y/left-shift-1.C
5905dcf4a0cf928e5f5eef8ea574d3ee gcc/testsuite/g++.dg/cpp1y/left-shift-2.C
8505d7bc855e9e02e1d7a75fe803d027 gcc/testsuite/g++.dg/cpp1y/mangle1.C
+ bedfe39f995dd913a1715072975f6a1c gcc/testsuite/g++.dg/cpp1y/nontype1.C
4707396951c53026c3f457ecd9db5312 gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr1.C
5326d1798f69e0f75031ab294cf8dd21 gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr10.C
c9dde900e1dd03846724a7195332d8ea gcc/testsuite/g++.dg/cpp1y/nsdmi-aggr11.C
*************** c2718dae92b11fab872ec5fd03528cc2 gcc/te
*** 13456,13461 ****
--- 13510,13516 ----
b37062a8a2160ab7a8f6b2faf63a7687 gcc/testsuite/g++.dg/cpp1y/paren2.C
e8c6da7fb812f06074a9399c95d62136 gcc/testsuite/g++.dg/cpp1y/paren3.C
86a0b848e4db7d7f6ee1c78dcc897448 gcc/testsuite/g++.dg/cpp1y/paren4.C
+ f5ccbfc0fb9fd723ce3d0565bf79908b gcc/testsuite/g++.dg/cpp1y/paren5.C
a59e5fd28eae5235838080483b6939a6 gcc/testsuite/g++.dg/cpp1y/phoobhar.h
7d18afb36bcaa55af2030c6546d5df38 gcc/testsuite/g++.dg/cpp1y/pr57640.C
c4165eafc91468f7acbe5ba99603b2e7 gcc/testsuite/g++.dg/cpp1y/pr57644.C
*************** d02a4d5b691aff1357a5f77cf5774190 gcc/te
*** 13623,13628 ****
--- 13678,13684 ----
49e18036267a0e371976b20d04e1dc29 gcc/testsuite/g++.dg/cpp1y/var-templ60.C
d40d9f43eb7820281681023bed02f7ce gcc/testsuite/g++.dg/cpp1y/var-templ61.C
dc3178e9e6877534395f10339750116a gcc/testsuite/g++.dg/cpp1y/var-templ62.C
+ f857aeaa600cb3e85cdb97a6e0963bbd gcc/testsuite/g++.dg/cpp1y/var-templ63.C
3c670164f1a7f8f91ef1db2f80526182 gcc/testsuite/g++.dg/cpp1y/var-templ7.C
7490ba7f2bf9511118a48f52e8c4ceed gcc/testsuite/g++.dg/cpp1y/var-templ8.C
c62c3c5ce4dabfb077ffd26896b1d204 gcc/testsuite/g++.dg/cpp1y/var-templ9.C
*************** e2a156ae37a7cc2e6e931224eb20400d gcc/te
*** 13728,13737 ****
3920e918276476b088679b893b9cde19 gcc/testsuite/g++.dg/cpp1z/class-deduction9.C
d09105e6c1f377543e5514e34d2837cd gcc/testsuite/g++.dg/cpp1z/constexpr-83692.C
6962bfa121a4383ee0b7a8f045abde3f gcc/testsuite/g++.dg/cpp1z/constexpr-84684.C
b70f4276933d24cd68ae2e047a954ece gcc/testsuite/g++.dg/cpp1z/constexpr-if1.C
1e52ede853069710bb8cc3b5b323de8c gcc/testsuite/g++.dg/cpp1z/constexpr-if10.C
6ad161b09218162d754ac9e397dad17c gcc/testsuite/g++.dg/cpp1z/constexpr-if11.C
! d8d0c9141ffb418e9318ee27c3b3e73e gcc/testsuite/g++.dg/cpp1z/constexpr-if12.C
85458a098e2f29d2dc61dde4d8fd28f1 gcc/testsuite/g++.dg/cpp1z/constexpr-if13.C
cad98567f94d53447ca1544e0c0c7115 gcc/testsuite/g++.dg/cpp1z/constexpr-if14.C
4b5a0655efaa90419f80f55074e571b0 gcc/testsuite/g++.dg/cpp1z/constexpr-if15.C
--- 13784,13794 ----
3920e918276476b088679b893b9cde19 gcc/testsuite/g++.dg/cpp1z/class-deduction9.C
d09105e6c1f377543e5514e34d2837cd gcc/testsuite/g++.dg/cpp1z/constexpr-83692.C
6962bfa121a4383ee0b7a8f045abde3f gcc/testsuite/g++.dg/cpp1z/constexpr-84684.C
+ d309961f0255b13605cf111efa2b095a gcc/testsuite/g++.dg/cpp1z/constexpr-if-lambda1.C
b70f4276933d24cd68ae2e047a954ece gcc/testsuite/g++.dg/cpp1z/constexpr-if1.C
1e52ede853069710bb8cc3b5b323de8c gcc/testsuite/g++.dg/cpp1z/constexpr-if10.C
6ad161b09218162d754ac9e397dad17c gcc/testsuite/g++.dg/cpp1z/constexpr-if11.C
! ae40cc3f0fed6ea19806c1738da8fd11 gcc/testsuite/g++.dg/cpp1z/constexpr-if12.C
85458a098e2f29d2dc61dde4d8fd28f1 gcc/testsuite/g++.dg/cpp1z/constexpr-if13.C
cad98567f94d53447ca1544e0c0c7115 gcc/testsuite/g++.dg/cpp1z/constexpr-if14.C
4b5a0655efaa90419f80f55074e571b0 gcc/testsuite/g++.dg/cpp1z/constexpr-if15.C
*************** c9997208712a4c958df813f39510e264 gcc/te
*** 13773,13778 ****
--- 13830,13836 ----
b304cf37009380270fe9705af58081b3 gcc/testsuite/g++.dg/cpp1z/constexpr-lambda22.C
e85ae52cdaf9d0d5b13778ba237ba5c5 gcc/testsuite/g++.dg/cpp1z/constexpr-lambda23.C
58bd2e2abbc1edcb0a954b8ed6ac8821 gcc/testsuite/g++.dg/cpp1z/constexpr-lambda24.C
+ f4382f5ede902e4b05c952d6a46baa75 gcc/testsuite/g++.dg/cpp1z/constexpr-lambda25.C
7a1275d47f91f21fc9a37f0e47b89dad gcc/testsuite/g++.dg/cpp1z/constexpr-lambda3.C
5267d9825ab86007a9529cb6214eae5c gcc/testsuite/g++.dg/cpp1z/constexpr-lambda4.C
7b6d8d9af2ed24c66e7de295c6bd2cf9 gcc/testsuite/g++.dg/cpp1z/constexpr-lambda5.C
*************** e10b9849a1874dff3e608a49de0c6088 gcc/te
*** 13830,13835 ****
--- 13888,13894 ----
b258d9545db271a0090522333d456c2f gcc/testsuite/g++.dg/cpp1z/decomp48.C
be58a05c982a80cf0c6b4457f2ee655c gcc/testsuite/g++.dg/cpp1z/decomp49.C
af1e704cf45a12bb8c7e2865e6b7debc gcc/testsuite/g++.dg/cpp1z/decomp5.C
+ 7f5a05827bf70c6aae1a8d8e3d44d7f8 gcc/testsuite/g++.dg/cpp1z/decomp50.C
1bdca83f97c5e15ddd3eda87ca5353f2 gcc/testsuite/g++.dg/cpp1z/decomp6.C
09468d9aa8e4fe8ac0677b17a3c509a2 gcc/testsuite/g++.dg/cpp1z/decomp7.C
0d7ba62c8322f4f98a085026e3ac529a gcc/testsuite/g++.dg/cpp1z/decomp8.C
*************** bafa3ed0da0c14fc9337428032934f0f gcc/te
*** 13842,13847 ****
--- 13901,13907 ----
bb194d9ce590c9e5e69935ebac0f25e4 gcc/testsuite/g++.dg/cpp1z/eval-order2.C
89fdd37f4580457e23eeb34adcf4d4e0 gcc/testsuite/g++.dg/cpp1z/eval-order3.C
6d8d378fedaf65b4cb89952060799280 gcc/testsuite/g++.dg/cpp1z/eval-order4.C
+ 56af6596678e014cdf3ef38d1427358f gcc/testsuite/g++.dg/cpp1z/eval-order5.C
8aee82acb16c495821151939f3d0d794 gcc/testsuite/g++.dg/cpp1z/fallthrough1.C
6b68e9e86b9760b5a4c8219b35bbf007 gcc/testsuite/g++.dg/cpp1z/feat-cxx1z.C
ccf8e15dbea694ff2ac1c38763e318b9 gcc/testsuite/g++.dg/cpp1z/fold-ice1.C
*************** b1e6554e1fa7e1c40ed33a028d6555dc gcc/te
*** 13942,13947 ****
--- 14002,14008 ----
e2d27f023f98f0f6d5bbc4b4af73820d gcc/testsuite/g++.dg/cpp1z/noexcept-type2.C
b844f1c10ac36bdb44fcc5f47c7ed338 gcc/testsuite/g++.dg/cpp1z/noexcept-type20.C
bedc458500693b5518d2b34bdc4de5cb gcc/testsuite/g++.dg/cpp1z/noexcept-type21.C
+ 67c6b023262a15cbea344311656cb28f gcc/testsuite/g++.dg/cpp1z/noexcept-type22.C
a07bd6eee0bbce4f76caa1372e66c614 gcc/testsuite/g++.dg/cpp1z/noexcept-type3.C
a1507d2a44a55f27a0e7109b7c2a2c43 gcc/testsuite/g++.dg/cpp1z/noexcept-type4.C
2cbc6352072676c50982358370c66f1e gcc/testsuite/g++.dg/cpp1z/noexcept-type5.C
*************** f2e78d3b66c26dddbe62f358e2dfbd05 gcc/te
*** 14011,14019 ****
948d69f53be2b901feffe3471235ba88 gcc/testsuite/g++.dg/cpp2a/attr-likely2.C
56ca9ac4b0dd2143a0e1c8217120157f gcc/testsuite/g++.dg/cpp2a/attr-likely3.C
3bd91d09350d4cef4cd92526bb838712 gcc/testsuite/g++.dg/cpp2a/attr-likely4.C
efde6c8c1860e6796275cd76c0810b5d gcc/testsuite/g++.dg/cpp2a/bitfield1.C
6459f6af0671a76d588568648ec2536c gcc/testsuite/g++.dg/cpp2a/bitfield2.C
! ef57257e408e06d58bf2de60513b468b gcc/testsuite/g++.dg/cpp2a/bitfield3.C
2a52f543924b11d7fbba0d5b92cdf169 gcc/testsuite/g++.dg/cpp2a/char8_t1.C
6af0af64f6a4543707d9245ae3e3cb2c gcc/testsuite/g++.dg/cpp2a/char8_t2.C
8cdbce536f6ecfcbdb0c5b905216c240 gcc/testsuite/g++.dg/cpp2a/constexpr-inst1.C
--- 14072,14082 ----
948d69f53be2b901feffe3471235ba88 gcc/testsuite/g++.dg/cpp2a/attr-likely2.C
56ca9ac4b0dd2143a0e1c8217120157f gcc/testsuite/g++.dg/cpp2a/attr-likely3.C
3bd91d09350d4cef4cd92526bb838712 gcc/testsuite/g++.dg/cpp2a/attr-likely4.C
+ fdfceca1c064eeb01d47f6a29cee1f95 gcc/testsuite/g++.dg/cpp2a/attr-likely6.C
efde6c8c1860e6796275cd76c0810b5d gcc/testsuite/g++.dg/cpp2a/bitfield1.C
6459f6af0671a76d588568648ec2536c gcc/testsuite/g++.dg/cpp2a/bitfield2.C
! dbb38d79b4b755c3350566626fdf9bd8 gcc/testsuite/g++.dg/cpp2a/bitfield3.C
! 74cc445497f4dd39bb1cc3a9955074a9 gcc/testsuite/g++.dg/cpp2a/bitfield4.C
2a52f543924b11d7fbba0d5b92cdf169 gcc/testsuite/g++.dg/cpp2a/char8_t1.C
6af0af64f6a4543707d9245ae3e3cb2c gcc/testsuite/g++.dg/cpp2a/char8_t2.C
8cdbce536f6ecfcbdb0c5b905216c240 gcc/testsuite/g++.dg/cpp2a/constexpr-inst1.C
*************** d74e93a21b21eb22ce0742e9b6bbb923 gcc/te
*** 14028,14033 ****
--- 14091,14098 ----
90499949f9ce8adc6318bfabadf24305 gcc/testsuite/g++.dg/cpp2a/constexpr-virtual11.C
39ba616431ef9cb9d44cd94730cf075c gcc/testsuite/g++.dg/cpp2a/constexpr-virtual12.C
49f57461d06a171699e46760a6897b2a gcc/testsuite/g++.dg/cpp2a/constexpr-virtual13.C
+ 402840205084f07ec2c6bb566171ea8e gcc/testsuite/g++.dg/cpp2a/constexpr-virtual14.C
+ 951c8b64153a58a8121e2123efa1bf4a gcc/testsuite/g++.dg/cpp2a/constexpr-virtual15.C
8356345162577a74b103ae82b69fde6d gcc/testsuite/g++.dg/cpp2a/constexpr-virtual2.C
387607aa06c3438be11d475781b728ae gcc/testsuite/g++.dg/cpp2a/constexpr-virtual3.C
4d58f9556b7091659bbc5730f1a2697b gcc/testsuite/g++.dg/cpp2a/constexpr-virtual4.C
*************** ef0d69f00a9d28bc07bc6d0fcbf840b5 gcc/te
*** 14124,14129 ****
--- 14189,14195 ----
0307867d4629113203f10f9bbdbfe9ce gcc/testsuite/g++.dg/cpp2a/nested-inline-ns2.C
4c267e7f3452a21a5fd87bbb17ec9d16 gcc/testsuite/g++.dg/cpp2a/no_unique_address1.C
c94ac6fb1a99bf541b66d604620fa09b gcc/testsuite/g++.dg/cpp2a/no_unique_address2.C
+ 67a61649264fea12fb7cc5c31bc5313e gcc/testsuite/g++.dg/cpp2a/no_unique_address3.C
38454d650fa2d61eb9936f82d48d8e43 gcc/testsuite/g++.dg/cpp2a/nontype-class1.C
27670232ed032d4697dcda1a46e006bd gcc/testsuite/g++.dg/cpp2a/nontype-class10.C
0b5018437c6a0da344ea0dbe3dd7891b gcc/testsuite/g++.dg/cpp2a/nontype-class11.C
*************** aa3c5d23779fb7b236f955c1e7e09ac4 gcc/te
*** 14138,14144 ****
--- 14204,14214 ----
e8d8db2969710fcebdad2b203045f51e gcc/testsuite/g++.dg/cpp2a/nontype-class20.C
e214a6e227705189b8298aa5dccd3e2e gcc/testsuite/g++.dg/cpp2a/nontype-class21.C
51f1da7fef1598009140af9576ded743 gcc/testsuite/g++.dg/cpp2a/nontype-class22.C
+ 62d20304c0732cf963aa8ac10fcb1394 gcc/testsuite/g++.dg/cpp2a/nontype-class23.C
+ e28f8527c413dd173f65f4e36e3b01dc gcc/testsuite/g++.dg/cpp2a/nontype-class24.C
+ fe8ba68ddeb121a2bdcddb2e0a2855fa gcc/testsuite/g++.dg/cpp2a/nontype-class26.C
475e0128b5973f3b9cb034e09e7f1702 gcc/testsuite/g++.dg/cpp2a/nontype-class3.C
+ 24ee72128d9ac9085aba2add87c30681 gcc/testsuite/g++.dg/cpp2a/nontype-class33.C
4fd52bde00b799a128d66f6a76100b0d gcc/testsuite/g++.dg/cpp2a/nontype-class4.C
ec58f5751e495c0046ef627360867578 gcc/testsuite/g++.dg/cpp2a/nontype-class5.C
be2750e5a930dd0cbbfe41d900aec74c gcc/testsuite/g++.dg/cpp2a/nontype-class6.C
*************** b3c6c8b5938eee52a69b07b50478e16c gcc/te
*** 14183,14188 ****
--- 14253,14264 ----
65f5d22e74121a74c86b198b50452b12 gcc/testsuite/g++.dg/cpp2a/typename7.C
119a0397640f4f2f7fa34816f5f7c490 gcc/testsuite/g++.dg/cpp2a/typename8.C
5abf788d7226625c5f7c99383518e5a5 gcc/testsuite/g++.dg/cpp2a/typename9.C
+ 3dbe99cdea34b8fadc3ecd11bb1e1380 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-ctad-neg.C
+ 62496ff3123793c4630a40a431b4cd85 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-ctad-neg2.C
+ 4105b2b21629c5122b5eac396ca2ace5 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-ctad.C
+ 69b7040da7003f90478ccb574f0b7fdf gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-neg.C
+ 25ce846e8a8659e35f82a24a896d87ea gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-neg2.C
+ 4d45da3e24f1267e48c17658fd5bb4a9 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp.C
e71a3440857a0df24410cbe91e45c678 gcc/testsuite/g++.dg/debug/anonunion1.C
e4aee91d21a8cdbd286094f893319c70 gcc/testsuite/g++.dg/debug/const1.C
2e4398a10938bba8e5fd13cd2d12e691 gcc/testsuite/g++.dg/debug/const2.C
*************** d7ed5be36e8ab58d3d73c325b6ec84ab gcc/te
*** 14295,14300 ****
--- 14371,14377 ----
6bacb72669961d72ae42d4e8ef6f3235 gcc/testsuite/g++.dg/debug/dwarf2/pr87295.C
a6b0d9b886cd92ee869a01fd967f123e gcc/testsuite/g++.dg/debug/dwarf2/pr87462.C
eb8df2f4b1148c5f6b77553d91cb7877 gcc/testsuite/g++.dg/debug/dwarf2/pr88006.C
+ 1f426b6d87ce5765a45728a91f7e3337 gcc/testsuite/g++.dg/debug/dwarf2/pr91887.C
48e69b012a6da8a3f37c0eea7d671389 gcc/testsuite/g++.dg/debug/dwarf2/ptrdmem-1.C
5d8f03fa19703b37b960eccf4cdd64b6 gcc/testsuite/g++.dg/debug/dwarf2/pubnames-1.C
76d02e352aba879b4ba37be3e5443ee8 gcc/testsuite/g++.dg/debug/dwarf2/pubnames-2.C
*************** dcf67ead0fe2bb68fc518e4789e519f2 gcc/te
*** 14390,14395 ****
--- 14467,14473 ----
ff81bad5bdaf6ebdf3b91953ac3a3e83 gcc/testsuite/g++.dg/debug/pr88181.C
03aafe60ff9ad349f4207278a1941889 gcc/testsuite/g++.dg/debug/pr89006.C
b3911c06633a98c7252ef4d4cd357add gcc/testsuite/g++.dg/debug/pr90914.C
+ 7ea445d3dffc6b1aa3648e9d5e464e5f gcc/testsuite/g++.dg/debug/pr92763.C
a5e8d546d53a780cc3eb41574ea9f263 gcc/testsuite/g++.dg/debug/ra1.C
c3f392076ad11f8768ef0321b89abd5f gcc/testsuite/g++.dg/debug/static1.C
7e13d86d33b17cfb7cdf61b7b8cca961 gcc/testsuite/g++.dg/debug/template1.C
*************** e3e47848d7edc7d04e996db8969c01c0 gcc/te
*** 14405,14410 ****
--- 14483,14489 ----
12ada26f2783bbf28bd0941522b565e2 gcc/testsuite/g++.dg/debug/using5.C
428eb41e10eafbf014126cce3925ce57 gcc/testsuite/g++.dg/debug/using6.C
9ddce3a837af3a01b33e86ac89b2a282 gcc/testsuite/g++.dg/debug/vartrack1.C
+ dbfe8e0363d42a9802037f3185d74300 gcc/testsuite/g++.dg/debug/verify1.C
aaa986692699caef8b3a0fb76a0cc44d gcc/testsuite/g++.dg/delayedfold/builtin-constant1.C
be43932f6739cc9bbbf58a055e612eda gcc/testsuite/g++.dg/delayedfold/builtin-constant2.C
da0d7c1dfdd1c7020c650fa166f8669f gcc/testsuite/g++.dg/delayedfold/builtin1.C
*************** f1fa5cf0ff0d4ecdd2e636f162a3a570 gcc/te
*** 14476,14481 ****
--- 14555,14562 ----
e6f1beb39c362797a43008d683753438 gcc/testsuite/g++.dg/diagnostic/pr86993.C
5b3831bc052cf03ddc5b5e39f65be1a5 gcc/testsuite/g++.dg/diagnostic/pr87386.C
6353aa551355349c668a14f1198abfd4 gcc/testsuite/g++.dg/diagnostic/pr89390.C
+ 4ac55408be5d699804ff4f1575d67dfa gcc/testsuite/g++.dg/diagnostic/pr90767-1.C
+ 033514e06412cda29f05e9038f2c494d gcc/testsuite/g++.dg/diagnostic/pr90767-2.C
bb193b240fa78433d956d57357da2858 gcc/testsuite/g++.dg/diagnostic/ref1.C
b70b854343c43b4b0eac609476ee8fc1 gcc/testsuite/g++.dg/diagnostic/ref2.C
fabec9ff676df7e51a4bfcca57117fa6 gcc/testsuite/g++.dg/diagnostic/ref3.C
*************** f131cd45dc233c5c2aea409de5326ad9 gcc/te
*** 14670,14675 ****
--- 14751,14758 ----
79679fc1de2104f294f557096237605d gcc/testsuite/g++.dg/expr/cond12.C
272c38f396728c93b39e428a306ee6a7 gcc/testsuite/g++.dg/expr/cond13.C
9db946164c5356f1aa05faa2587c4a26 gcc/testsuite/g++.dg/expr/cond14.C
+ 3d3186f9075a514cd76973d347f359da gcc/testsuite/g++.dg/expr/cond15.C
+ f3062d35c6188cd4856b89b8f6662263 gcc/testsuite/g++.dg/expr/cond16.C
9940c2a62890f4870b29a68d36aee007 gcc/testsuite/g++.dg/expr/cond2.C
0ee447faae923ac2c95505c9d02aa9f9 gcc/testsuite/g++.dg/expr/cond3.C
d30ef5af28e6363dab6713f12d513bc9 gcc/testsuite/g++.dg/expr/cond4.C
*************** f3c9079f1057c4b34602ed3a7b2671f9 gcc/te
*** 14866,14871 ****
--- 14949,14955 ----
a087d8abbea086449d9ff285e2638cb8 gcc/testsuite/g++.dg/ext/attr-optimize.C
6c46559e7142685ab641751fe1177b7e gcc/testsuite/g++.dg/ext/attr-pure.C
359c96c31d10d777ab488b368388f5fa gcc/testsuite/g++.dg/ext/attr-returns-nonnull.C
+ dc83c0d6c6079968c8315e6161d79429 gcc/testsuite/g++.dg/ext/attr-trailing1.C
5c2088defb983e68f4b6df2ee178d499 gcc/testsuite/g++.dg/ext/attr-used-1.C
758b042dd0d19638f99e51139b65df3d gcc/testsuite/g++.dg/ext/attr-warning.C
6ce972d5686790fe9c2f5bbd08661b2f gcc/testsuite/g++.dg/ext/attrib1.C
*************** f6addddeaf5bf3773bacaf903a33daa7 gcc/te
*** 14925,14930 ****
--- 15009,15015 ----
9d918d118a0e75fc50d60f72c8fd456c gcc/testsuite/g++.dg/ext/attrib59.C
76284b29c6fce52f56ddbcc04acd3a97 gcc/testsuite/g++.dg/ext/attrib6.C
b6c134d4646b46725f8f4f231df5349f gcc/testsuite/g++.dg/ext/attrib60.C
+ df4711200e4e7cd7c5366aa4bdd29d74 gcc/testsuite/g++.dg/ext/attrib61.C
7af1e9265de26187b4a3a3880f99ac11 gcc/testsuite/g++.dg/ext/attrib7.C
23c4a640241391acec5a1fd2c3fa5f25 gcc/testsuite/g++.dg/ext/attrib8.C
db629587302d47a98b453a1702e900c9 gcc/testsuite/g++.dg/ext/attrib9.C
*************** dc55e7eba1b2185bc5a3bc7222592855 gcc/te
*** 14967,14972 ****
--- 15052,15058 ----
0159469d5f1eba2e6013c4c9e15f33ea gcc/testsuite/g++.dg/ext/builtin11.C
37c90bd75d238839255f0ee41d62aaab gcc/testsuite/g++.dg/ext/builtin12.C
37b1b92015b909a10a6517be87a9172f gcc/testsuite/g++.dg/ext/builtin13.C
+ 7f9a7e963d4ae6977084c63ffe84e4eb gcc/testsuite/g++.dg/ext/builtin14.C
4b79f0ca012fab75e5085a3acc4d333d gcc/testsuite/g++.dg/ext/builtin2.C
cae0a0827ebd04467735e973f329d79d gcc/testsuite/g++.dg/ext/builtin3.C
7c883048f0ed19d3dcbf405e1cf70cd0 gcc/testsuite/g++.dg/ext/builtin30.C
*************** f66f889c43e1cd491c7d66ecdd645529 gcc/te
*** 15126,15131 ****
--- 15212,15218 ----
3622bd11de543347af7ad43a5ee1530d gcc/testsuite/g++.dg/ext/flexary32.C
74f6c053c0114f2642098943985dd99c gcc/testsuite/g++.dg/ext/flexary33.C
b2c60991d5b6f21b7202a6d5a7c81412 gcc/testsuite/g++.dg/ext/flexary34.C
+ da96fc262f063d29280b10e42245318e gcc/testsuite/g++.dg/ext/flexary36.C
7c5aa9e0bd6655b7c3b04f320d67e736 gcc/testsuite/g++.dg/ext/flexary4.C
0cdb8ed93bc6d926326dda41fc92d614 gcc/testsuite/g++.dg/ext/flexary5.C
57643e50a930f6d1e7ea68411e707a26 gcc/testsuite/g++.dg/ext/flexary6.C
*************** ed1c6dd1affd38da6f57f4982d15f9ec gcc/te
*** 15210,15219 ****
b579998c84a7b6c9374dbdc81f28e45a gcc/testsuite/g++.dg/ext/is_constructible1.C
604c689e4f6bdf07da7fd4f5a21aa0a2 gcc/testsuite/g++.dg/ext/is_constructible2.C
76eb31665e6c2034d39a3a88d38ad3b1 gcc/testsuite/g++.dg/ext/is_constructible3.C
deb5d60ce9955a69d116b30edd2cf933 gcc/testsuite/g++.dg/ext/is_empty.C
51590a59aaf8715b9fe4a7ae06414cb8 gcc/testsuite/g++.dg/ext/is_empty2.C
03f82ac5f5b864878fa0ffa4383fa338 gcc/testsuite/g++.dg/ext/is_enum.C
! f97f6c9ca5287718384b4e75531c54f2 gcc/testsuite/g++.dg/ext/is_final.C
d97310b12ece2c21881785f78f44e64a gcc/testsuite/g++.dg/ext/is_literal_type1.C
cce82a97f2d80557fc2ee719db6afda2 gcc/testsuite/g++.dg/ext/is_literal_type2.C
23bf9f19377330f98f34038ddb75c870 gcc/testsuite/g++.dg/ext/is_pod.C
--- 15297,15307 ----
b579998c84a7b6c9374dbdc81f28e45a gcc/testsuite/g++.dg/ext/is_constructible1.C
604c689e4f6bdf07da7fd4f5a21aa0a2 gcc/testsuite/g++.dg/ext/is_constructible2.C
76eb31665e6c2034d39a3a88d38ad3b1 gcc/testsuite/g++.dg/ext/is_constructible3.C
+ ed04365b57dec8b58125996aefe86234 gcc/testsuite/g++.dg/ext/is_constructible4.C
deb5d60ce9955a69d116b30edd2cf933 gcc/testsuite/g++.dg/ext/is_empty.C
51590a59aaf8715b9fe4a7ae06414cb8 gcc/testsuite/g++.dg/ext/is_empty2.C
03f82ac5f5b864878fa0ffa4383fa338 gcc/testsuite/g++.dg/ext/is_enum.C
! 37398fff65ce2d16df6f0cb340b97987 gcc/testsuite/g++.dg/ext/is_final.C
d97310b12ece2c21881785f78f44e64a gcc/testsuite/g++.dg/ext/is_literal_type1.C
cce82a97f2d80557fc2ee719db6afda2 gcc/testsuite/g++.dg/ext/is_literal_type2.C
23bf9f19377330f98f34038ddb75c870 gcc/testsuite/g++.dg/ext/is_pod.C
*************** c701eeb2a89e68678d091a7a01b3cbab gcc/te
*** 15500,15505 ****
--- 15588,15594 ----
56d8136e642cb24cb4da8e83e4f943f7 gcc/testsuite/g++.dg/ext/visibility/pragma.C
14ca1521630ef80a83c404dfb225885d gcc/testsuite/g++.dg/ext/visibility/prop1.C
e73aef737d1611387dc8acc194cb682f gcc/testsuite/g++.dg/ext/visibility/redecl1.C
+ ba36532f7394bf55a85728b40f79ce17 gcc/testsuite/g++.dg/ext/visibility/ref-temp1.C
6014ef7f9e80dffce855a18d78bf2212 gcc/testsuite/g++.dg/ext/visibility/staticdatamem.C
f557224265cdd5e5b63d2ff669e9cabe gcc/testsuite/g++.dg/ext/visibility/staticmemfuncts.C
871b12330fdac390784bb00c45740be6 gcc/testsuite/g++.dg/ext/visibility/symbian1.C
*************** fc63cfdc56a33b15fa4d063e5ef655b2 gcc/te
*** 15693,15699 ****
135dd9ca392aa9976b7a20570053aa68 gcc/testsuite/g++.dg/gomp/member-4.C
40ddfb4cf46a4ea2a28ece501a9d1b2b gcc/testsuite/g++.dg/gomp/method-1.C
badbf609721acd5ee04999023c4af494 gcc/testsuite/g++.dg/gomp/openmp-simd-1.C
! ea8624eaab1d22a16dec629523a83531 gcc/testsuite/g++.dg/gomp/openmp-simd-2.C
ad5a2c143fabe766d3848eb100ea6c38 gcc/testsuite/g++.dg/gomp/openmp-simd-3.C
20b058bc3ab390f835dc26da1b4b891e gcc/testsuite/g++.dg/gomp/ordered-1.C
ad83350cdd58e73fddf0b7bacdf348a8 gcc/testsuite/g++.dg/gomp/ordered-2.C
--- 15782,15788 ----
135dd9ca392aa9976b7a20570053aa68 gcc/testsuite/g++.dg/gomp/member-4.C
40ddfb4cf46a4ea2a28ece501a9d1b2b gcc/testsuite/g++.dg/gomp/method-1.C
badbf609721acd5ee04999023c4af494 gcc/testsuite/g++.dg/gomp/openmp-simd-1.C
! 2e7e4a5c79eb8fe54062fed88c9a9fa3 gcc/testsuite/g++.dg/gomp/openmp-simd-2.C
ad5a2c143fabe766d3848eb100ea6c38 gcc/testsuite/g++.dg/gomp/openmp-simd-3.C
20b058bc3ab390f835dc26da1b4b891e gcc/testsuite/g++.dg/gomp/ordered-1.C
ad83350cdd58e73fddf0b7bacdf348a8 gcc/testsuite/g++.dg/gomp/ordered-2.C
*************** f4af350e7c840b674d4df142d3432e80 gcc/te
*** 15818,15823 ****
--- 15907,15915 ----
905a581e462fc775cb2be6623fcacf00 gcc/testsuite/g++.dg/gomp/pr88733.C
4b42a7fda8d3ea41699780101b9c6384 gcc/testsuite/g++.dg/gomp/pr88949.C
c1464987d35d87dd8f66e42e5434dd87 gcc/testsuite/g++.dg/gomp/pr89796.C
+ 3ceb435fbb695a14bdd86c4f3ecd2307 gcc/testsuite/g++.dg/gomp/pr91118-1.C
+ bc8b7b694dfa419e9a5ac679bb294b77 gcc/testsuite/g++.dg/gomp/pr91118-2.C
+ 32a827a0f114f3ea9fa6a18789870b5a gcc/testsuite/g++.dg/gomp/pr92504.C
a3f91d106380d3bcaf59045bcf7186c6 gcc/testsuite/g++.dg/gomp/predetermined-1.C
a6479847f9d522f85cbd16a46d7f9698 gcc/testsuite/g++.dg/gomp/private-1.C
d447246d410ae61ed9f733998e77b958 gcc/testsuite/g++.dg/gomp/reference-1.C
*************** ec4202dd3ca86defec9ba3dfe4bfdad4 gcc/te
*** 16060,16065 ****
--- 16152,16161 ----
98fa23ffe84ada2a813e464e0e252369 gcc/testsuite/g++.dg/init/array50.C
2b3f1fea4a90425e57445a215e670919 gcc/testsuite/g++.dg/init/array51.C
9c10f5904419056635d57eef17d71f07 gcc/testsuite/g++.dg/init/array52.C
+ a701d12a48efcb4c04b1d49b009e3518 gcc/testsuite/g++.dg/init/array53.C
+ ff481167daacdca90c86f58cab288895 gcc/testsuite/g++.dg/init/array54.C
+ 7a6b8f6bf545e055ab066cc6bc5e869b gcc/testsuite/g++.dg/init/array55.C
+ e7a4920eaa905e671e74b6482c654721 gcc/testsuite/g++.dg/init/array56.C
12f516d0ef7088644b46185bbd83ef4d gcc/testsuite/g++.dg/init/array6.C
02cf876b0b0d2594118addc046b9112a gcc/testsuite/g++.dg/init/array7.C
4ab5bb9dc38b78d749ba584adefbdc33 gcc/testsuite/g++.dg/init/array8.C
*************** e4c5ea0b15c77ead9c9fe9212738b9ec gcc/te
*** 16528,16533 ****
--- 16624,16630 ----
29db8a93c552179e2118ba4096879c15 gcc/testsuite/g++.dg/ipa/pr88235.C
09c0ea9b37840a41bc30204d7af8c1ef gcc/testsuite/g++.dg/ipa/pr89009.C
68096b3683f7d5d854cba520e7ed2a86 gcc/testsuite/g++.dg/ipa/pr89693.C
+ 5876d4ac836871fb0c8247b9473d8271 gcc/testsuite/g++.dg/ipa/pr93223.C
36fa3f305af8daf292a5a974b6cd8017 gcc/testsuite/g++.dg/ipa/pure-const-1.C
82a7eaa06c8e9918346a40ce4e5c9881 gcc/testsuite/g++.dg/ipa/pure-const-2.C
ee6095015820d87205d7dcbb848a66d1 gcc/testsuite/g++.dg/ipa/pure-const-3.C
*************** acece40c5f32aaa3b38f954b91368d3c gcc/te
*** 16664,16673 ****
63850d2da277a993459adc90859da456 gcc/testsuite/g++.dg/lookup/missing-std-include-2.C
29a08861fcce5ce8183c96169e17d4c1 gcc/testsuite/g++.dg/lookup/missing-std-include-3.C
2089959ff25a41b6553e2e30bcdab132 gcc/testsuite/g++.dg/lookup/missing-std-include-4.C
! ebd2e188a4e001a51cca4db537fff2bf gcc/testsuite/g++.dg/lookup/missing-std-include-5.C
! a33692eb905167cf0b3191f444e38fd0 gcc/testsuite/g++.dg/lookup/missing-std-include-6.C
3d220622c3cf94c2c856e98e299989ef gcc/testsuite/g++.dg/lookup/missing-std-include-7.C
! 4384463d109035c394e991a08cf3a047 gcc/testsuite/g++.dg/lookup/missing-std-include-8.C
ecb804007c1fa8a878d2197cb35a2d89 gcc/testsuite/g++.dg/lookup/missing-std-include.C
6c99bf6f0c2260471ad74e39e36cdf71 gcc/testsuite/g++.dg/lookup/name-clash1.C
51f1b95d6c879739a8fae563ede188d0 gcc/testsuite/g++.dg/lookup/name-clash10.C
--- 16761,16770 ----
63850d2da277a993459adc90859da456 gcc/testsuite/g++.dg/lookup/missing-std-include-2.C
29a08861fcce5ce8183c96169e17d4c1 gcc/testsuite/g++.dg/lookup/missing-std-include-3.C
2089959ff25a41b6553e2e30bcdab132 gcc/testsuite/g++.dg/lookup/missing-std-include-4.C
! 8c9e7cd6068948fc3bc9f18fb4358bbc gcc/testsuite/g++.dg/lookup/missing-std-include-5.C
! 747d4e43728357e44238bb23680126e8 gcc/testsuite/g++.dg/lookup/missing-std-include-6.C
3d220622c3cf94c2c856e98e299989ef gcc/testsuite/g++.dg/lookup/missing-std-include-7.C
! e79584d4c910c70ebcefcd854ff0809f gcc/testsuite/g++.dg/lookup/missing-std-include-8.C
ecb804007c1fa8a878d2197cb35a2d89 gcc/testsuite/g++.dg/lookup/missing-std-include.C
6c99bf6f0c2260471ad74e39e36cdf71 gcc/testsuite/g++.dg/lookup/name-clash1.C
51f1b95d6c879739a8fae563ede188d0 gcc/testsuite/g++.dg/lookup/name-clash10.C
*************** b0d2b85719be4698bf6dbe4c553cb0fc gcc/te
*** 16724,16729 ****
--- 16821,16827 ----
92d8ca6e3168a7b42ef20361e76d5bd7 gcc/testsuite/g++.dg/lookup/pr87531-2.C
d85c77d90a65a6ab99636a50096dd54e gcc/testsuite/g++.dg/lookup/pr87531.C
830dbad0afb086773b9afc3c031a5be1 gcc/testsuite/g++.dg/lookup/pr87904.C
+ 3d384542a620fae8987b3de3d5ed239f gcc/testsuite/g++.dg/lookup/pr91826.C
9fc063d780e4510399927cfe832e8770 gcc/testsuite/g++.dg/lookup/pretty1.C
f30dda31dee159f3aebbbc269a5fd8e4 gcc/testsuite/g++.dg/lookup/ptrmem1.C
a2c2f830b707488f1f2104abe37f00dc gcc/testsuite/g++.dg/lookup/redecl1.C
*************** cb782e35cc277d1b7be31cdb2b766e39 gcc/te
*** 17092,17097 ****
--- 17190,17196 ----
4f6e362a864f5ac4f9b9b99e660e0674 gcc/testsuite/g++.dg/lto/pr89358_1.C
71c4e0358186a48bc58fd216bc445a9a gcc/testsuite/g++.dg/lto/pr90939_0.C
52ac5c759138b17ea3fb0b5c2ad3e41c gcc/testsuite/g++.dg/lto/pr90939_1.C
+ f4fd4f3ad07ffe64bf370d8927987578 gcc/testsuite/g++.dg/lto/pr91572_0.C
6232508298dd20a759cf64fffbca9f5e gcc/testsuite/g++.dg/lto/v1-plugin-api-not-supported_0.C
dbe30d4af4bd2caeabf4784c3ef0ca9d gcc/testsuite/g++.dg/missing-return.C
0611288c84e3f846cb789e1b0d0e7706 gcc/testsuite/g++.dg/missing-symbol-2.C
*************** dd4b362edbe19cdf29a47f7bb90e6e2a gcc/te
*** 17442,17447 ****
--- 17541,17550 ----
eea9eb29aff452d80dae491fa69bef1b gcc/testsuite/g++.dg/opt/pr89188.C
3e5f30b9a6314b526d4ca69c9d1c4b95 gcc/testsuite/g++.dg/opt/pr90026.C
7842f073118719d55d2d03e047ef75de gcc/testsuite/g++.dg/opt/pr90090.C
+ c7c71a3fbb2d149cea91915e55ea97e2 gcc/testsuite/g++.dg/opt/pr91351.C
+ 3d0bdb8c25ff94901cf3d1d3b911560a gcc/testsuite/g++.dg/opt/pr91838.C
+ 8dd582fc8ca581a9ea0ed5007dd6eb86 gcc/testsuite/g++.dg/opt/pr92007.C
+ 0beb3dc8882c0dfccd93122c7371db32 gcc/testsuite/g++.dg/opt/pr92644.C
1451eba24eea82cbd0c1ab87885c0f77 gcc/testsuite/g++.dg/opt/preinc1.C
0841088f825be785d32663d712ecf675 gcc/testsuite/g++.dg/opt/ptrintsum1.C
8ceccf2f02b3f64f372600e32148e146 gcc/testsuite/g++.dg/opt/ptrmem1.C
*************** bc5371eb8e8dcf79efb0889828991560 gcc/te
*** 17676,17683 ****
3ca5017faf45f39326ff4e30a1ec1ba8 gcc/testsuite/g++.dg/other/i386-1.C
9913a24914ce11f6a0606c70ed58cb96 gcc/testsuite/g++.dg/other/i386-10.C
8925c3efd781e76570846cfd6f817fd2 gcc/testsuite/g++.dg/other/i386-11.C
! cdf089d667fbc8d619d3d71f858939b6 gcc/testsuite/g++.dg/other/i386-2.C
! ab8e94f519de0e2c0c53a7b0dc025bc0 gcc/testsuite/g++.dg/other/i386-3.C
a4ad4c2cb3c1448496351241a77aedb7 gcc/testsuite/g++.dg/other/i386-4.C
a32a5af1b4c57aabcbdaa817835a698d gcc/testsuite/g++.dg/other/i386-7.C
b3ef431f4cf4776208d7042aff2ddb83 gcc/testsuite/g++.dg/other/i386-8.C
--- 17779,17786 ----
3ca5017faf45f39326ff4e30a1ec1ba8 gcc/testsuite/g++.dg/other/i386-1.C
9913a24914ce11f6a0606c70ed58cb96 gcc/testsuite/g++.dg/other/i386-10.C
8925c3efd781e76570846cfd6f817fd2 gcc/testsuite/g++.dg/other/i386-11.C
! c8e556f2f50c7d141a7af4bc139ecd6b gcc/testsuite/g++.dg/other/i386-2.C
! 1c6aa25d2057137dafc4447e71a8c249 gcc/testsuite/g++.dg/other/i386-3.C
a4ad4c2cb3c1448496351241a77aedb7 gcc/testsuite/g++.dg/other/i386-4.C
a32a5af1b4c57aabcbdaa817835a698d gcc/testsuite/g++.dg/other/i386-7.C
b3ef431f4cf4776208d7042aff2ddb83 gcc/testsuite/g++.dg/other/i386-8.C
*************** da74c49b9e9037a2ac84a9462002684c gcc/te
*** 17799,17804 ****
--- 17902,17908 ----
e716b31d86bef260a0d00fd877fbc9cf gcc/testsuite/g++.dg/other/pr88568.C
24ac76b9cd1e6471539e65dc34e63be3 gcc/testsuite/g++.dg/other/pr89560.C
a0e823e69e02d21c09fddd6ef53d51e3 gcc/testsuite/g++.dg/other/pr89692.C
+ 64ff90efb0bd953cbcb7d0d41855c3b3 gcc/testsuite/g++.dg/other/pr92201.C
2b96e0cda3aaa703c284fca6a0dd72c9 gcc/testsuite/g++.dg/other/pragma-re-1.C
bdec0c9208af6ee3a9ab1f2c07d3ba19 gcc/testsuite/g++.dg/other/pragma-re-2.C
f804e6064a0c7cd94d73f58ba8f6e5e0 gcc/testsuite/g++.dg/other/profile1.C
*************** b71aeb26aa9311659d87b7de1be00dcc gcc/te
*** 17877,17882 ****
--- 17981,17987 ----
494fd275c1d67e2ced55a80500cbedec gcc/testsuite/g++.dg/overload/arg4.C
2462790168c7dfd3a860d6ca77ecec30 gcc/testsuite/g++.dg/overload/arg5.C
1e41ec11ca00276315dd010f205f9f90 gcc/testsuite/g++.dg/overload/autoptr1.C
+ 11ea1c2f872eed9fbbeefd46eb0f83a9 gcc/testsuite/g++.dg/overload/bit-field1.C
e549b742987ea4bf15156f2ff8b335da gcc/testsuite/g++.dg/overload/builtin1.C
3a79826fd499e94593a88f2c06436f3d gcc/testsuite/g++.dg/overload/builtin2.C
a0b8fd80bfd82adaa23c61a98df112fb gcc/testsuite/g++.dg/overload/builtin3.C
*************** e91f3d3016e1e200ebed1193330b5657 gcc/te
*** 18329,18334 ****
--- 18434,18440 ----
447fc3e462b9b45bbf68e672e2421b3c gcc/testsuite/g++.dg/parse/operator5.C
0578823e3d3e65db335d3144fea8e448 gcc/testsuite/g++.dg/parse/operator6.C
8a4367896acda2c1db8e321d02d4aa92 gcc/testsuite/g++.dg/parse/operator7.C
+ 90d5ee3d87668accad2338969cd780c5 gcc/testsuite/g++.dg/parse/operator8.C
b8b60c6b3d20bc77c7acd224354d653f gcc/testsuite/g++.dg/parse/parameter-declaration-1.C
e3ddebbe6b42d002375e551ea770cbdf gcc/testsuite/g++.dg/parse/parameter-declaration-2.C
de20c30d40f4cceef57124b5828bf816 gcc/testsuite/g++.dg/parse/parens1.C
*************** d0caf9e5362287726dc95d5165f20feb gcc/te
*** 18731,18736 ****
--- 18837,18843 ----
ed2c407a8454e62219c76dc3c5b72a1e gcc/testsuite/g++.dg/pr89242.C
7287759250de84d3108a523dee756970 gcc/testsuite/g++.dg/pr89790.C
8d5a3269887286ec688e05d86356d904 gcc/testsuite/g++.dg/pr91173.C
+ 6e8d6b516059e08a5442ff7a7f944b34 gcc/testsuite/g++.dg/pr92022.C
184e70d5635b77134bb901b25ccd4c61 gcc/testsuite/g++.dg/predict-1.C
df9c1f0040c84d9c37fd8d281618f2df gcc/testsuite/g++.dg/predict-2.C
9eaee03e6354eabcc7fc34abc5cc11db gcc/testsuite/g++.dg/predict-3.C
*************** bc26ef84f5a062823e14f4e50d2e1e8c gcc/te
*** 19159,19164 ****
--- 19266,19275 ----
a1ee69de58a5087bc0a5772d3b7f8309 gcc/testsuite/g++.dg/template/deduce1.C
3cc52990bce905a42f91a2dab1c65c77 gcc/testsuite/g++.dg/template/deduce2.C
862861bccf9830342f51a0cc243559f2 gcc/testsuite/g++.dg/template/deduce3.C
+ e734bd4a9592f8ad037cead9d884b5df gcc/testsuite/g++.dg/template/deduce4.C
+ cefab0d5080f8c427b8e84b645a2beb1 gcc/testsuite/g++.dg/template/deduce5.C
+ f68387a287f06f28ebf06bcc2f375b1a gcc/testsuite/g++.dg/template/deduce6.C
+ 13a656ecf3882314fca86ac44ee2b555 gcc/testsuite/g++.dg/template/deduce7.C
e56cdb80a6b4148add333d45d0d83d9a gcc/testsuite/g++.dg/template/defarg1.C
1f7a92340a1c2a7cf7f4bb987f326111 gcc/testsuite/g++.dg/template/defarg10.C
d4611f4846a0b498f17d4173fb4e9cfb gcc/testsuite/g++.dg/template/defarg11.C
*************** cf4f053f829cc77941d9499636dba788 gcc/te
*** 20716,20723 ****
--- 20827,20840 ----
28251f0199f94a1606cac696e1db484b gcc/testsuite/g++.dg/torture/pr89303.C
6295f2521ee059610fe7d8e12800e20b gcc/testsuite/g++.dg/torture/pr89698.C
922274fa2bea46eb7cee843b1f139ab8 gcc/testsuite/g++.dg/torture/pr90194.C
+ 38d5ed9578a5910b56d57c30c896f01f gcc/testsuite/g++.dg/torture/pr90313.cc
8f37bcbeb67682110bfb7b989631551a gcc/testsuite/g++.dg/torture/pr90982.C
+ c09ff981d388790529f959a054685551 gcc/testsuite/g++.dg/torture/pr91155.C
8512e0d79849c3153a1290024a552a14 gcc/testsuite/g++.dg/torture/pr91280.C
+ 7782e7a66949621445617364c753a54f gcc/testsuite/g++.dg/torture/pr91355.C
+ 3d0408f32ee832d98bd0325169fc1951 gcc/testsuite/g++.dg/torture/pr91606.C
+ 1779028417f5f8e86e290051fd916516 gcc/testsuite/g++.dg/torture/pr92384.C
+ 128505e31d0c3cfec9b59aafee1a7c1a gcc/testsuite/g++.dg/torture/pr93246.C
e47702cb1ff0caccc17257524e8667dc gcc/testsuite/g++.dg/torture/predcom-1.C
d28910105d9c9253d94d70eacd5e19d4 gcc/testsuite/g++.dg/torture/pushpop_macro.C
a1b47b9c3e69d79d1895ebc4fd11032b gcc/testsuite/g++.dg/torture/stackalign/check.h
*************** e3ed0915879efd66bbba74b1ab6c5a0e gcc/te
*** 21404,21409 ****
--- 21521,21527 ----
1838324ae4d6c4171b6e67db3068b07b gcc/testsuite/g++.dg/warn/Wsign-conversion-2.C
84cee5930cbd38432830a959aaaae4cf gcc/testsuite/g++.dg/warn/Wsign-conversion-3.C
fb0027ea1d09ff6e88b90961d97d2660 gcc/testsuite/g++.dg/warn/Wsign-conversion-4.C
+ 817fdd7ad31942555dbd1e01b7c17dfe gcc/testsuite/g++.dg/warn/Wsign-conversion-5.C
65bb0b1a539c8d633ac1654e8cb4ac71 gcc/testsuite/g++.dg/warn/Wsign-conversion.C
e0c1598f06e0781562c2dec6e2bc4c5a gcc/testsuite/g++.dg/warn/Wsizeof-pointer-memaccess-1.C
44dc4b5572b60846a2322e12b0510783 gcc/testsuite/g++.dg/warn/Wstrict-aliasing-1.C
*************** e668b1c05f8d62f23aa769b40e21b385 gcc/te
*** 21595,21600 ****
--- 21713,21720 ----
d5fcd483303360915cb089b93fa1cd74 gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-1.C
ca9f620c9a4fcfd05cfa551f64c2c55c gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-2.C
c8c65a2d5647070af20c4a824712c3ec gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-3.C
+ ef6b448559dfb55f716baaf60ef6e508 gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-4.C
+ 04c4b9125f6d5753da834bd850607d4b gcc/testsuite/g++.dg/warn/ctor-dtor-privacy-4.h
85dc72a0303b57c698ce2804c195f5b0 gcc/testsuite/g++.dg/warn/ctor-init-1.C
450b64494a8df8181368be08d23e5bf9 gcc/testsuite/g++.dg/warn/ctor1.C
e415b9568db9cd79464c85885dc0c9e2 gcc/testsuite/g++.dg/warn/delete-array-1.C
*************** a4df5f71f7276c81c3910ad2fc5b65f7 gcc/te
*** 21638,21643 ****
--- 21758,21764 ----
91c62256f30105a26fc3b802f591bfa5 gcc/testsuite/g++.dg/warn/incomplete2.C
766fc32fbc1f9be1188efd240c05e45d gcc/testsuite/g++.dg/warn/inline1.C
7c84293b9be13f3fdd30d3803765a5c4 gcc/testsuite/g++.dg/warn/inline2.C
+ 8b1322d2015c94f92f5ac67482c9a2bd gcc/testsuite/g++.dg/warn/inline3.C
600240b9b1a106c64a4f0127219c78b8 gcc/testsuite/g++.dg/warn/main-2.C
43a7ad018e2ced981acc916d2df8f96b gcc/testsuite/g++.dg/warn/main-3.C
b8c62de5dbf97777a789b0e6031264f5 gcc/testsuite/g++.dg/warn/main-4.C
*************** a9182e6d928d363b56a91bded6231bb9 gcc/te
*** 25099,25104 ****
--- 25220,25227 ----
819ecf07fe897248c2153cdb9dee2292 gcc/testsuite/g++.target/i386/pr82625.C
595e95a52a8e7241531daede25387052 gcc/testsuite/g++.target/i386/pr85329-2.C
83ee00a9e7a064242ad6f43457dfa886 gcc/testsuite/g++.target/i386/pr85329.C
+ 7eeddec0420d9a51d61e3c4c9be6d594 gcc/testsuite/g++.target/i386/pr85334-1.C
+ 5721d1e0778ed4e6cfb2c0ec826eac4c gcc/testsuite/g++.target/i386/pr85334-2.C
64e5aae7c0b5f4496c111c1ea220cc12 gcc/testsuite/g++.target/i386/pr88152.C
aed6e5e76d30c7296815bcff247c5b1d gcc/testsuite/g++.target/i386/pr88587.C
69ffb8145d9e913332fee168bb43ffef gcc/testsuite/g++.target/i386/pr88636.C
*************** e42b1e4bae5852d02674a9f5a44931b3 gcc/te
*** 25109,25114 ****
--- 25232,25239 ----
e8d8678f29554250ac24dbb0b0a65e98 gcc/testsuite/g++.target/i386/pr89650.C
6a8ecb5087f6e681c993119a988900ef gcc/testsuite/g++.target/i386/pr90187.C
ae2a93d8f19ffa52e3299875575fb012 gcc/testsuite/g++.target/i386/pr90303.C
+ 706d6ce9a5089e7aa1faffbd83f7723b gcc/testsuite/g++.target/i386/pr94046-1.C
+ 9d95623392a0cfa69554963dbae983f2 gcc/testsuite/g++.target/i386/pr94046-2.C
a621b799eff193996043d9d5462e5c27 gcc/testsuite/g++.target/i386/sse4_1-check.h
821d1f6cc7812ffc5220fc45c484c00f gcc/testsuite/g++.target/i386/sse4_1-pr54700-1.C
05e47f652ea4bc7c8df9bae20aaaa2b4 gcc/testsuite/g++.target/i386/sse4_1-pr54700-2.C
*************** ba7ecb97d3019d0ba80490d9c7b12ca8 gcc/te
*** 25576,25581 ****
--- 25701,25707 ----
7429d21d7e23ba12a5d6bf3547a80959 gcc/testsuite/gcc.c-torture/compile/20180605-1.c
3e0c7245f685d2f981de013581fd6bf8 gcc/testsuite/gcc.c-torture/compile/20180915-1.c
45fd11790d18669853b3fa78d79b6faa gcc/testsuite/gcc.c-torture/compile/20181114-1.c
+ 6c8411f42f9f7fcab63cbfd6cba8eb38 gcc/testsuite/gcc.c-torture/compile/20191108-1.c
ebed49e0868fa97d60c12191fa496d07 gcc/testsuite/gcc.c-torture/compile/386.c
9681568709601cbb39a156fa04526182 gcc/testsuite/gcc.c-torture/compile/86.c
ab32e65ea5976f9083dc8234dae65343 gcc/testsuite/gcc.c-torture/compile/900116-1.c
*************** e7f459c4af5a8e616ac0225605a4c7c0 gcc/te
*** 26756,26762 ****
6653345387e8315c9c4d66e73583fcf4 gcc/testsuite/gcc.c-torture/compile/pr84136.c
3eb4fea21fdf92acccddbf806adc7973 gcc/testsuite/gcc.c-torture/compile/pr84178-1.c
58f8cb277a91b9b8b3c8ef6a9165546d gcc/testsuite/gcc.c-torture/compile/pr84195.c
- 3922ce0e50bd66f1f145e8668f8fe398 gcc/testsuite/gcc.c-torture/compile/pr84305.c
486cfbfb0a89e2546aa7778b27c28024 gcc/testsuite/gcc.c-torture/compile/pr84383.c
88a8aece4f21f4a06af4abec9669bc53 gcc/testsuite/gcc.c-torture/compile/pr84425.c
365283cdff7a6e895b67e7712272be09 gcc/testsuite/gcc.c-torture/compile/pr84845.c
--- 26882,26887 ----
*************** fc86c5909e9a80383dab6366a0f8648d gcc/te
*** 26789,26794 ****
--- 26914,26928 ----
9e0af4f9e229aa8a0151b863c40f3072 gcc/testsuite/gcc.c-torture/compile/pr89998-1.c
28107e4eddc0810b8c90657b7cca7ab0 gcc/testsuite/gcc.c-torture/compile/pr89998-2.c
99639c63132deca7d94430de65a54739 gcc/testsuite/gcc.c-torture/compile/pr90139.c
+ e11a1416fe433daf1bcec941d4d1ce98 gcc/testsuite/gcc.c-torture/compile/pr90840.c
+ a030cf60882ea26ac44f293f1ecbd5e0 gcc/testsuite/gcc.c-torture/compile/pr91001.c
+ 662f32f637e1c11befa59dbfbf1e1d6e gcc/testsuite/gcc.c-torture/compile/pr92056.c
+ 105b589b4d60d8ba169ba04cad935b0b gcc/testsuite/gcc.c-torture/compile/pr92231.c
+ dc8f609dbb0db163caa0e7adfc5d9240 gcc/testsuite/gcc.c-torture/compile/pr93333.c
+ 38c1d7c24a9a64ca6c6c64c07b774c44 gcc/testsuite/gcc.c-torture/compile/pr93335.c
+ 156dbb8af2805f1d7b1d39d0088f5b2f gcc/testsuite/gcc.c-torture/compile/pr93348-1.c
+ 620d5c7d92e3c8bc73e14d8ac589036a gcc/testsuite/gcc.c-torture/compile/pr93505.c
+ 22928b66796dd98928bd0441207dfe65 gcc/testsuite/gcc.c-torture/compile/pr93949.c
9611ffa8936d9c80d0a9ccde8dd093b2 gcc/testsuite/gcc.c-torture/compile/pret-arg.c
b9e6ce52b90320c1c3803c25113844c5 gcc/testsuite/gcc.c-torture/compile/pta-1.c
ed716c1d1727fc2c748162e0cbc4ee47 gcc/testsuite/gcc.c-torture/compile/ptr-conv-1.c
*************** a024382373a506e7761148108043c429 gcc/te
*** 27378,27383 ****
--- 27512,27520 ----
09507ca98613870c046de0e4814d1831 gcc/testsuite/gcc.c-torture/execute/20180921-1.c
03e6abf4c7580822fb8fcbb32c3bb34a gcc/testsuite/gcc.c-torture/execute/20181120-1.c
ecbbfd4b186a0dd8448d96f39a543fb4 gcc/testsuite/gcc.c-torture/execute/20190228-1.c
+ 0e7e458f83ab35a789bf9cae2f121b53 gcc/testsuite/gcc.c-torture/execute/20190820-1.c
+ 48e80df21591c4156020fdd4a386b2f4 gcc/testsuite/gcc.c-torture/execute/20190901-1.c
+ 2e368329bfad3d99e406eade7d55032d gcc/testsuite/gcc.c-torture/execute/20191023-1.c
65f01ac7346bd4d47ed9c1ca94ab74ff gcc/testsuite/gcc.c-torture/execute/900409-1.c
5aefab4daab0bd29ecf2a389f3c44f40 gcc/testsuite/gcc.c-torture/execute/920202-1.c
74e2b57e4fb280900b2f9b169dd75b1c gcc/testsuite/gcc.c-torture/execute/920302-1.c
*************** fe9cbf88b57bdd9a5bf9c526284225f4 gcc/te
*** 28559,28566 ****
--- 28696,28717 ----
4d7dae66f38ff3b1b286c300208b02ed gcc/testsuite/gcc.c-torture/execute/pr89634.c
4165667509c1985c02a5caebd101614d gcc/testsuite/gcc.c-torture/execute/pr89826.c
b218aa552a7d53beb1e047811733490d gcc/testsuite/gcc.c-torture/execute/pr90025.c
+ d26cfc42f19ac5e3ce4db452fd94f09a gcc/testsuite/gcc.c-torture/execute/pr90311.c
5235b3e2d6dd776b53d6a44ba5933a8a gcc/testsuite/gcc.c-torture/execute/pr90949.c
7f239d011b9e98943acdc8e3437ed19c gcc/testsuite/gcc.c-torture/execute/pr91137.c
+ 3d5a788c848a67ade7bd18ab62494a1a gcc/testsuite/gcc.c-torture/execute/pr91450-1.c
+ 7a2c17f605bcf1dd060a1a6ea28c2426 gcc/testsuite/gcc.c-torture/execute/pr91450-2.c
+ ee17bd481fb3fe7371a97d45e7fb1698 gcc/testsuite/gcc.c-torture/execute/pr91597.c
+ ad7c474351d293f3938a5aff5d1faf91 gcc/testsuite/gcc.c-torture/execute/pr91632.c
+ af6b84b440f79dbac6f54234769daf51 gcc/testsuite/gcc.c-torture/execute/pr91635.c
+ a11f543d4a1ab92e9bc0bd9bcd9816f5 gcc/testsuite/gcc.c-torture/execute/pr92904.c
+ 90c78675453ac190d2a254a078d099c1 gcc/testsuite/gcc.c-torture/execute/pr93402.c
+ 174f51890ae625613e2e537d9dcddde5 gcc/testsuite/gcc.c-torture/execute/pr93434.c
+ 13a74d12f5839ced4211c221b624b70f gcc/testsuite/gcc.c-torture/execute/pr93744-1.c
+ 03c35d47d6c95b626a3218270d720ae5 gcc/testsuite/gcc.c-torture/execute/pr93744-2.c
+ 0718f4fea607ff381b848dbf0d8407ed gcc/testsuite/gcc.c-torture/execute/pr93744-3.c
+ b5fa8dac56892459f774433ef510a1ef gcc/testsuite/gcc.c-torture/execute/pr93908.c
+ 199cf68aba9145124f1de780a0cf7d53 gcc/testsuite/gcc.c-torture/execute/pr93945.c
8587088d2eab0e974762ba6cd20b4f04 gcc/testsuite/gcc.c-torture/execute/printf-1.c
c9ea0c1a31433c22b0bdd0a5b832f7e8 gcc/testsuite/gcc.c-torture/execute/printf-2.c
9e89c9802e280d635a7bc6756bbaf6e6 gcc/testsuite/gcc.c-torture/execute/printf-chk-1.c
*************** f273410ff764324a50afef028667ebe5 gcc/te
*** 29119,29125 ****
d45570f5347d0d2fceb2f46d5bb28195 gcc/testsuite/gcc.dg/Wno-c++-compat.c
2843490ca0540e4f75efd19bc45f6423 gcc/testsuite/gcc.dg/Wno-frame-address.c
78b26e55f8111808885390fc48d39f07 gcc/testsuite/gcc.dg/Wno-pointer-sign.c
! 32a3988bca4d90d3b290e472fb83a91a gcc/testsuite/gcc.dg/Wnonnull.c
d7f40d768e2fdadb8ed5f332424b19cf gcc/testsuite/gcc.dg/Wobjsize-1.c
964f8252363c2458931200da17eaaa36 gcc/testsuite/gcc.dg/Wobjsize-1.h
b92f8933f909c18a277ea167043b2847 gcc/testsuite/gcc.dg/Wold-style-definition-1.c
--- 29270,29276 ----
d45570f5347d0d2fceb2f46d5bb28195 gcc/testsuite/gcc.dg/Wno-c++-compat.c
2843490ca0540e4f75efd19bc45f6423 gcc/testsuite/gcc.dg/Wno-frame-address.c
78b26e55f8111808885390fc48d39f07 gcc/testsuite/gcc.dg/Wno-pointer-sign.c
! 12ac8bc4beaf9edbdf04979c8dfcb9e8 gcc/testsuite/gcc.dg/Wnonnull.c
d7f40d768e2fdadb8ed5f332424b19cf gcc/testsuite/gcc.dg/Wobjsize-1.c
964f8252363c2458931200da17eaaa36 gcc/testsuite/gcc.dg/Wobjsize-1.h
b92f8933f909c18a277ea167043b2847 gcc/testsuite/gcc.dg/Wold-style-definition-1.c
*************** d8272e1d572d33a852614f0a74a31345 gcc/te
*** 29894,29899 ****
--- 30045,30051 ----
f9262f126c900d76cdb16f0afbfc600f gcc/testsuite/gcc.dg/c11-noreturn-5.c
d595f49307eb5192b976a26bca7a9c80 gcc/testsuite/gcc.dg/c11-pointer-float-1.c
efe9f8d43440cd3d52de742b3f407e19 gcc/testsuite/gcc.dg/c11-static-assert-1.c
+ 7108e0131dd58f0a0943232e07ae7a08 gcc/testsuite/gcc.dg/c11-static-assert-10.c
1e1c0e1555e17610aa6e95027b7f72c1 gcc/testsuite/gcc.dg/c11-static-assert-2.c
ae86538f5b127d2943d01429510fe5ee gcc/testsuite/gcc.dg/c11-static-assert-3.c
d7ef98239e7c17e364c10debfa89d9d2 gcc/testsuite/gcc.dg/c11-static-assert-4.c
*************** ba2db177292eaaf55d14598ece867f4d gcc/te
*** 30013,30018 ****
--- 30165,30171 ----
351160cb991a2541a836d78ff5a3d7a7 gcc/testsuite/gcc.dg/c99-const-expr-12.c
be44655002ff53b455ed10f2b01571fe gcc/testsuite/gcc.dg/c99-const-expr-13.c
601921df5dca967e56d6ff0c58d11e1a gcc/testsuite/gcc.dg/c99-const-expr-14.c
+ 59aa40df8c80917e30f6ec6cca1ecd5b gcc/testsuite/gcc.dg/c99-const-expr-15.c
2b0ea14af55d8b5c0efa00351b0200a5 gcc/testsuite/gcc.dg/c99-const-expr-2.c
1a41201d98b7cec1fa4768ff010f2243 gcc/testsuite/gcc.dg/c99-const-expr-3.c
8a0c3caa2946e119d2ac9291c14b168f gcc/testsuite/gcc.dg/c99-const-expr-4.c
*************** aa9dfa39c42ef65a88c0a708412fb842 gcc/te
*** 31048,31054 ****
5ca3ca317094442241bdcaf1320473d2 gcc/testsuite/gcc.dg/darwin-minversion-link.c
333be43e38c5b8f9c8bde5d01493902a gcc/testsuite/gcc.dg/darwin-sections.c
3cfa6daebed9a12884613012f50433e4 gcc/testsuite/gcc.dg/darwin-segaddr.c
! c9bd4478d375a6bea777dcc7c9667d5a gcc/testsuite/gcc.dg/darwin-version-1.c
9145b589b54240035dacb7540309d62e gcc/testsuite/gcc.dg/darwin-weakimport-1.c
bda7de2e2fd6472aa3ffe7873407e58d gcc/testsuite/gcc.dg/darwin-weakimport-2.c
616f3eafcf2947e4dd54e569654c0721 gcc/testsuite/gcc.dg/darwin-weakimport-3.c
--- 31201,31207 ----
5ca3ca317094442241bdcaf1320473d2 gcc/testsuite/gcc.dg/darwin-minversion-link.c
333be43e38c5b8f9c8bde5d01493902a gcc/testsuite/gcc.dg/darwin-sections.c
3cfa6daebed9a12884613012f50433e4 gcc/testsuite/gcc.dg/darwin-segaddr.c
! 91dd7afa81d8d5b0e0607ca1adeb791c gcc/testsuite/gcc.dg/darwin-version-1.c
9145b589b54240035dacb7540309d62e gcc/testsuite/gcc.dg/darwin-weakimport-1.c
bda7de2e2fd6472aa3ffe7873407e58d gcc/testsuite/gcc.dg/darwin-weakimport-2.c
616f3eafcf2947e4dd54e569654c0721 gcc/testsuite/gcc.dg/darwin-weakimport-3.c
*************** ba7e6f4007944b95dbec857fc6c74794 gcc/te
*** 31278,31283 ****
--- 31431,31444 ----
bd803fab76b770802d951e70b61c9696 gcc/testsuite/gcc.dg/dfp/Wbad-function-cast-1.c
d898987e43ad43f22c65725bb92ec24f gcc/testsuite/gcc.dg/dfp/Wtraditional-conversion-2.c
8dfa85ff2d4eb5d9335903160b756d39 gcc/testsuite/gcc.dg/dfp/altivec-types.c
+ 4a0827303faa43749c8cd640dbe780f2 gcc/testsuite/gcc.dg/dfp/bid-non-canonical-d128-1.c
+ ddc7d6b63d747557a4e9b308af18f19c gcc/testsuite/gcc.dg/dfp/bid-non-canonical-d128-2.c
+ fab5a640c4568914b07985435cbfca57 gcc/testsuite/gcc.dg/dfp/bid-non-canonical-d128-3.c
+ 20ea9fa0b5844799db130e6b40771a9b gcc/testsuite/gcc.dg/dfp/bid-non-canonical-d128-4.c
+ 7f0c08d8929bcff2716ec6dcb11d6d86 gcc/testsuite/gcc.dg/dfp/bid-non-canonical-d32-1.c
+ 50702f1de618fe90570e4d65bdc7306d gcc/testsuite/gcc.dg/dfp/bid-non-canonical-d32-2.c
+ 3df60bf7fc5addda94bde087254e63e5 gcc/testsuite/gcc.dg/dfp/bid-non-canonical-d64-1.c
+ f0ae4245e06f4788c24978a3b8a12df6 gcc/testsuite/gcc.dg/dfp/bid-non-canonical-d64-2.c
2d5128bddc0d69a547254935ce84b555 gcc/testsuite/gcc.dg/dfp/builtin-complex.c
1cd0f9502eb6f26f75689878d1315dde gcc/testsuite/gcc.dg/dfp/builtin-tgmath-dfp-err.c
8be219bdc31d596f6310b63d26678f47 gcc/testsuite/gcc.dg/dfp/builtin-tgmath-dfp.c
*************** d7416cac7d67876a0d0d2ddd8b64c9d9 gcc/te
*** 32125,32130 ****
--- 32286,32292 ----
0c7376f88d06747513e9db1619206c72 gcc/testsuite/gcc.dg/gomp/pr89246-1.c
c60bd6d06d92414ccd01870addd85132 gcc/testsuite/gcc.dg/gomp/pr89246-2.c
ef3626bfd9a01c1b3e4b0d6ca7d55c1a gcc/testsuite/gcc.dg/gomp/pr89796.c
+ 37d75bd2c93a4769c375069e84c59ff3 gcc/testsuite/gcc.dg/gomp/pr90637.c
7b7c5619e17caf4ff7de95c0ea515fde gcc/testsuite/gcc.dg/gomp/pr90900.c
05d60743092504cb97cd1b69bc287d30 gcc/testsuite/gcc.dg/gomp/pr91063.c
ed760ac8f4b74b9e23f9f524135a1729 gcc/testsuite/gcc.dg/gomp/pr91216.c
*************** e9cb995bb14a5d52b9213cdc06457285 gcc/te
*** 32704,32709 ****
--- 32866,32873 ----
2eed98dfcc022044e610af32e1c937c1 gcc/testsuite/gcc.dg/inline-4.c
b1da3859103cd524b6f06a987437986c gcc/testsuite/gcc.dg/inline-40.c
11fe410fd32445cd4e9ec94bae8bef30 gcc/testsuite/gcc.dg/inline-41.c
+ ecbb420d135dea5b382c10b3f807ec9f gcc/testsuite/gcc.dg/inline-42.c
+ 5eb94e96e85a0b595afa6cb4cac5682d gcc/testsuite/gcc.dg/inline-43.c
7fc691c96ff167ea4acaf530fdfd717a gcc/testsuite/gcc.dg/inline-5.c
96b467a4117442b64211f4f3411003a4 gcc/testsuite/gcc.dg/inline-6.c
ba66b4f621efcd9fab8ee6d7a3de2f82 gcc/testsuite/gcc.dg/inline-7.c
*************** be5489532ad8117e567e1ea5c8ad4b6a gcc/te
*** 32838,32843 ****
--- 33002,33008 ----
5204e6cd28c18692d9b78b4d46f02179 gcc/testsuite/gcc.dg/ipa/ipcp-4.c
1d6188a3ce8385221389a004eb653357 gcc/testsuite/gcc.dg/ipa/ipcp-5.c
869bd19c205f2ccf580f8b640709d232 gcc/testsuite/gcc.dg/ipa/ipcp-agg-1.c
+ 46baba0a48d2f940bd891b54dec15a5c gcc/testsuite/gcc.dg/ipa/ipcp-agg-12.c
c71233f7e2ddb4a8889ca1fe57ea62cc gcc/testsuite/gcc.dg/ipa/ipcp-agg-2.c
b30637ee2dfddd2f33e1f6f41de2efa3 gcc/testsuite/gcc.dg/ipa/ipcp-agg-3.c
4a75430bf24423bed7faf54d834e000d gcc/testsuite/gcc.dg/ipa/ipcp-agg-4.c
*************** db531a9355f9326f8fbafbee1a0c4e91 gcc/te
*** 35443,35448 ****
--- 35608,35614 ----
6221838b8b11138e7af5cb053b6f7f42 gcc/testsuite/gcc.dg/pr89410-1.c
747802bbe9a526d7e191d9bd842c1d2e gcc/testsuite/gcc.dg/pr89410-2.c
6dcc3744581a361120681b2c30659453 gcc/testsuite/gcc.dg/pr89434.c
+ 55a03057d405000b76e3662d6aca0bd8 gcc/testsuite/gcc.dg/pr89435.c
b24f1c825f27212c7ae452c5901c9e99 gcc/testsuite/gcc.dg/pr89438.c
cc98bc298dae950c2580c111173bf573 gcc/testsuite/gcc.dg/pr89500.c
07b48755dfb71bbe807ce1f7266c69c8 gcc/testsuite/gcc.dg/pr89506.c
*************** d59fd07bb22cd966a24bae661a158598 gcc/te
*** 35457,35472 ****
7e94f0d5a822303e0339481ee07ad796 gcc/testsuite/gcc.dg/pr89679.c
e6faf0945d1f5f965c65759fe557a7d4 gcc/testsuite/gcc.dg/pr89734.c
38fd40b0592192b9fc4163d54c030089 gcc/testsuite/gcc.dg/pr89737.c
a24193887db72f1e75b2698c04b4ef32 gcc/testsuite/gcc.dg/pr90010.c
6c043904623c4fbb3870bdf4cf56d084 gcc/testsuite/gcc.dg/pr90037.c
0a4f5fe719bf1ce6ae61fc33e03adf0f gcc/testsuite/gcc.dg/pr90082.c
1da58e3a4fac902964fc884136ff0b30 gcc/testsuite/gcc.dg/pr90095-1.c
3a34ebdf201442368e6b516ca9855124 gcc/testsuite/gcc.dg/pr90095-2.c
007da9cc3379de76a6986f6c8d62f1aa gcc/testsuite/gcc.dg/pr90733.c
! 7c81184e9f0f9dead0859125d7a01a19 gcc/testsuite/gcc.dg/pr90756.c
a5cf54d159902a526ee7923257cf4b92 gcc/testsuite/gcc.dg/pr90760.c
e2ae67eb39b2578af8765a01c6e6dd08 gcc/testsuite/gcc.dg/pr90892.c
3825638bdc3a2a004aba9b3d95352327 gcc/testsuite/gcc.dg/pr9365-1.c
ec1830becced622760bda688ca2bb126 gcc/testsuite/gcc.dg/pr9814-1.c
38d740dd13641c97d4f565dcd6338d23 gcc/testsuite/gcc.dg/pragma-align-2.c
4c08191735eadb7c6ea607dfcc965cf5 gcc/testsuite/gcc.dg/pragma-align.c
--- 35623,35653 ----
7e94f0d5a822303e0339481ee07ad796 gcc/testsuite/gcc.dg/pr89679.c
e6faf0945d1f5f965c65759fe557a7d4 gcc/testsuite/gcc.dg/pr89734.c
38fd40b0592192b9fc4163d54c030089 gcc/testsuite/gcc.dg/pr89737.c
+ 6b4a47585c7d60c9cfe3d8323359f4e4 gcc/testsuite/gcc.dg/pr89795.c
a24193887db72f1e75b2698c04b4ef32 gcc/testsuite/gcc.dg/pr90010.c
6c043904623c4fbb3870bdf4cf56d084 gcc/testsuite/gcc.dg/pr90037.c
0a4f5fe719bf1ce6ae61fc33e03adf0f gcc/testsuite/gcc.dg/pr90082.c
1da58e3a4fac902964fc884136ff0b30 gcc/testsuite/gcc.dg/pr90095-1.c
3a34ebdf201442368e6b516ca9855124 gcc/testsuite/gcc.dg/pr90095-2.c
+ a9ce57b01303a768bbf7a03ccdfc9a9f gcc/testsuite/gcc.dg/pr90648.c
007da9cc3379de76a6986f6c8d62f1aa gcc/testsuite/gcc.dg/pr90733.c
! afa570e1edc03a94c45eb741b09cab0a gcc/testsuite/gcc.dg/pr90756.c
a5cf54d159902a526ee7923257cf4b92 gcc/testsuite/gcc.dg/pr90760.c
e2ae67eb39b2578af8765a01c6e6dd08 gcc/testsuite/gcc.dg/pr90892.c
+ f05824bb6a8ee4df57182feba94d6224 gcc/testsuite/gcc.dg/pr90898.c
+ 127ca7d7d9652887fc59a33f4f13e4e0 gcc/testsuite/gcc.dg/pr91269.c
+ 33e7e05ba9936ecabdb9d59e8e4ff241 gcc/testsuite/gcc.dg/pr91720.c
+ 0ce66608741e42c8178cb8a54ad1933c gcc/testsuite/gcc.dg/pr91734.c
+ 305ad11ca35b234077dc82b97ea160d1 gcc/testsuite/gcc.dg/pr91885.c
+ eb6ce2423f0e2f3d3f79de3a7730872b gcc/testsuite/gcc.dg/pr92430.c
+ c4f72ee1103ecf59a0e370d5ea316570 gcc/testsuite/gcc.dg/pr92591-1.c
+ 324f6e8bdb8eabe75693890f36af369b gcc/testsuite/gcc.dg/pr92591-2.c
+ 518252496da6c416ea3047044066d6ed gcc/testsuite/gcc.dg/pr92768.c
+ c6b310d653d3a9d0ecd1fbd653315b60 gcc/testsuite/gcc.dg/pr93054.c
+ 2461eae71210d5808caccdbf7b68c684 gcc/testsuite/gcc.dg/pr93576.c
3825638bdc3a2a004aba9b3d95352327 gcc/testsuite/gcc.dg/pr9365-1.c
+ 96f7c73b6cb0b7b5f65e07636845c78b gcc/testsuite/gcc.dg/pr93820.c
+ 7188ff1454897a578bd9300a88e8188b gcc/testsuite/gcc.dg/pr94002.c
ec1830becced622760bda688ca2bb126 gcc/testsuite/gcc.dg/pr9814-1.c
38d740dd13641c97d4f565dcd6338d23 gcc/testsuite/gcc.dg/pragma-align-2.c
4c08191735eadb7c6ea607dfcc965cf5 gcc/testsuite/gcc.dg/pragma-align.c
*************** c715efce91706f19891d615f0fb331e6 gcc/te
*** 36154,36160 ****
cb2b49fc1936604715a1913f13b50a92 gcc/testsuite/gcc.dg/torture/20181024-1.c
b151f401ebe15ffdbefdb4db4f4ccae9 gcc/testsuite/gcc.dg/torture/20181029-1.c
946ed087d383d400f7c500563f2ea6d9 gcc/testsuite/gcc.dg/torture/20181029-2.c
! 928952f88c5ff092e17a4fa290fba090 gcc/testsuite/gcc.dg/torture/20190327-1.c
18d092a49330e9a3da34c551be068cfa gcc/testsuite/gcc.dg/torture/Wsizeof-pointer-memaccess1.c
d23f5563695ea2b9898397f0244ca90d gcc/testsuite/gcc.dg/torture/alias-1.c
2063dc05a74374000dcf03fc407536e5 gcc/testsuite/gcc.dg/torture/alias-2.c
--- 36335,36341 ----
cb2b49fc1936604715a1913f13b50a92 gcc/testsuite/gcc.dg/torture/20181024-1.c
b151f401ebe15ffdbefdb4db4f4ccae9 gcc/testsuite/gcc.dg/torture/20181029-1.c
946ed087d383d400f7c500563f2ea6d9 gcc/testsuite/gcc.dg/torture/20181029-2.c
! 0a83143a813c38ed8b23559e47572cd9 gcc/testsuite/gcc.dg/torture/20190327-1.c
18d092a49330e9a3da34c551be068cfa gcc/testsuite/gcc.dg/torture/Wsizeof-pointer-memaccess1.c
d23f5563695ea2b9898397f0244ca90d gcc/testsuite/gcc.dg/torture/alias-1.c
2063dc05a74374000dcf03fc407536e5 gcc/testsuite/gcc.dg/torture/alias-2.c
*************** a56be250f5d8a4a3f63fad5c8624d2bb gcc/te
*** 37257,37264 ****
65e2e781c26cdc8e19de407584ae7097 gcc/testsuite/gcc.dg/torture/pr89779.c
8007fcafda3e8f036b3e842a9a180e2c gcc/testsuite/gcc.dg/torture/pr89789.c
998a987615152e0ebad640146ff97b16 gcc/testsuite/gcc.dg/torture/pr89794.c
! 03ff50043fe9b066d5d9805c81aeed55 gcc/testsuite/gcc.dg/torture/pr90020.c
f13f8d9bb577a47a3c6edb46c6c340b5 gcc/testsuite/gcc.dg/torture/pr90071.c
1c6a61da912dfe2711fb64a23a660471 gcc/testsuite/gcc.dg/torture/pr90328.c
745c92ddb25098eaa8987c980ede181f gcc/testsuite/gcc.dg/torture/pr90402-1.c
0b0362f5f040bcbdde9b64197a1dd797 gcc/testsuite/gcc.dg/torture/pr90972.c
--- 37438,37446 ----
65e2e781c26cdc8e19de407584ae7097 gcc/testsuite/gcc.dg/torture/pr89779.c
8007fcafda3e8f036b3e842a9a180e2c gcc/testsuite/gcc.dg/torture/pr89789.c
998a987615152e0ebad640146ff97b16 gcc/testsuite/gcc.dg/torture/pr89794.c
! 0b2f18fec51d2e458fecfeb3b7776dbc gcc/testsuite/gcc.dg/torture/pr90020.c
f13f8d9bb577a47a3c6edb46c6c340b5 gcc/testsuite/gcc.dg/torture/pr90071.c
+ 00e6f1395499e5956a1821ce97b809c7 gcc/testsuite/gcc.dg/torture/pr90278.c
1c6a61da912dfe2711fb64a23a660471 gcc/testsuite/gcc.dg/torture/pr90328.c
745c92ddb25098eaa8987c980ede181f gcc/testsuite/gcc.dg/torture/pr90402-1.c
0b0362f5f040bcbdde9b64197a1dd797 gcc/testsuite/gcc.dg/torture/pr90972.c
*************** bd9bc7b117dd395156db0636799b62e1 gcc/te
*** 37267,37272 ****
--- 37449,37459 ----
b56baaf7b8ad0b8f417806ebccb47e43 gcc/testsuite/gcc.dg/torture/pr91178-2.c
42016ab106da494ff9100e8b0d488dab gcc/testsuite/gcc.dg/torture/pr91178.c
9a517e2a6fabc62383485f161c86b5df gcc/testsuite/gcc.dg/torture/pr91200.c
+ dfbddc7a97aef8ecbbb45d5a0ff044c7 gcc/testsuite/gcc.dg/torture/pr91445.c
+ e398c88cb4160ec78fc9362787569fe9 gcc/testsuite/gcc.dg/torture/pr91812.c
+ 3b43e9e3564d6c0917bee93f0519c90d gcc/testsuite/gcc.dg/torture/pr92222.c
+ 6c276b4b449ad6fca0e8f9e8705d1baf gcc/testsuite/gcc.dg/torture/pr92704.c
+ c3582ca835373c2cd0065fc3f8a36154 gcc/testsuite/gcc.dg/torture/pr93381.c
d086c3946230ba05df33a45be4862730 gcc/testsuite/gcc.dg/torture/pta-callused-1.c
39620328710fd9ff170741766805e426 gcc/testsuite/gcc.dg/torture/pta-escape-1.c
f50cbae53561b1267140f574974f7fc0 gcc/testsuite/gcc.dg/torture/pta-ptrarith-1.c
*************** f243d107e2781f3dba683465d6b7dd11 gcc/te
*** 37297,37302 ****
--- 37484,37490 ----
4844379205910806b383dbde4bb6bb59 gcc/testsuite/gcc.dg/torture/stackalign/builtin-apply-3.c
4b4b59cd55751e5743bc4195c9571b78 gcc/testsuite/gcc.dg/torture/stackalign/builtin-apply-4.c
d902ae1540aab0be308e7ba8052278bf gcc/testsuite/gcc.dg/torture/stackalign/builtin-return-1.c
+ 05af8afc5d7de164574915304a190d13 gcc/testsuite/gcc.dg/torture/stackalign/builtin-return-2.c
a1b47b9c3e69d79d1895ebc4fd11032b gcc/testsuite/gcc.dg/torture/stackalign/check.h
fc7edf6af7d557c019daea5a3682f91e gcc/testsuite/gcc.dg/torture/stackalign/comp-goto-1.c
27cb382aa38b2d606ef2b7f107abbf29 gcc/testsuite/gcc.dg/torture/stackalign/fastcall-1.c
*************** a9096c4b5b756bdc9dcc196398730d73 gcc/te
*** 37814,37828 ****
03b3892ce65f3264531de5b303cbe30e gcc/testsuite/gcc.dg/tree-ssa/forwprop-8.c
2f204af513925825367059c8c7904e98 gcc/testsuite/gcc.dg/tree-ssa/forwprop-9.c
c5da678cf578c57faa40129378929cf4 gcc/testsuite/gcc.dg/tree-ssa/fre-vce-1.c
! d945601481b8c401f15a8c2a5064dfa9 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-11.c
8847b784d4afa960614f3abe85f69a6f gcc/testsuite/gcc.dg/tree-ssa/gen-vect-11a.c
c4778a5d167ea622bf99df287c4bd701 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-11b.c
c177f823491b23ed671dd72cae6bdd38 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-11c.c
7f9cb4c67e184582150085aca486f32d gcc/testsuite/gcc.dg/tree-ssa/gen-vect-2.c
1712dcd4bc0231a36d0086b106369e57 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-25.c
! f6dee11122447ee6efa4b79aba910b8c gcc/testsuite/gcc.dg/tree-ssa/gen-vect-26.c
! c17b9d80f40e79087fe5b8d43eb98d13 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-28.c
! 29a72645c60c02fad2b7a0e19384bc7f gcc/testsuite/gcc.dg/tree-ssa/gen-vect-32.c
c700544c3e68a401546cefbdad359728 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-33.c
b2e6051605666541fc80985492b002a4 gcc/testsuite/gcc.dg/tree-ssa/ifc-10.c
45abed04f141d506c77bb20d255d1d0c gcc/testsuite/gcc.dg/tree-ssa/ifc-11.c
--- 38002,38016 ----
03b3892ce65f3264531de5b303cbe30e gcc/testsuite/gcc.dg/tree-ssa/forwprop-8.c
2f204af513925825367059c8c7904e98 gcc/testsuite/gcc.dg/tree-ssa/forwprop-9.c
c5da678cf578c57faa40129378929cf4 gcc/testsuite/gcc.dg/tree-ssa/fre-vce-1.c
! 37c9c94a0aa7732095325168e35b6241 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-11.c
8847b784d4afa960614f3abe85f69a6f gcc/testsuite/gcc.dg/tree-ssa/gen-vect-11a.c
c4778a5d167ea622bf99df287c4bd701 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-11b.c
c177f823491b23ed671dd72cae6bdd38 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-11c.c
7f9cb4c67e184582150085aca486f32d gcc/testsuite/gcc.dg/tree-ssa/gen-vect-2.c
1712dcd4bc0231a36d0086b106369e57 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-25.c
! 65502107a383bd33d7e4c5fa74adb218 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-26.c
! 6d9760953002e404ef7825de2cd8ec66 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-28.c
! 134e5c6c63933e6efeb5c3336f1167ee gcc/testsuite/gcc.dg/tree-ssa/gen-vect-32.c
c700544c3e68a401546cefbdad359728 gcc/testsuite/gcc.dg/tree-ssa/gen-vect-33.c
b2e6051605666541fc80985492b002a4 gcc/testsuite/gcc.dg/tree-ssa/ifc-10.c
45abed04f141d506c77bb20d255d1d0c gcc/testsuite/gcc.dg/tree-ssa/ifc-11.c
*************** a8e99357ccf139e15cb199f14791dd62 gcc/te
*** 38474,38479 ****
--- 38662,38669 ----
2a36aca5f712a030aa778e7ae5777731 gcc/testsuite/gcc.dg/tree-ssa/pr89725.c
e9230122742d9f2e19bb99dcd54db233 gcc/testsuite/gcc.dg/tree-ssa/pr89872.c
d23898ffe25f214674f480b4b21f7ebb gcc/testsuite/gcc.dg/tree-ssa/pr91091-1.c
+ a60a81930642c86cefacf25732a4b3b3 gcc/testsuite/gcc.dg/tree-ssa/pr91091-2.c
+ 7dfc09abf1b28ac3735cb4bd89a16ccd gcc/testsuite/gcc.dg/tree-ssa/pr92930.c
e6c9f2dd9d7405dee4bfd5d6d0fc455f gcc/testsuite/gcc.dg/tree-ssa/pred-1.c
90c3c1a872e4566cc043c50e818ef036 gcc/testsuite/gcc.dg/tree-ssa/predcom-1.c
ec45787b9b781da6181e7960a8cb76f0 gcc/testsuite/gcc.dg/tree-ssa/predcom-2.c
*************** e05c644464252e6362b1708a38739e41 gcc/te
*** 38525,38532 ****
32b44bbdba5672497d6837cd3085944c gcc/testsuite/gcc.dg/tree-ssa/reassoc-21.c
fc0e281a23796262fa832ffe3ebc4d43 gcc/testsuite/gcc.dg/tree-ssa/reassoc-22.c
f39e851c8ff7bbd176d52719bdf1f6a2 gcc/testsuite/gcc.dg/tree-ssa/reassoc-23.c
! 4c02c7914db00d0662b371509d381564 gcc/testsuite/gcc.dg/tree-ssa/reassoc-24.c
! 60043478a50c4f918e4a11ddac3e464a gcc/testsuite/gcc.dg/tree-ssa/reassoc-25.c
5c0e095306f15dfc3883e1e40a90be2d gcc/testsuite/gcc.dg/tree-ssa/reassoc-26.c
5f39498e2df670547f4d7eab95029db3 gcc/testsuite/gcc.dg/tree-ssa/reassoc-27.c
efe4ddb755a726b0b3a5e3afde8d760a gcc/testsuite/gcc.dg/tree-ssa/reassoc-28.c
--- 38715,38722 ----
32b44bbdba5672497d6837cd3085944c gcc/testsuite/gcc.dg/tree-ssa/reassoc-21.c
fc0e281a23796262fa832ffe3ebc4d43 gcc/testsuite/gcc.dg/tree-ssa/reassoc-22.c
f39e851c8ff7bbd176d52719bdf1f6a2 gcc/testsuite/gcc.dg/tree-ssa/reassoc-23.c
! 6c1c4722619559de13c32692d8d5608c gcc/testsuite/gcc.dg/tree-ssa/reassoc-24.c
! 7c1b384e62e625aa03a534f1db867839 gcc/testsuite/gcc.dg/tree-ssa/reassoc-25.c
5c0e095306f15dfc3883e1e40a90be2d gcc/testsuite/gcc.dg/tree-ssa/reassoc-26.c
5f39498e2df670547f4d7eab95029db3 gcc/testsuite/gcc.dg/tree-ssa/reassoc-27.c
efe4ddb755a726b0b3a5e3afde8d760a gcc/testsuite/gcc.dg/tree-ssa/reassoc-28.c
*************** c6ae2df6a353c5ac288fcafb37edc450 gcc/te
*** 39304,39310 ****
77dbefe7ee6b1de71f451796787f1532 gcc/testsuite/gcc.dg/unroll-6.c
a034cbd359de956aef07a36500a255ea gcc/testsuite/gcc.dg/unroll-7.c
204b9be344d219dfaab5a48887ad9516 gcc/testsuite/gcc.dg/unroll-8.c
! 11d3bbbf23cf7d560b4a3903d4aac357 gcc/testsuite/gcc.dg/unroll-and-jam.c
99b212e0df5c61c48b3f2593a23414cc gcc/testsuite/gcc.dg/unsigned-long-compare.c
aa7c265797a6b0a2b548e25a531baf92 gcc/testsuite/gcc.dg/unused-1.c
8ba0a7c993176dd2077bdae924adddc8 gcc/testsuite/gcc.dg/unused-2.c
--- 39494,39500 ----
77dbefe7ee6b1de71f451796787f1532 gcc/testsuite/gcc.dg/unroll-6.c
a034cbd359de956aef07a36500a255ea gcc/testsuite/gcc.dg/unroll-7.c
204b9be344d219dfaab5a48887ad9516 gcc/testsuite/gcc.dg/unroll-8.c
! d3807c9220842bec164874979c78e9a3 gcc/testsuite/gcc.dg/unroll-and-jam.c
99b212e0df5c61c48b3f2593a23414cc gcc/testsuite/gcc.dg/unsigned-long-compare.c
aa7c265797a6b0a2b548e25a531baf92 gcc/testsuite/gcc.dg/unused-1.c
8ba0a7c993176dd2077bdae924adddc8 gcc/testsuite/gcc.dg/unused-2.c
*************** bff569b700179c57db87538442b9ced8 gcc/te
*** 39905,39910 ****
--- 40095,40105 ----
ac67ac2c3d8711dd155a41624852b861 gcc/testsuite/gcc.dg/vect/pr91293-1.c
db3576e77c43de369e47976aecb1d53c gcc/testsuite/gcc.dg/vect/pr91293-2.c
37fe9fcd52d12f73ee435eb9aa6d1c71 gcc/testsuite/gcc.dg/vect/pr91293-3.c
+ 6ff42a5a4a3e60344beb4ee415f9fa95 gcc/testsuite/gcc.dg/vect/pr91665.c
+ 8592f5133853519281066e3cdcdc9082 gcc/testsuite/gcc.dg/vect/pr92420.c
+ 01906fed72c9f61c670e936527239bd8 gcc/testsuite/gcc.dg/vect/pr92710.c
+ 9314244e8dd2629fd52faec10e7e5f47 gcc/testsuite/gcc.dg/vect/pr92723.c
+ 867fed4c196d4d64384bffad366ae916 gcc/testsuite/gcc.dg/vect/pr93767.c
32d06c886c85516fbdce4ca1bd516496 gcc/testsuite/gcc.dg/vect/section-anchors-pr27770.c
d7c598d838a7c98392febc88239e2769 gcc/testsuite/gcc.dg/vect/section-anchors-vect-69.c
cd2f0240aaa18dda8ac3a18459c93d29 gcc/testsuite/gcc.dg/vect/slp-1.c
*************** cf4a4d6e6cc4b23522c19982266ca248 gcc/te
*** 40223,40228 ****
--- 40418,40424 ----
0ad5246c517109cae0c7f2b2f7401f34 gcc/testsuite/gcc.dg/vect/vect-floatint-conversion-2.c
aa46a01c430ca6bcb60fb6bc2edfbb1d gcc/testsuite/gcc.dg/vect/vect-fma-1.c
b10686cc9cc745d9a4e579ee285eae2d gcc/testsuite/gcc.dg/vect/vect-fma-2.c
+ f26bda59075ce8ddcb0291dc86a118b3 gcc/testsuite/gcc.dg/vect/vect-fma-3.c
f7e0d01143aad0f81b1d1f66c5737e3a gcc/testsuite/gcc.dg/vect/vect-fold-1.c
b57bff07bf75c647567f17c15d11e41a gcc/testsuite/gcc.dg/vect/vect-ifcvt-10.c
a0b812b43a2a49d603a582c192074c86 gcc/testsuite/gcc.dg/vect/vect-ifcvt-11.c
*************** c8c679e672173f52fbc0d86757b5c05a gcc/te
*** 41775,41784 ****
--- 41971,41982 ----
face3a8c6631236fedad3dce5526b762 gcc/testsuite/gcc.target/aarch64/ngc.c
fb19dd57034e67da13f2a5b22815fcc5 gcc/testsuite/gcc.target/aarch64/no-inline-lrint_1.c
56f1cae94d74d605f3127ff54df58e5e gcc/testsuite/gcc.target/aarch64/no-inline-lrint_2.c
+ 9567b5cb1744b0c5a301604d3a25bbc2 gcc/testsuite/gcc.target/aarch64/no-inline-lrint_3.c
13a63494139cde5273b13f2e4eb58493 gcc/testsuite/gcc.target/aarch64/nofp_1.c
16f10ec9128105b137b7139eec150171 gcc/testsuite/gcc.target/aarch64/noplt_1.c
a08d94353bf55af1d22441a406d830ca gcc/testsuite/gcc.target/aarch64/noplt_2.c
5adbb32c5ec104efca72061e09229b8f gcc/testsuite/gcc.target/aarch64/noplt_3.c
+ 5d43e2829488a18473d4b2ca37cdaf82 gcc/testsuite/gcc.target/aarch64/nosplit-di-const-volatile_1.c
773bc5b0a8368679f7d4856edfb4d60f gcc/testsuite/gcc.target/aarch64/options_set_1.c
d6e1d0cb7cb44f50985db131c62ba20b gcc/testsuite/gcc.target/aarch64/options_set_10.c
38913b9d93786135bbb9f14461fcb591 gcc/testsuite/gcc.target/aarch64/options_set_2.c
*************** d1d34ae8edbb84b094c7f011971b77f4 gcc/te
*** 41851,41856 ****
--- 42049,42056 ----
bd8fbfc436e20c74e94a234b1baad093 gcc/testsuite/gcc.target/aarch64/pr87305.c
438fbd8d80e583c9dd8e4b6f03d561d9 gcc/testsuite/gcc.target/aarch64/pr87511.c
0c8e55f8ca526b3ff4c65395e56b96c5 gcc/testsuite/gcc.target/aarch64/pr87839.c
+ fa96ea78d21fc13d022162f4fb6d0e23 gcc/testsuite/gcc.target/aarch64/pr92424-2.c
+ cc14caf0fac017855cfb26da3f9bd70f gcc/testsuite/gcc.target/aarch64/pr92424-3.c
d3e6defa85b5cd4bb506306377e59a53 gcc/testsuite/gcc.target/aarch64/pragma_cpp_predefs_1.c
1f95766b4ed5bfb5f2cf1f168a607a8d gcc/testsuite/gcc.target/aarch64/predefine_large.c
d38e476730748c653068e7cb2d8d6ca6 gcc/testsuite/gcc.target/aarch64/predefine_small.c
*************** d39117d48547f0c8b7dd408a6e5d642b gcc/te
*** 43064,43069 ****
--- 43264,43270 ----
2dba2d912122a8f853d97a923bb125e3 gcc/testsuite/gcc.target/arc/cmem-ld.inc
8b3e31bdfff2b63ce252635b1a1fef0b gcc/testsuite/gcc.target/arc/cmem-st.inc
ab3e3c633530b0e2e02f20e76907cab4 gcc/testsuite/gcc.target/arc/cond-set-use.c
+ a8ef1d01a0865b83aab1825f39789150 gcc/testsuite/gcc.target/arc/delay-slot-limm.c
d9d9cdf928da4c195b1a99dad0aeda06 gcc/testsuite/gcc.target/arc/extzv-1.c
548254c3a241c8551ebb0aa5d94e45c4 gcc/testsuite/gcc.target/arc/firq-1.c
4e583df9e864022980d99fd265bb3ab5 gcc/testsuite/gcc.target/arc/firq-2.c
*************** c2635eb729f09720a184a5826e218569 gcc/te
*** 43139,43144 ****
--- 43340,43346 ----
58fc9721ecffbfdff197d4585c412004 gcc/testsuite/gcc.target/arc/nps400-cpu-flag.c
a6f761c17339470bb07c2d99265ec06d gcc/testsuite/gcc.target/arc/nv-cache.c
76cbc9fa02438e0b056b240c1acc42a6 gcc/testsuite/gcc.target/arc/pic-1.c
+ 8ac75d73a43ffeabafa566330b0b646a gcc/testsuite/gcc.target/arc/pic-2.c
9cf31b5a40dc5c0daec2297181924d9c gcc/testsuite/gcc.target/arc/pr89838.c
9bcff0642ee893311d6172e5bdfbc249 gcc/testsuite/gcc.target/arc/pr9000674901.c
de1d148fe0e6156b068d3be0465e4657 gcc/testsuite/gcc.target/arc/pr9001090948.c
*************** a7f2e5349eb3677d4e532197beb261b8 gcc/te
*** 43250,43255 ****
--- 43452,43458 ----
70d3af1373b3a49fb1912dca6e377274 gcc/testsuite/gcc.target/arm/acle/crc32d.c
21b20cecbc6689dc6367a96e210b956e gcc/testsuite/gcc.target/arm/acle/crc32h.c
2d7c8358817ecb57e689202c2e4f2dd6 gcc/testsuite/gcc.target/arm/acle/crc32w.c
+ 8e835118eed3d1e8f3b8108aac735957 gcc/testsuite/gcc.target/arm/acle/crc_hf_1.c
15caa7f54c3a3e06d97de61aaaa7ca1c gcc/testsuite/gcc.target/arm/acle/ldc.c
343921f8186546d1f5253679431b890b gcc/testsuite/gcc.target/arm/acle/ldc2.c
deee7c31c5c250e8d2a4897962cdea6b gcc/testsuite/gcc.target/arm/acle/ldc2l.c
*************** c6b1f31177a60b170040e0eddc1787ba gcc/te
*** 43626,43632 ****
7b0294d6197317c05cb3accfdbee95d9 gcc/testsuite/gcc.target/arm/movhi_movw.c
484b6553c962caa2f0746fa65de739e8 gcc/testsuite/gcc.target/arm/movsi_movt.c
190ffba53357096715f051384c38965b gcc/testsuite/gcc.target/arm/movsi_movw.c
! e1a3c5f48d9f0b10467986520487f54c gcc/testsuite/gcc.target/arm/multilib.exp
a27c7480ff5cba860dda5da683bb3b87 gcc/testsuite/gcc.target/arm/naked-1.c
292c423c2aa66b03398c922259527367 gcc/testsuite/gcc.target/arm/naked-2.c
2d75e6bd9379b6e090e6104b97434376 gcc/testsuite/gcc.target/arm/negdi-1.c
--- 43829,43835 ----
7b0294d6197317c05cb3accfdbee95d9 gcc/testsuite/gcc.target/arm/movhi_movw.c
484b6553c962caa2f0746fa65de739e8 gcc/testsuite/gcc.target/arm/movsi_movt.c
190ffba53357096715f051384c38965b gcc/testsuite/gcc.target/arm/movsi_movw.c
! 48503235aea2f3375e1e33f5156b715f gcc/testsuite/gcc.target/arm/multilib.exp
a27c7480ff5cba860dda5da683bb3b87 gcc/testsuite/gcc.target/arm/naked-1.c
292c423c2aa66b03398c922259527367 gcc/testsuite/gcc.target/arm/naked-2.c
2d75e6bd9379b6e090e6104b97434376 gcc/testsuite/gcc.target/arm/negdi-1.c
*************** ecfd9e0633dd2f87b4224cd1d4ba57e7 gcc/te
*** 43767,43774 ****
aeba150bfdf5a821a1b2043e1f4af966 gcc/testsuite/gcc.target/arm/pr44999.c
a4c4698a5fe84412c8b996b75146c2b1 gcc/testsuite/gcc.target/arm/pr45094.c
6bf421f50d2e131c53639d3bf5eae6ab gcc/testsuite/gcc.target/arm/pr45447.c
! 6bc7b28310324c51eca103ca4790d010 gcc/testsuite/gcc.target/arm/pr45701-1.c
! e3d48ad1aa4ee130f918951a246c890a gcc/testsuite/gcc.target/arm/pr45701-2.c
18881ad8d2240959127b8e69c0334d9c gcc/testsuite/gcc.target/arm/pr45701-3.c
36686297e5d882e8e063d16c42dff77e gcc/testsuite/gcc.target/arm/pr46329.c
af020e627d5f93cc2c57a41e3bc37e28 gcc/testsuite/gcc.target/arm/pr46631.c
--- 43970,43977 ----
aeba150bfdf5a821a1b2043e1f4af966 gcc/testsuite/gcc.target/arm/pr44999.c
a4c4698a5fe84412c8b996b75146c2b1 gcc/testsuite/gcc.target/arm/pr45094.c
6bf421f50d2e131c53639d3bf5eae6ab gcc/testsuite/gcc.target/arm/pr45447.c
! a06400cfcff1aa0bef2abb6618f3627d gcc/testsuite/gcc.target/arm/pr45701-1.c
! 92fe8f5ec6970acfc7a1234f9e956ddb gcc/testsuite/gcc.target/arm/pr45701-2.c
18881ad8d2240959127b8e69c0334d9c gcc/testsuite/gcc.target/arm/pr45701-3.c
36686297e5d882e8e063d16c42dff77e gcc/testsuite/gcc.target/arm/pr46329.c
af020e627d5f93cc2c57a41e3bc37e28 gcc/testsuite/gcc.target/arm/pr46631.c
*************** f8d96076841643c7c01ef5410173dbad gcc/te
*** 43880,43885 ****
--- 44083,44090 ----
e279a2811aa09df5a0ba9cb6b9fd5c6d gcc/testsuite/gcc.target/arm/pr85434.c
33227127167a7e170af10f0beecbff03 gcc/testsuite/gcc.target/arm/pr86487.c
40076045a4c00e49c70de6a7a08bea67 gcc/testsuite/gcc.target/arm/pr86640.c
+ 13b419ece183c8289f8cd381a21bd825 gcc/testsuite/gcc.target/arm/pr88167-1.c
+ 061a3fd61673c5c82f24f6000121e426 gcc/testsuite/gcc.target/arm/pr88167-2.c
c11a83f6e8e6cfecb2d201bb9832efb3 gcc/testsuite/gcc.target/arm/pr88648-asm-syntax-unified.c
7b0e297d62102568ff399d15acdcc21a gcc/testsuite/gcc.target/arm/pr88850-2.c
abdf1bb4a331fd1ce60a010f9cea7a9f gcc/testsuite/gcc.target/arm/pr88850.c
*************** c9e6771b67edbcdcd59fc69d96f76bd0 gcc/te
*** 43897,43904 ****
3a06abeb34fdbba108fe536aeccde735 gcc/testsuite/gcc.target/arm/pragma_fpu_attribute_2.c
5b1a9414b404b74eb5cf36760730cf83 gcc/testsuite/gcc.target/arm/pure-code/ffunction-sections.c
77b405f3713bb420ee5af292f1a977dc gcc/testsuite/gcc.target/arm/pure-code/no-casesi.c
! 9a3c5a4b4bf1b8f81913c8f615eeba6a gcc/testsuite/gcc.target/arm/pure-code/no-literal-pool.c
! d5e6763a174bc7ef65b91c16238a8956 gcc/testsuite/gcc.target/arm/pure-code/pure-code.exp
639f9aee9e13df807ade02e6ee96c2d3 gcc/testsuite/gcc.target/arm/reg_equal_test.c
3143560976572191d8bba6ba78a45aa6 gcc/testsuite/gcc.target/arm/register-variables.c
3a055b71580ac3ae2460b1e608760a5a gcc/testsuite/gcc.target/arm/require-pic-register-loc.c
--- 44102,44109 ----
3a06abeb34fdbba108fe536aeccde735 gcc/testsuite/gcc.target/arm/pragma_fpu_attribute_2.c
5b1a9414b404b74eb5cf36760730cf83 gcc/testsuite/gcc.target/arm/pure-code/ffunction-sections.c
77b405f3713bb420ee5af292f1a977dc gcc/testsuite/gcc.target/arm/pure-code/no-casesi.c
! 7b8330d6a4b33ec1ebe3d2b0ac6a7d6a gcc/testsuite/gcc.target/arm/pure-code/no-literal-pool.c
! 1c2474d48edd57baf7c3e1477b3316af gcc/testsuite/gcc.target/arm/pure-code/pure-code.exp
639f9aee9e13df807ade02e6ee96c2d3 gcc/testsuite/gcc.target/arm/reg_equal_test.c
3143560976572191d8bba6ba78a45aa6 gcc/testsuite/gcc.target/arm/register-variables.c
3a055b71580ac3ae2460b1e608760a5a gcc/testsuite/gcc.target/arm/require-pic-register-loc.c
*************** c4133ce7c37295b55bc19679306f4e04 gcc/te
*** 44084,44090 ****
c39b37d2c668f829f8c0107bbb401cae gcc/testsuite/gcc.target/arm/thumb-ifcvt.c
257090e03640d43a6dbc603078350b3a gcc/testsuite/gcc.target/arm/thumb-ltu.c
7184e928dc61e9e887edd32b11343712 gcc/testsuite/gcc.target/arm/thumb-stackframe.c
! 06126a483c856b5dd7ce88c991c9ae01 gcc/testsuite/gcc.target/arm/thumb1-Os-mult.c
af684d56e0cd21b9e4295b85b8c6af41 gcc/testsuite/gcc.target/arm/thumb1-far-jump-1.c
b4fab83bf7109a1294a6bd49a7d8724a gcc/testsuite/gcc.target/arm/thumb1-far-jump-2.c
620a6821f4b18cc04954fc837f2d5761 gcc/testsuite/gcc.target/arm/thumb1-imm.c
--- 44289,44295 ----
c39b37d2c668f829f8c0107bbb401cae gcc/testsuite/gcc.target/arm/thumb-ifcvt.c
257090e03640d43a6dbc603078350b3a gcc/testsuite/gcc.target/arm/thumb-ltu.c
7184e928dc61e9e887edd32b11343712 gcc/testsuite/gcc.target/arm/thumb-stackframe.c
! 4109d3fe587661058bb1fd6ad3677c24 gcc/testsuite/gcc.target/arm/thumb1-Os-mult.c
af684d56e0cd21b9e4295b85b8c6af41 gcc/testsuite/gcc.target/arm/thumb1-far-jump-1.c
b4fab83bf7109a1294a6bd49a7d8724a gcc/testsuite/gcc.target/arm/thumb1-far-jump-2.c
620a6821f4b18cc04954fc837f2d5761 gcc/testsuite/gcc.target/arm/thumb1-imm.c
*************** ab15d222e706bd85c87c037d1e9b6f51 gcc/te
*** 44854,44859 ****
--- 45059,45065 ----
cb21d2e64c04a9daab66338cc0a66e65 gcc/testsuite/gcc.target/i386/avx-pr82370.c
fbcf5aac4ed190f64069f1418687d5f1 gcc/testsuite/gcc.target/i386/avx-pr88189-1.c
811083ceed1ed00408a07db7a4aa3156 gcc/testsuite/gcc.target/i386/avx-pr88189-2.c
+ 9b926829d7de933c61b0300157acbfc5 gcc/testsuite/gcc.target/i386/avx-pr93637.c
4e3d37bb04b99394790fa9e8caddf790 gcc/testsuite/gcc.target/i386/avx-recip-vec.c
02ae18a66bd7b76f7a651b896f066b70 gcc/testsuite/gcc.target/i386/avx-reduc-1.c
901c452df22c91b2a6a7b58fc968d5f4 gcc/testsuite/gcc.target/i386/avx-rint-sfix-2-vec.c
*************** eff00a81e6cb0010baf6a32b833b0772 gcc/te
*** 45442,45447 ****
--- 45648,45654 ----
e633d2cdd6e46d0e3462ac7fb113c2d2 gcc/testsuite/gcc.target/i386/avx2-pr82370.c
5367c6754763ae7586d8b37d96ef906f gcc/testsuite/gcc.target/i386/avx2-pr88547-1.c
c7941de7c7db82290d85b72fa950c1e8 gcc/testsuite/gcc.target/i386/avx2-pr88547-2.c
+ 7e8ea0369afd1660618e1ee1c9d52107 gcc/testsuite/gcc.target/i386/avx2-pr93418.c
2b83554762241a146df7ccc1617e1bfa gcc/testsuite/gcc.target/i386/avx2-vbroadcastsd_pd-1.c
193f0a7d029b84ce4e3b2e58eac8240a gcc/testsuite/gcc.target/i386/avx2-vbroadcastsd_pd-2.c
84a46e7f4338347591f1c8fe0aaceda5 gcc/testsuite/gcc.target/i386/avx2-vbroadcastsi128-1.c
*************** f55df70acaaa1a05030d45495848eb2b gcc/te
*** 45808,45819 ****
1db2c2106138cc396b1ae8c512625b33 gcc/testsuite/gcc.target/i386/avx5124vnniw-vp4dpwssd-2.c
5052cdd63fbafc27cd3d7534458acaec gcc/testsuite/gcc.target/i386/avx5124vnniw-vp4dpwssds-1.c
925a068450d57f20740e5ce6e8fe217e gcc/testsuite/gcc.target/i386/avx5124vnniw-vp4dpwssds-2.c
! 9de875f6f41e554337ea12937f31b749 gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntb-1.c
! fb81b2b2a3a46912d73cc1760be004e7 gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntb.c
! 199af992e17bd9c64dcfa9985d1f367e gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntbvl.c
! 8af06593173fa44cb3ccf5e8a4d0ee1a gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntw-1.c
! 80398fed0e3d0fb221f2b8b497ff4150 gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntw.c
! 2321f4d32ab673621ab22cd88183f167 gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntwvl.c
eabafa4926a7abff1e6146a7ef0143e0 gcc/testsuite/gcc.target/i386/avx512bitalg-vpshufbitqmb-1.c
0fc77f0fbea2843ee17f4836823ce2f9 gcc/testsuite/gcc.target/i386/avx512bitalg-vpshufbitqmb.c
b2b1fe9e25a1a50c9e88e7a8d168d328 gcc/testsuite/gcc.target/i386/avx512bitalgvl-vpopcntb-1.c
--- 46015,46026 ----
1db2c2106138cc396b1ae8c512625b33 gcc/testsuite/gcc.target/i386/avx5124vnniw-vp4dpwssd-2.c
5052cdd63fbafc27cd3d7534458acaec gcc/testsuite/gcc.target/i386/avx5124vnniw-vp4dpwssds-1.c
925a068450d57f20740e5ce6e8fe217e gcc/testsuite/gcc.target/i386/avx5124vnniw-vp4dpwssds-2.c
! 84a11e540e8533df61152a30c873a575 gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntb-1.c
! d728d0693656bb9b505f505356762d3c gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntb.c
! 7f84f82c7512e69110cd9ace71cf5f78 gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntbvl.c
! 2840f678f86d3934d9e12bd4efe274c8 gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntw-1.c
! 137fee4b6bc1f1276f3a325244117c02 gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntw.c
! 0ed417774de76c917c5a1a3494fb4bdd gcc/testsuite/gcc.target/i386/avx512bitalg-vpopcntwvl.c
eabafa4926a7abff1e6146a7ef0143e0 gcc/testsuite/gcc.target/i386/avx512bitalg-vpshufbitqmb-1.c
0fc77f0fbea2843ee17f4836823ce2f9 gcc/testsuite/gcc.target/i386/avx512bitalg-vpshufbitqmb.c
b2b1fe9e25a1a50c9e88e7a8d168d328 gcc/testsuite/gcc.target/i386/avx512bitalgvl-vpopcntb-1.c
*************** c3390538a58df83dc92017cf0b4fd3fb gcc/te
*** 45880,45885 ****
--- 46087,46093 ----
c3f19932e24d2aa723b1d3fc00ae4836 gcc/testsuite/gcc.target/i386/avx512bw-pr87138.c
f43b98d89586a44186b9c785eedf7a28 gcc/testsuite/gcc.target/i386/avx512bw-pr91150.c
6bad096ebe9551612b83b53e42b2abd8 gcc/testsuite/gcc.target/i386/avx512bw-pr91157.c
+ e8db4d816e2c3378fdfdbb76bcefc8d4 gcc/testsuite/gcc.target/i386/avx512bw-pr93673.c
186b4d26f65c47b5b328795efe473c71 gcc/testsuite/gcc.target/i386/avx512bw-vdbpsadbw-1.c
aa76e419ea439da7ae72280b04d232b8 gcc/testsuite/gcc.target/i386/avx512bw-vdbpsadbw-2.c
c8ba4cce715fd7698d0bd8d7cc7eca78 gcc/testsuite/gcc.target/i386/avx512bw-vmovdqu16-1.c
*************** d2c68e3327a2157bdcf34a605ff31313 gcc/te
*** 46148,46153 ****
--- 46356,46362 ----
5968a85a1eb9c3884b74c71c66a7cf8a gcc/testsuite/gcc.target/i386/avx512dq-pr85918.c
a55883cf9460124ef35490ac617f199c gcc/testsuite/gcc.target/i386/avx512dq-pr88465.c
27994cf2e5c4a37ee62a307be6acdb91 gcc/testsuite/gcc.target/i386/avx512dq-pr90991-1.c
+ 5b7eeade63f43c643092ab9e82d0bc38 gcc/testsuite/gcc.target/i386/avx512dq-pr93673.c
802a65b817227165abdd16614cc84b66 gcc/testsuite/gcc.target/i386/avx512dq-vandnpd-1.c
16658064864d12d7e0b7ea05daac767c gcc/testsuite/gcc.target/i386/avx512dq-vandnpd-2.c
f106641a7d12e3bd58bae9ca7a4d556b gcc/testsuite/gcc.target/i386/avx512dq-vandnps-1.c
*************** a940544da86cef217be8f69bb1db86fd gcc/te
*** 46490,46495 ****
--- 46699,46705 ----
d8f5b8a616877bf994ca908404ac88d4 gcc/testsuite/gcc.target/i386/avx512f-pr88547-2.c
845a5a253dac36d4bc2305b59320b360 gcc/testsuite/gcc.target/i386/avx512f-pr89445.c
cf8d8483e8f8c207b3c3ece46a4e37a0 gcc/testsuite/gcc.target/i386/avx512f-pr91157.c
+ d02e54fef14f48afcc720ef0004da5fa gcc/testsuite/gcc.target/i386/avx512f-pr93673.c
c03d8cf4fa3fd17be806ad4e6adc4bca gcc/testsuite/gcc.target/i386/avx512f-prefer.c
fa779c05cab9a2378601e3ad5ae642ef gcc/testsuite/gcc.target/i386/avx512f-reduce-op-1.c
ada32523be27898684e961dc8a530319 gcc/testsuite/gcc.target/i386/avx512f-rint-sfix-vec-1.c
*************** c75f41a84b0ff9e1454ea517888cf42e gcc/te
*** 47278,47283 ****
--- 47488,47495 ----
901b5f592de42b8641315e7a0e470c78 gcc/testsuite/gcc.target/i386/avx512vbmi-vpermt2b-2.c
da943fec8529ab4219ae92fa7701f4f3 gcc/testsuite/gcc.target/i386/avx512vbmi-vpmultishiftqb-1.c
b3bb92860a7a7725c03afa6bd022047f gcc/testsuite/gcc.target/i386/avx512vbmi-vpmultishiftqb-2.c
+ 894c1afa27bde11c6d50e1f6fae905b8 gcc/testsuite/gcc.target/i386/avx512vbmi2-vpshld-1.c
+ 1a47d56ff1d6271c07878c0fee5ba0e6 gcc/testsuite/gcc.target/i386/avx512vbmi2-vpshrd-1.c
00c640a9ee145099cd26543b8b9bfcff gcc/testsuite/gcc.target/i386/avx512vl-abs-copysign-1.c
d2d79308516c8d8c17653303db1b5237 gcc/testsuite/gcc.target/i386/avx512vl-abs-copysign-2.c
d54abcf534a735a2ad01ccab68350c63 gcc/testsuite/gcc.target/i386/avx512vl-add-sf-xmm-1.c
*************** b6461a6adcacf1878ea8a38e64cabb40 gcc/te
*** 47368,47373 ****
--- 47580,47587 ----
b4fb4f0d39ccb3c5e1aea928db324129 gcc/testsuite/gcc.target/i386/avx512vl-pr88547-1.c
a8a6480fddb95d8b69219774c45cee01 gcc/testsuite/gcc.target/i386/avx512vl-pr88547-2.c
af0b2c0a30255ddd7ee911a782d4d90d gcc/testsuite/gcc.target/i386/avx512vl-pr88547-3.c
+ 4d69d6f7bd71b5e9293c77c434bf19d7 gcc/testsuite/gcc.target/i386/avx512vl-pr93009.c
+ e83e4ca7bfde31c45ab7a663d2cbb1ee gcc/testsuite/gcc.target/i386/avx512vl-pr93670.c
224ac9323dda6256b6cecaa257324229 gcc/testsuite/gcc.target/i386/avx512vl-sub-sf-xmm-1.c
8f9702be88cd81a245f378c6c354fb8c gcc/testsuite/gcc.target/i386/avx512vl-sub-sf-ymm-1.c
eb60351b2f49a1b13a1a93145f192ab8 gcc/testsuite/gcc.target/i386/avx512vl-sub-si-xmm-1.c
*************** c292ba048c97e84fe04aa26984af35f1 gcc/te
*** 48053,48062 ****
5dd65f3a93c30a9885fc551a4cad76a4 gcc/testsuite/gcc.target/i386/avx512vl-xor-si-ymm-1.c
e8b40df1b29caa7e7a5ad3533f175e18 gcc/testsuite/gcc.target/i386/avx512vlbw-pr82370.c
3b56096e93a13615a8ca272bc3ed8e6c gcc/testsuite/gcc.target/i386/avx512vlbw-pr85832.c
! f6b7d0b72d217c57bd0c953b18c2bb51 gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntd-1.c
! 3f0e9e21f8daf76273838121c569322a gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntd.c
! 302654a622ec78f477d30938f066623b gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntq-1.c
! 88ad44c8930b8f8ccba5c508e25d4bfa gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntq.c
fa2414b7f0b02ba46bfc1187b11b0120 gcc/testsuite/gcc.target/i386/avx512vpopcntdqvl-vpopcntd-1.c
17d28bf7cef176269dc5873687b13c9f gcc/testsuite/gcc.target/i386/avx512vpopcntdqvl-vpopcntq-1.c
5da8354c1b0f081b6c64be550d4b604e gcc/testsuite/gcc.target/i386/avxfp-1.c
--- 48267,48276 ----
5dd65f3a93c30a9885fc551a4cad76a4 gcc/testsuite/gcc.target/i386/avx512vl-xor-si-ymm-1.c
e8b40df1b29caa7e7a5ad3533f175e18 gcc/testsuite/gcc.target/i386/avx512vlbw-pr82370.c
3b56096e93a13615a8ca272bc3ed8e6c gcc/testsuite/gcc.target/i386/avx512vlbw-pr85832.c
! 4ee014789b932f3aea1da6e759de7e75 gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntd-1.c
! 848d7f2507183d53d35a08030c471c3e gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntd.c
! d8084141e791dfdf62ee3dc66173d458 gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntq-1.c
! 776a22660c657e8df374084201fce5f6 gcc/testsuite/gcc.target/i386/avx512vpopcntdq-vpopcntq.c
fa2414b7f0b02ba46bfc1187b11b0120 gcc/testsuite/gcc.target/i386/avx512vpopcntdqvl-vpopcntd-1.c
17d28bf7cef176269dc5873687b13c9f gcc/testsuite/gcc.target/i386/avx512vpopcntdqvl-vpopcntq-1.c
5da8354c1b0f081b6c64be550d4b604e gcc/testsuite/gcc.target/i386/avxfp-1.c
*************** b56cbb83f01d0feeec0ec874e60a703c gcc/te
*** 48463,48506 ****
cdd25f9aac1f47c227bf3e42b258efa9 gcc/testsuite/gcc.target/i386/incoming-7.c
74e35cf742c4e2fe9ce50213ed289958 gcc/testsuite/gcc.target/i386/incoming-8.c
9be1a58062ffa2d8454af884da1b9f81 gcc/testsuite/gcc.target/i386/incoming-9.c
! e668f256640d5e24656173167a660930 gcc/testsuite/gcc.target/i386/indirect-thunk-1.c
20988adf9b08c4b293517a2c73863343 gcc/testsuite/gcc.target/i386/indirect-thunk-10.c
! 150cb4e600cb21b8816a8ba105fb5820 gcc/testsuite/gcc.target/i386/indirect-thunk-2.c
! 0e064c305676c18f488018e6828f38a0 gcc/testsuite/gcc.target/i386/indirect-thunk-3.c
! b23891ab5e9e381ed1af78f6fdf8694a gcc/testsuite/gcc.target/i386/indirect-thunk-4.c
76b5340f3d1cae758f7f24f209df6970 gcc/testsuite/gcc.target/i386/indirect-thunk-5.c
44ba2c34bc32936af532c39182517a5f gcc/testsuite/gcc.target/i386/indirect-thunk-6.c
cd9517f2fb2890df6ac085a32cef6533 gcc/testsuite/gcc.target/i386/indirect-thunk-7.c
136c6b3bb1163a3077d4207bfc4e5275 gcc/testsuite/gcc.target/i386/indirect-thunk-8.c
c6d529ddda0429e0c528b2de3c8384d4 gcc/testsuite/gcc.target/i386/indirect-thunk-9.c
! 708bbdeeba5f45f0a0342764c8f7c86d gcc/testsuite/gcc.target/i386/indirect-thunk-attr-1.c
b346e03904cb1d652c2c4820cca183ee gcc/testsuite/gcc.target/i386/indirect-thunk-attr-10.c
4bdf208508a160ea7a3791b56b304575 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-11.c
fb753199c86d198aa2ebbd9d60100b91 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-14.c
4de4a90f08319415aabcf2779af8c1c9 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-15.c
aa62fdf94cd481fde7d2bb03cd3887ce gcc/testsuite/gcc.target/i386/indirect-thunk-attr-16.c
! 1ecb2608979285031369d9c5f0976592 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-2.c
! 828593c48db480c3b2fc5799f14d7d88 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-3.c
! 9d0bb39c55286bf33e960d483a7c329f gcc/testsuite/gcc.target/i386/indirect-thunk-attr-4.c
! 5e9b1a09cee5f12b2b6ce8d153fb519c gcc/testsuite/gcc.target/i386/indirect-thunk-attr-5.c
! 028b85249d541480b1c4d1621e276609 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-6.c
9e211cadb1b686a1d6b8c68737f2cc8f gcc/testsuite/gcc.target/i386/indirect-thunk-attr-7.c
1a3da150db1b16fc41bda9bbd7ca308e gcc/testsuite/gcc.target/i386/indirect-thunk-attr-8.c
f062bd94d2bcc6229905c541b481a03c gcc/testsuite/gcc.target/i386/indirect-thunk-attr-9.c
! d1c1656cbb779e6d00134b71155dca7b gcc/testsuite/gcc.target/i386/indirect-thunk-extern-1.c
3fdd7062ad5b6b04af4107a6cfbce2e2 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-10.c
! 5408de7f996a3ac22c3e51ca2425ee4b gcc/testsuite/gcc.target/i386/indirect-thunk-extern-2.c
! 39a03832c1589f4b9a2b26dd3c8e8177 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-3.c
! 7c578a9f1b9da303cd7dbcc717ab27ac gcc/testsuite/gcc.target/i386/indirect-thunk-extern-4.c
d60595421b98710f0053736975cb92fb gcc/testsuite/gcc.target/i386/indirect-thunk-extern-5.c
159efa6bc07479836c1f52e007ec64f0 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-6.c
7caad64af2c8b081cc9641db901f52f1 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-7.c
38223cb82cf9505ad00ae5f39795236b gcc/testsuite/gcc.target/i386/indirect-thunk-extern-8.c
10472248234411fb1063837b89c71e06 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-9.c
! 2ee9df6250cb2639ae843b62088adb95 gcc/testsuite/gcc.target/i386/indirect-thunk-inline-1.c
! e95f7b90a68144e7a60b7092abb12c4e gcc/testsuite/gcc.target/i386/indirect-thunk-inline-2.c
! cf34b1c99242035510ff79bc5f7e4650 gcc/testsuite/gcc.target/i386/indirect-thunk-inline-3.c
! 65fbecf1c401a1d2e163d1fae436fe3c gcc/testsuite/gcc.target/i386/indirect-thunk-inline-4.c
22d3ec31148d7eb42f889f412e80b98e gcc/testsuite/gcc.target/i386/indirect-thunk-inline-5.c
4bb39d2b0069f6a250bb165c0280899d gcc/testsuite/gcc.target/i386/indirect-thunk-inline-6.c
9b18301c6819350bef178c74ce5003b1 gcc/testsuite/gcc.target/i386/indirect-thunk-inline-7.c
--- 48677,48720 ----
cdd25f9aac1f47c227bf3e42b258efa9 gcc/testsuite/gcc.target/i386/incoming-7.c
74e35cf742c4e2fe9ce50213ed289958 gcc/testsuite/gcc.target/i386/incoming-8.c
9be1a58062ffa2d8454af884da1b9f81 gcc/testsuite/gcc.target/i386/incoming-9.c
! adb09d5162a99729c58768a1bbd44763 gcc/testsuite/gcc.target/i386/indirect-thunk-1.c
20988adf9b08c4b293517a2c73863343 gcc/testsuite/gcc.target/i386/indirect-thunk-10.c
! c95e46383fd5a4501004a0bc1f5d9d21 gcc/testsuite/gcc.target/i386/indirect-thunk-2.c
! 9ff9f61cd5b668186b7c213dca7378ae gcc/testsuite/gcc.target/i386/indirect-thunk-3.c
! 7519f59c10ed77932ed2015e31053234 gcc/testsuite/gcc.target/i386/indirect-thunk-4.c
76b5340f3d1cae758f7f24f209df6970 gcc/testsuite/gcc.target/i386/indirect-thunk-5.c
44ba2c34bc32936af532c39182517a5f gcc/testsuite/gcc.target/i386/indirect-thunk-6.c
cd9517f2fb2890df6ac085a32cef6533 gcc/testsuite/gcc.target/i386/indirect-thunk-7.c
136c6b3bb1163a3077d4207bfc4e5275 gcc/testsuite/gcc.target/i386/indirect-thunk-8.c
c6d529ddda0429e0c528b2de3c8384d4 gcc/testsuite/gcc.target/i386/indirect-thunk-9.c
! 5f543478181e42734efbd6110e7a3598 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-1.c
b346e03904cb1d652c2c4820cca183ee gcc/testsuite/gcc.target/i386/indirect-thunk-attr-10.c
4bdf208508a160ea7a3791b56b304575 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-11.c
fb753199c86d198aa2ebbd9d60100b91 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-14.c
4de4a90f08319415aabcf2779af8c1c9 gcc/testsuite/gcc.target/i386/indirect-thunk-attr-15.c
aa62fdf94cd481fde7d2bb03cd3887ce gcc/testsuite/gcc.target/i386/indirect-thunk-attr-16.c
! 266256bf9c72b3811751520548dcdf0e gcc/testsuite/gcc.target/i386/indirect-thunk-attr-2.c
! 7ad61ec0982e9eba391693dbb5e52d1c gcc/testsuite/gcc.target/i386/indirect-thunk-attr-3.c
! 7acc4f7264d2475c20aeb874707181ee gcc/testsuite/gcc.target/i386/indirect-thunk-attr-4.c
! b97ad0329e6caafdacfeb7480b4b75cc gcc/testsuite/gcc.target/i386/indirect-thunk-attr-5.c
! c27b27ac0212566fd3133978c6ad8edf gcc/testsuite/gcc.target/i386/indirect-thunk-attr-6.c
9e211cadb1b686a1d6b8c68737f2cc8f gcc/testsuite/gcc.target/i386/indirect-thunk-attr-7.c
1a3da150db1b16fc41bda9bbd7ca308e gcc/testsuite/gcc.target/i386/indirect-thunk-attr-8.c
f062bd94d2bcc6229905c541b481a03c gcc/testsuite/gcc.target/i386/indirect-thunk-attr-9.c
! b56dd85b92863436bb371da8d9f1a9b8 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-1.c
3fdd7062ad5b6b04af4107a6cfbce2e2 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-10.c
! 2965e739e22d2a2f074cf21684e44d79 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-2.c
! 642fe8dc37b80cd5a23db87f2790d7da gcc/testsuite/gcc.target/i386/indirect-thunk-extern-3.c
! a7eb6eedf20a23f9562103441bfe762e gcc/testsuite/gcc.target/i386/indirect-thunk-extern-4.c
d60595421b98710f0053736975cb92fb gcc/testsuite/gcc.target/i386/indirect-thunk-extern-5.c
159efa6bc07479836c1f52e007ec64f0 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-6.c
7caad64af2c8b081cc9641db901f52f1 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-7.c
38223cb82cf9505ad00ae5f39795236b gcc/testsuite/gcc.target/i386/indirect-thunk-extern-8.c
10472248234411fb1063837b89c71e06 gcc/testsuite/gcc.target/i386/indirect-thunk-extern-9.c
! dc38272c2c77f004e9b1432854810cc0 gcc/testsuite/gcc.target/i386/indirect-thunk-inline-1.c
! 3647393dca68e3247168db40d40dfddc gcc/testsuite/gcc.target/i386/indirect-thunk-inline-2.c
! c0f49c5ea58f441879a0a937ede627ef gcc/testsuite/gcc.target/i386/indirect-thunk-inline-3.c
! 577426cf82a5f996238328bf79562260 gcc/testsuite/gcc.target/i386/indirect-thunk-inline-4.c
22d3ec31148d7eb42f889f412e80b98e gcc/testsuite/gcc.target/i386/indirect-thunk-inline-5.c
4bb39d2b0069f6a250bb165c0280899d gcc/testsuite/gcc.target/i386/indirect-thunk-inline-6.c
9b18301c6819350bef178c74ce5003b1 gcc/testsuite/gcc.target/i386/indirect-thunk-inline-7.c
*************** a07b3ac10c2e8d8960d5f94aacc75325 gcc/te
*** 48878,48890 ****
694842da5eb4c5254d8b4bfe1dc8c111 gcc/testsuite/gcc.target/i386/pr32065-2.c
1f9ce93e6d6ec25c764294b90cdb8d4a gcc/testsuite/gcc.target/i386/pr32191.c
3ef466a500bee78557e9f8543d11be2f gcc/testsuite/gcc.target/i386/pr32219-1.c
! 6abb8cc0c313706909017ba96248c9ef gcc/testsuite/gcc.target/i386/pr32219-2.c
! 942798b2083ad96b184e19b7fb0caf32 gcc/testsuite/gcc.target/i386/pr32219-3.c
! bde288e27ca1cb7c3cfffe7b0468d441 gcc/testsuite/gcc.target/i386/pr32219-4.c
b4936c47ad27f5cfcac7ada484a24cac gcc/testsuite/gcc.target/i386/pr32219-5.c
786db7c45dc2a6ae29200eac1b80c7d3 gcc/testsuite/gcc.target/i386/pr32219-6.c
! 0a22fcd9f354948bd8381b93c4f885b7 gcc/testsuite/gcc.target/i386/pr32219-7.c
! 56481a20c9b8c5e629b4323c67b5f166 gcc/testsuite/gcc.target/i386/pr32219-8.c
0d754f3296fed9daf149740a268d8931 gcc/testsuite/gcc.target/i386/pr32219-9.c
d165bed09148366aaa31f611e7089751 gcc/testsuite/gcc.target/i386/pr32268.c
23769d8ea259071995070dc88b8cefc7 gcc/testsuite/gcc.target/i386/pr32280-1.c
--- 49092,49104 ----
694842da5eb4c5254d8b4bfe1dc8c111 gcc/testsuite/gcc.target/i386/pr32065-2.c
1f9ce93e6d6ec25c764294b90cdb8d4a gcc/testsuite/gcc.target/i386/pr32191.c
3ef466a500bee78557e9f8543d11be2f gcc/testsuite/gcc.target/i386/pr32219-1.c
! 79a2e189766746b2f0f07d4459e83e18 gcc/testsuite/gcc.target/i386/pr32219-2.c
! 324eb5d6acff05e4f8056c7dbee9683c gcc/testsuite/gcc.target/i386/pr32219-3.c
! 31e1ff1e1dea7eb33b16e3b0e7b51cc1 gcc/testsuite/gcc.target/i386/pr32219-4.c
b4936c47ad27f5cfcac7ada484a24cac gcc/testsuite/gcc.target/i386/pr32219-5.c
786db7c45dc2a6ae29200eac1b80c7d3 gcc/testsuite/gcc.target/i386/pr32219-6.c
! 89fc6d77f9488a3112b71f1d23bc8864 gcc/testsuite/gcc.target/i386/pr32219-7.c
! 51cdace97592cf8fb6a08aa60c3eb253 gcc/testsuite/gcc.target/i386/pr32219-8.c
0d754f3296fed9daf149740a268d8931 gcc/testsuite/gcc.target/i386/pr32219-9.c
d165bed09148366aaa31f611e7089751 gcc/testsuite/gcc.target/i386/pr32268.c
23769d8ea259071995070dc88b8cefc7 gcc/testsuite/gcc.target/i386/pr32280-1.c
*************** c408d46c72ebb51b0a57ffe0f3de6177 gcc/te
*** 49415,49420 ****
--- 49629,49635 ----
bac2b79055e3298741ce9969d7ee6b11 gcc/testsuite/gcc.target/i386/pr65671.c
c4ad4fe09848c714ef20bd7b3bec80c3 gcc/testsuite/gcc.target/i386/pr65693.c
2ea7c4202a1e5497cafa1c5ff17ba1ae gcc/testsuite/gcc.target/i386/pr65753.c
+ 78cbe4007cdbf9c2e9d9906666e65340 gcc/testsuite/gcc.target/i386/pr65782.c
6f6047a71bbe57979dd5ffb6dbc92efa gcc/testsuite/gcc.target/i386/pr65871-1.c
4e9323ac4312d95a31dedce674927010 gcc/testsuite/gcc.target/i386/pr65871-2.c
5775c5a6318f1243ca0d6b370dfa80a8 gcc/testsuite/gcc.target/i386/pr65871-3.c
*************** b4b72e8bbdacae2a4a51a302193e0b33 gcc/te
*** 49966,49976 ****
--- 50181,50195 ----
02d1fa1405e32f0ec5d5143e5a9f439d gcc/testsuite/gcc.target/i386/pr85620-3.c
ef26d6c20cd8d62290f57071ec7d3aa3 gcc/testsuite/gcc.target/i386/pr85620-4.c
6ad11c4fec0ee7f96ee7177b031643d0 gcc/testsuite/gcc.target/i386/pr85667-1.c
+ 91d570a0ad17e88baacfd8df45cf890f gcc/testsuite/gcc.target/i386/pr85667-10.c
f6ae1970d5d59d2346e9cc80a1025399 gcc/testsuite/gcc.target/i386/pr85667-2.c
9f89c7c3a99d927e53d6bfe1003c2249 gcc/testsuite/gcc.target/i386/pr85667-3.c
1e62148a68084060b4de71901f6abb3f gcc/testsuite/gcc.target/i386/pr85667-4.c
607300ba762a35449b97cef427bd9b31 gcc/testsuite/gcc.target/i386/pr85667-5.c
0ce7fb923d78058f2f86ecdfc69d1e90 gcc/testsuite/gcc.target/i386/pr85667-6.c
+ a5786646ba750d22ea879269cc087364 gcc/testsuite/gcc.target/i386/pr85667-7.c
+ e978d99e64900c57a4fb4fc02c3e26ff gcc/testsuite/gcc.target/i386/pr85667-8.c
+ 1463aed136a92c4f66cdcc362d839181 gcc/testsuite/gcc.target/i386/pr85667-9.c
2a5c3049bf296b47ae6f148a48bbf32c gcc/testsuite/gcc.target/i386/pr85692.c
edd12babef8a1b1ae5cbfcb546f88e8c gcc/testsuite/gcc.target/i386/pr85693.c
aeec20794b5881e9807e9a0bab51cf84 gcc/testsuite/gcc.target/i386/pr85694.c
*************** d7bcb4fdd0161bda3f8883308852762d gcc/te
*** 50027,50032 ****
--- 50246,50252 ----
a2e3db16bdc7a25f338922bcd6f76215 gcc/testsuite/gcc.target/i386/pr87657.c
a35bf9ac71101c4fd7617105e2022af1 gcc/testsuite/gcc.target/i386/pr87662.c
1820add1be755a939216eaf57b8daf5b gcc/testsuite/gcc.target/i386/pr87759.c
+ b91162801f7d0d6af855bd692e22ab63 gcc/testsuite/gcc.target/i386/pr87853.c
c7fbb8c42391916088505cea2847ff00 gcc/testsuite/gcc.target/i386/pr87918.c
4b54801016bc4b3cc228ac7dd70de407 gcc/testsuite/gcc.target/i386/pr87928.c
4fc2942c48d13b19282e746bb6deb0f5 gcc/testsuite/gcc.target/i386/pr87955.c
*************** f529a8c1dee59aa4275d01977b57a0f2 gcc/te
*** 50078,50085 ****
--- 50298,50317 ----
a9287216d129eff30597718cb0900160 gcc/testsuite/gcc.target/i386/pr90178.c
c04294701860868605e6d4177d1f5a28 gcc/testsuite/gcc.target/i386/pr90193.c
71daed2fce58de22bfa193c1d29d8205 gcc/testsuite/gcc.target/i386/pr90547.c
+ 82fd34c6f4f79a15f4144b67a4507d26 gcc/testsuite/gcc.target/i386/pr90867.c
1d0e83324035b21be27951b192325a1c gcc/testsuite/gcc.target/i386/pr90899.c
214e297c0a7eb9cbfdb0fe5aaefdfaa2 gcc/testsuite/gcc.target/i386/pr91131.c
+ 0cedb8815ec474ea3a6454ae7fdff46f gcc/testsuite/gcc.target/i386/pr91298-1.c
+ f0fcd639c26dec3b350ac6bf649264db gcc/testsuite/gcc.target/i386/pr91298-2.c
+ b1033a73e69ce631508fb5810b3eb39c gcc/testsuite/gcc.target/i386/pr91623.c
+ acc82a5b459bf1433e5f0d6d4849c00a gcc/testsuite/gcc.target/i386/pr91704.c
+ 0ff9c02d0f94bbfa2f618e6f4c81567e gcc/testsuite/gcc.target/i386/pr92225.c
+ b7cac4959f15ba45f067fec51fddab75 gcc/testsuite/gcc.target/i386/pr92615.c
+ 62ade5dc105d6119dff3a6aa23ee6a45 gcc/testsuite/gcc.target/i386/pr93088.c
+ 0cbbfb6a80b114bf60fcfd0fce913fdb gcc/testsuite/gcc.target/i386/pr93656.c
+ 77b9ee8512c8e923363a5e2d927e99b1 gcc/testsuite/gcc.target/i386/pr93696-1.c
+ b35da961377f3aa60ef57bb47462f48e gcc/testsuite/gcc.target/i386/pr93696-2.c
+ a830133e19b8979f8f171a4d277b5086 gcc/testsuite/gcc.target/i386/pr93743.c
849234c7a569c1e86023244bc5561263 gcc/testsuite/gcc.target/i386/pr9771-1.c
24ceb6d5f3f5cde4b9d852839bdb98ae gcc/testsuite/gcc.target/i386/prefetchw-1.c
f11f4731c396f099373c033ab016a64f gcc/testsuite/gcc.target/i386/prefetchwt1-1.c
*************** e47bbd1acfd37236fccff011d4c82e82 gcc/te
*** 50115,50122 ****
e37a168c17859bf43f180a3cb76b47dc gcc/testsuite/gcc.target/i386/ret-thunk-11.c
7fde81ddca4708120e5f5125ba9c9fbf gcc/testsuite/gcc.target/i386/ret-thunk-12.c
14d89c82cb35544a32336240ef58c500 gcc/testsuite/gcc.target/i386/ret-thunk-13.c
! 7ecac60b0aebd17e5dd866ef3377564d gcc/testsuite/gcc.target/i386/ret-thunk-14.c
! 8ef45c39ce7866f8c203b022a02f775f gcc/testsuite/gcc.target/i386/ret-thunk-15.c
18e90525f1abe3c52128427f9fb39b3e gcc/testsuite/gcc.target/i386/ret-thunk-16.c
cc34b9f508b9c8334f3288b096cb78f7 gcc/testsuite/gcc.target/i386/ret-thunk-17.c
7d462469a74829644f625dfd13e56245 gcc/testsuite/gcc.target/i386/ret-thunk-18.c
--- 50347,50354 ----
e37a168c17859bf43f180a3cb76b47dc gcc/testsuite/gcc.target/i386/ret-thunk-11.c
7fde81ddca4708120e5f5125ba9c9fbf gcc/testsuite/gcc.target/i386/ret-thunk-12.c
14d89c82cb35544a32336240ef58c500 gcc/testsuite/gcc.target/i386/ret-thunk-13.c
! 8165c1fc58be1608397622f39d926c07 gcc/testsuite/gcc.target/i386/ret-thunk-14.c
! 03f2947228ea023c8f8d07076c33eb4c gcc/testsuite/gcc.target/i386/ret-thunk-15.c
18e90525f1abe3c52128427f9fb39b3e gcc/testsuite/gcc.target/i386/ret-thunk-16.c
cc34b9f508b9c8334f3288b096cb78f7 gcc/testsuite/gcc.target/i386/ret-thunk-17.c
7d462469a74829644f625dfd13e56245 gcc/testsuite/gcc.target/i386/ret-thunk-18.c
*************** c0e1cf033713f4d9f46705d898afe08a gcc/te
*** 50134,50140 ****
d51fd9f2d7e7069d77886270f69d0f12 gcc/testsuite/gcc.target/i386/ret-thunk-6.c
4234854200abfc91e34d2fc53f42eff3 gcc/testsuite/gcc.target/i386/ret-thunk-7.c
6f9c6a5223282b22bc65105d4a0e7e53 gcc/testsuite/gcc.target/i386/ret-thunk-8.c
! f665c9dc56b6a42f361219f9f19d12e6 gcc/testsuite/gcc.target/i386/ret-thunk-9.c
fe7ee8a9110596ef272c4f9b6ad8adad gcc/testsuite/gcc.target/i386/retarg.c
a97704f8e32c5e8bde0ca64585f19254 gcc/testsuite/gcc.target/i386/returninst1.c
b6489853439ca195ae81c5bc30919887 gcc/testsuite/gcc.target/i386/returninst2.c
--- 50366,50372 ----
d51fd9f2d7e7069d77886270f69d0f12 gcc/testsuite/gcc.target/i386/ret-thunk-6.c
4234854200abfc91e34d2fc53f42eff3 gcc/testsuite/gcc.target/i386/ret-thunk-7.c
6f9c6a5223282b22bc65105d4a0e7e53 gcc/testsuite/gcc.target/i386/ret-thunk-8.c
! 7a7a1d5a4517a13ebf3484508670a5bf gcc/testsuite/gcc.target/i386/ret-thunk-9.c
fe7ee8a9110596ef272c4f9b6ad8adad gcc/testsuite/gcc.target/i386/retarg.c
a97704f8e32c5e8bde0ca64585f19254 gcc/testsuite/gcc.target/i386/returninst1.c
b6489853439ca195ae81c5bc30919887 gcc/testsuite/gcc.target/i386/returninst2.c
*************** cf6f0df12b5b7345a2d1247211b0dceb gcc/te
*** 50195,50203 ****
cc8a162617784a2e883a5e726d28ebde gcc/testsuite/gcc.target/i386/sse-1.c
31f7ce4356be3b5523e49df7d4ad0951 gcc/testsuite/gcc.target/i386/sse-10.c
49bde97b271274cb2bc26697ce2b19be gcc/testsuite/gcc.target/i386/sse-11.c
! 769a782b181b404f593c14e1409cb073 gcc/testsuite/gcc.target/i386/sse-12.c
! 0c03a3c50daaeb9f0ad146cd5fc10a7e gcc/testsuite/gcc.target/i386/sse-13.c
! a138b342438a4100d09e24dd80aff320 gcc/testsuite/gcc.target/i386/sse-14.c
92ad37b5ad7426d489b1b6f1ba0f41ea gcc/testsuite/gcc.target/i386/sse-15.c
2e7b115c4bd7984925f1a8d17a5faf67 gcc/testsuite/gcc.target/i386/sse-16.c
f660e67b22cb44e6a6b38a247b1d78c3 gcc/testsuite/gcc.target/i386/sse-17.c
--- 50427,50435 ----
cc8a162617784a2e883a5e726d28ebde gcc/testsuite/gcc.target/i386/sse-1.c
31f7ce4356be3b5523e49df7d4ad0951 gcc/testsuite/gcc.target/i386/sse-10.c
49bde97b271274cb2bc26697ce2b19be gcc/testsuite/gcc.target/i386/sse-11.c
! 0fda9371039ad1a80f11530a4dcd4d85 gcc/testsuite/gcc.target/i386/sse-12.c
! 4b4e74dd76fb8c69ffdc4bfe13ee62fd gcc/testsuite/gcc.target/i386/sse-13.c
! 71ab93066487879f46e3ab206d911e61 gcc/testsuite/gcc.target/i386/sse-14.c
92ad37b5ad7426d489b1b6f1ba0f41ea gcc/testsuite/gcc.target/i386/sse-15.c
2e7b115c4bd7984925f1a8d17a5faf67 gcc/testsuite/gcc.target/i386/sse-16.c
f660e67b22cb44e6a6b38a247b1d78c3 gcc/testsuite/gcc.target/i386/sse-17.c
*************** f660e67b22cb44e6a6b38a247b1d78c3 gcc/te
*** 50206,50212 ****
bb148b6e9dd40de90aed723794e38216 gcc/testsuite/gcc.target/i386/sse-2.c
c23a0ea446a060d55e49e48429513f7d gcc/testsuite/gcc.target/i386/sse-20.c
d5e7e4c7d488a953399d853e48aa484e gcc/testsuite/gcc.target/i386/sse-21.c
! 9e9af38e237e398cf8ee3e7afdaedf55 gcc/testsuite/gcc.target/i386/sse-22.c
1c2df57cb3d7d6a3daf4084135ba9b1b gcc/testsuite/gcc.target/i386/sse-22a.c
3c1b81ac1f54becae326a79997fb72df gcc/testsuite/gcc.target/i386/sse-23.c
3fe1d48ff9d52631da56f04cc922a9cb gcc/testsuite/gcc.target/i386/sse-24.c
--- 50438,50444 ----
bb148b6e9dd40de90aed723794e38216 gcc/testsuite/gcc.target/i386/sse-2.c
c23a0ea446a060d55e49e48429513f7d gcc/testsuite/gcc.target/i386/sse-20.c
d5e7e4c7d488a953399d853e48aa484e gcc/testsuite/gcc.target/i386/sse-21.c
! 1f38a5aad13eeda864381389b3880374 gcc/testsuite/gcc.target/i386/sse-22.c
1c2df57cb3d7d6a3daf4084135ba9b1b gcc/testsuite/gcc.target/i386/sse-22a.c
3c1b81ac1f54becae326a79997fb72df gcc/testsuite/gcc.target/i386/sse-23.c
3fe1d48ff9d52631da56f04cc922a9cb gcc/testsuite/gcc.target/i386/sse-24.c
*************** cc9f6556f139a09d0fde4192c4bd5898 gcc/te
*** 51082,51087 ****
--- 51314,51322 ----
15a6a09f926d9cadc5efa71d9a537bd9 gcc/testsuite/gcc.target/mips/call-saved-7.c
b6598997f99e11ea5cde760f16bc51b8 gcc/testsuite/gcc.target/mips/call-saved-8.c
5ef31c16124e446128af2ccfc80a1ceb gcc/testsuite/gcc.target/mips/call-saved-9.c
+ 251d8644980f5886f8aeb79798fe635a gcc/testsuite/gcc.target/mips/cfgcleanup-jalr1.c
+ 848a10454fcc4968030b6fee3060abfe gcc/testsuite/gcc.target/mips/cfgcleanup-jalr2.c
+ ae780e823d07817d6b6704ba974cdd01 gcc/testsuite/gcc.target/mips/cfgcleanup-jalr3.c
0e811556243ef05a090351b71010af15 gcc/testsuite/gcc.target/mips/clear-cache-1.c
10c7701a3904364c72d3dc09d3612abd gcc/testsuite/gcc.target/mips/clear-cache-2.c
44d569798a91e2c06f1ea5e924b754dc gcc/testsuite/gcc.target/mips/code-readable-1.c
*************** f5708a14d24fa3ec5113806245448661 gcc/te
*** 51203,51208 ****
--- 51438,51444 ----
5dd1ae591090d75e1b427f8aa22f3d0c gcc/testsuite/gcc.target/mips/gcc-have-sync-compare-and-swap-4.c
0b11ee2c842b84b4bc066e44c1cdb1d4 gcc/testsuite/gcc.target/mips/get-fcsr-1.c
0b438608d3e1f6097d6deafb8cc1adcc gcc/testsuite/gcc.target/mips/get-fcsr-2.c
+ 3e8c2c752342d245655270615111d225 gcc/testsuite/gcc.target/mips/get-fcsr-3.c
16d43ceaf979632be1e1d4b9aa8de52c gcc/testsuite/gcc.target/mips/inline-memcpy-1.c
b5002e9e5369181413c9ffddd38c11f9 gcc/testsuite/gcc.target/mips/inline-memcpy-2.c
4bb37f55e916928ff7048e252937636b gcc/testsuite/gcc.target/mips/inline-memcpy-3.c
*************** d946887666581a01ba252e6f7f60ff15 gcc/te
*** 51461,51466 ****
--- 51697,51703 ----
41d397146106de9f0bde8568f2aa1b58 gcc/testsuite/gcc.target/mips/pr74563.c
ae0e3bf279bfdc631da5f4c109d681d3 gcc/testsuite/gcc.target/mips/pr82981.c
d16ca6ac6a955a86b18beecc197b9ccf gcc/testsuite/gcc.target/mips/pr88349.c
+ 883d2c60e32348644a3be6f91c7e2b65 gcc/testsuite/gcc.target/mips/pr91769.c
a3d18616f89634c190f4bb31b9165dbc gcc/testsuite/gcc.target/mips/r10k-cache-barrier-1.c
668f845b2b56ba796d8efa350bd5f072 gcc/testsuite/gcc.target/mips/r10k-cache-barrier-10.c
32ddce9e3a3bbe0a7c0283da638073ae gcc/testsuite/gcc.target/mips/r10k-cache-barrier-11.c
*************** bb3374c69dde2e7b04fca300c9416620 gcc/te
*** 51754,51760 ****
af361d9cce9906e7956ed7632c663422 gcc/testsuite/gcc.target/powerpc/20040622-1.c
6255b4c693da499be985b6e9dc83c802 gcc/testsuite/gcc.target/powerpc/20041111-1.c
09142540eea70df1224760101211366e gcc/testsuite/gcc.target/powerpc/20050603-1.c
! 6d295c1f2a0e117b298e9d430e5d902d gcc/testsuite/gcc.target/powerpc/20050603-3.c
bc3af82991adbd156bce9e6aa788b9b7 gcc/testsuite/gcc.target/powerpc/20050830-1.c
795922a961666ffadbc122338736a121 gcc/testsuite/gcc.target/powerpc/20081204-1.c
cd0f96d09613572877fd9b0a5b9fd2eb gcc/testsuite/gcc.target/powerpc/405-dlmzb-strlen-1.c
--- 51991,51997 ----
af361d9cce9906e7956ed7632c663422 gcc/testsuite/gcc.target/powerpc/20040622-1.c
6255b4c693da499be985b6e9dc83c802 gcc/testsuite/gcc.target/powerpc/20041111-1.c
09142540eea70df1224760101211366e gcc/testsuite/gcc.target/powerpc/20050603-1.c
! 9abe3de5b09268d62289d406cd6ff4a5 gcc/testsuite/gcc.target/powerpc/20050603-3.c
bc3af82991adbd156bce9e6aa788b9b7 gcc/testsuite/gcc.target/powerpc/20050830-1.c
795922a961666ffadbc122338736a121 gcc/testsuite/gcc.target/powerpc/20081204-1.c
cd0f96d09613572877fd9b0a5b9fd2eb gcc/testsuite/gcc.target/powerpc/405-dlmzb-strlen-1.c
*************** a3b487e53959665b5ecb0d7ba6138585 gcc/te
*** 52130,52135 ****
--- 52367,52373 ----
98101aa2892dd0277597181bcdf59916 gcc/testsuite/gcc.target/powerpc/darn-0.c
9c8b26ff1cc977f0df82bc86998c247b gcc/testsuite/gcc.target/powerpc/darn-1.c
962f878c3237706ffe60710e123880ff gcc/testsuite/gcc.target/powerpc/darn-2.c
+ 2d3888fb18aac2e8b4172608e0bad7da gcc/testsuite/gcc.target/powerpc/darn-3.c
965986b227062a2b8c664c916a71ad45 gcc/testsuite/gcc.target/powerpc/darwin-abi-1.c
9a0e4836781f28669ddca26eb214c2b2 gcc/testsuite/gcc.target/powerpc/darwin-abi-10.c
66e5cfd1b7491e37c0ef258d09b6634d gcc/testsuite/gcc.target/powerpc/darwin-abi-11.c
*************** faf2ed46677346059dd2b7fd42254985 gcc/te
*** 52851,52856 ****
--- 53089,53099 ----
10f1493f63e70f52ad8347f840e8b582 gcc/testsuite/gcc.target/powerpc/pr69548.c
c12c18f334b92db27768fc61c21a1b4a gcc/testsuite/gcc.target/powerpc/pr69946.c
8de5ffb2d5ac3eef7a5e25cc4282770a gcc/testsuite/gcc.target/powerpc/pr69969.c
+ 325a069d871f180ee18e5ae4b3e8fadf gcc/testsuite/gcc.target/powerpc/pr70010-1.c
+ 637826727bac89b90a0f3aa5177f7c16 gcc/testsuite/gcc.target/powerpc/pr70010-2.c
+ 41104bdcf432978b1bb8217791c89c23 gcc/testsuite/gcc.target/powerpc/pr70010-3.c
+ f04c5add43326054cacbb6544404890d gcc/testsuite/gcc.target/powerpc/pr70010-4.c
+ 1de006067bf04677e8e3043c80b99112 gcc/testsuite/gcc.target/powerpc/pr70010.c
7b679fd8b036308859824a29a78c13fd gcc/testsuite/gcc.target/powerpc/pr70117.c
9f0a82f7f84690a18cb82bed87617073 gcc/testsuite/gcc.target/powerpc/pr70640.c
9f7996dd7c38f201960362b08e509c7d gcc/testsuite/gcc.target/powerpc/pr70669.c
*************** d9ccfe0048f3d64bbe5861c9aea6294f gcc/te
*** 52873,52879 ****
ce78835a227344b0ee808a7cd36b8ab3 gcc/testsuite/gcc.target/powerpc/pr71977-1.c
c829cbeaf198a3914867f862ff322c1f gcc/testsuite/gcc.target/powerpc/pr71977-2.c
f480178203318f682e3a2aa7cf83b28e gcc/testsuite/gcc.target/powerpc/pr72717.c
! 93265198c16d9ecf158a219f866ac902 gcc/testsuite/gcc.target/powerpc/pr72804.c
b88472e4cc9299cb4219b90f5b344f69 gcc/testsuite/gcc.target/powerpc/pr72853.c
f89f50620562c6f4abc51387af2bb088 gcc/testsuite/gcc.target/powerpc/pr72863.c
e3aae05283ea4b10932c86272339b737 gcc/testsuite/gcc.target/powerpc/pr77289.c
--- 53116,53122 ----
ce78835a227344b0ee808a7cd36b8ab3 gcc/testsuite/gcc.target/powerpc/pr71977-1.c
c829cbeaf198a3914867f862ff322c1f gcc/testsuite/gcc.target/powerpc/pr71977-2.c
f480178203318f682e3a2aa7cf83b28e gcc/testsuite/gcc.target/powerpc/pr72717.c
! 9f9690fb00f3af890c2b4af3d6414035 gcc/testsuite/gcc.target/powerpc/pr72804.c
b88472e4cc9299cb4219b90f5b344f69 gcc/testsuite/gcc.target/powerpc/pr72853.c
f89f50620562c6f4abc51387af2bb088 gcc/testsuite/gcc.target/powerpc/pr72863.c
e3aae05283ea4b10932c86272339b737 gcc/testsuite/gcc.target/powerpc/pr77289.c
*************** dd95a2250e2db6dba5532882d6c626fd gcc/te
*** 52996,53001 ****
--- 53239,53254 ----
185daccfe9cd0171b973121afbc70613 gcc/testsuite/gcc.target/powerpc/pr89225.c
c37f43ea14b9c2771195287a84b61d7f gcc/testsuite/gcc.target/powerpc/pr89424-0.c
641d52f8caa1635a7b47a9370f9b19ed gcc/testsuite/gcc.target/powerpc/pr89765-mc.c
+ 212a3d50b8d112a6d4111e1f90023028 gcc/testsuite/gcc.target/powerpc/pr91275.c
+ 146b79d794c5eb5a94bc0cd961b416b6 gcc/testsuite/gcc.target/powerpc/pr92090-2.c
+ b3e3f8dd7576caaad7cff1f382fd583d gcc/testsuite/gcc.target/powerpc/pr92090.c
+ 83dcd9298e3032c199cff14e43dc88a2 gcc/testsuite/gcc.target/powerpc/pr92098-int-1.c
+ f41f1edc916eda202b67d7f3d9c4baa6 gcc/testsuite/gcc.target/powerpc/pr92098-int-2.c
+ 5ca836935ff861e5d765b50e1f687a46 gcc/testsuite/gcc.target/powerpc/pr92398.h
+ d9fba0ca0fbffbec7b81998c68e37046 gcc/testsuite/gcc.target/powerpc/pr92398.p9+.c
+ 5d5ca04b37310f5920f3cc8069f68a5a gcc/testsuite/gcc.target/powerpc/pr92398.p9-.c
+ 6ed2bd11c87cb97b53a02a6da437dd68 gcc/testsuite/gcc.target/powerpc/pr93073.c
+ 3ba8ef2a92d4982a4dc0e12f6d60290b gcc/testsuite/gcc.target/powerpc/pure-builtin-redundant-load.c
f2d0629b5eb04308346c90a52b0dfad9 gcc/testsuite/gcc.target/powerpc/quad-atomic.c
4c4c29d599264356e1c6bc46cac8a876 gcc/testsuite/gcc.target/powerpc/r2_shrink-wrap.c
7659e2d7158a0cc47cd2b58dced8dd34 gcc/testsuite/gcc.target/powerpc/recip-1.c
*************** f69ed9814aa0739480a17cf1070d4373 gcc/te
*** 53693,53698 ****
--- 53946,53953 ----
31c0ee6a8ca083c03de82b32a5cc0210 gcc/testsuite/gcc.target/riscv/interrupt-umode.c
4aef0f89ffb494d0a744e3b040b6c9c7 gcc/testsuite/gcc.target/riscv/losum-overflow.c
14c90f84d8058b60faff46b00c097a9c gcc/testsuite/gcc.target/riscv/pr84660.c
+ 1a434ff3440a676fb4f4c586bf3152e5 gcc/testsuite/gcc.target/riscv/pr93202.c
+ df7314c076701fb65929d4b00b3eb243 gcc/testsuite/gcc.target/riscv/pr93304.c
f0f91a28596e2dcf0af2dee634ce81cd gcc/testsuite/gcc.target/riscv/predef-1.c
a800b0b2c0a7c1b33ad7379a050995d6 gcc/testsuite/gcc.target/riscv/predef-2.c
7536e7cf6900e49fcec2f3cf4afd1775 gcc/testsuite/gcc.target/riscv/predef-3.c
*************** dfc22da14c07c3bda891ed764956ee67 gcc/te
*** 53709,53714 ****
--- 53964,53971 ----
0b46a17ee46024f3154dbf8bdd5cbb02 gcc/testsuite/gcc.target/riscv/shift-shift-1.c
04f78f5b27020ebb5749248ba9ac40f0 gcc/testsuite/gcc.target/riscv/shift-shift-2.c
1dfed59e9e4db3db2d143a2eba583e14 gcc/testsuite/gcc.target/riscv/shift-shift-3.c
+ abf54bfa9c926f5b5adf9ebd76030325 gcc/testsuite/gcc.target/riscv/shift-shift-4.c
+ d76e761b074fb04aa46d4be42c99a83f gcc/testsuite/gcc.target/riscv/shift-shift-5.c
6dfb9790e241f950ea2aa3291b159220 gcc/testsuite/gcc.target/riscv/switch-qi.c
8fb57c19db131e7052dd356fcaf31c36 gcc/testsuite/gcc.target/riscv/switch-si.c
49941bd45fc4de8389bf599961feafd6 gcc/testsuite/gcc.target/riscv/weak-1.c
*************** cf959b4c2853c02daae71fd523c3158f gcc/te
*** 53934,53948 ****
f61f4c2353779a8836bca364a80c1221 gcc/testsuite/gcc.target/s390/pr89775-1.c
b379cd03e188ebd20fb6bfd9e811a8f6 gcc/testsuite/gcc.target/s390/pr89775-2.c
2eee4995a25c86e57cb129b5d45e0138 gcc/testsuite/gcc.target/s390/pr89952.c
f9de3c4e9d9e8c3a707e1f51e48901b6 gcc/testsuite/gcc.target/s390/return-addr1.c
5368e8759352b798ae1db6bc79919aa2 gcc/testsuite/gcc.target/s390/return-addr2.c
f974e5ff639dd74404435089c4a7a5b2 gcc/testsuite/gcc.target/s390/risbg-ll-1.c
1ec3a9ebd73b807db576d8103d9fce44 gcc/testsuite/gcc.target/s390/risbg-ll-2.c
50b370e2813f2827a79cab95bcd005ea gcc/testsuite/gcc.target/s390/risbg-ll-3.c
! 0aa2931a984db37a916f88d5a021bb28 gcc/testsuite/gcc.target/s390/s390.exp
970ac972bfd816dae5f8b5705abd8ab6 gcc/testsuite/gcc.target/s390/section-anchors.c
2e57c7c23cac49a65eb61077317a2f1b gcc/testsuite/gcc.target/s390/section-anchors2.c
78c4d933475e58d55d22ab5b46b27884 gcc/testsuite/gcc.target/s390/section-anchors3.c
3a9ba61f8844739d1b5989c7c7e2b6c1 gcc/testsuite/gcc.target/s390/stackcheck1.c
440663fed0925afcad33c76bdde54f80 gcc/testsuite/gcc.target/s390/target-attribute/pr82012.c
4a0a569cb86f0820127939aa90fb2469 gcc/testsuite/gcc.target/s390/target-attribute/tattr-1.c
--- 54191,54207 ----
f61f4c2353779a8836bca364a80c1221 gcc/testsuite/gcc.target/s390/pr89775-1.c
b379cd03e188ebd20fb6bfd9e811a8f6 gcc/testsuite/gcc.target/s390/pr89775-2.c
2eee4995a25c86e57cb129b5d45e0138 gcc/testsuite/gcc.target/s390/pr89952.c
+ f4792ece0a0aff8add8968cae67374ad gcc/testsuite/gcc.target/s390/pr93908.c
f9de3c4e9d9e8c3a707e1f51e48901b6 gcc/testsuite/gcc.target/s390/return-addr1.c
5368e8759352b798ae1db6bc79919aa2 gcc/testsuite/gcc.target/s390/return-addr2.c
f974e5ff639dd74404435089c4a7a5b2 gcc/testsuite/gcc.target/s390/risbg-ll-1.c
1ec3a9ebd73b807db576d8103d9fce44 gcc/testsuite/gcc.target/s390/risbg-ll-2.c
50b370e2813f2827a79cab95bcd005ea gcc/testsuite/gcc.target/s390/risbg-ll-3.c
! 1e49e831dee17194fd8925532fced3df gcc/testsuite/gcc.target/s390/s390.exp
970ac972bfd816dae5f8b5705abd8ab6 gcc/testsuite/gcc.target/s390/section-anchors.c
2e57c7c23cac49a65eb61077317a2f1b gcc/testsuite/gcc.target/s390/section-anchors2.c
78c4d933475e58d55d22ab5b46b27884 gcc/testsuite/gcc.target/s390/section-anchors3.c
+ cf53aab8a3ab2532dd55b65c25e2cda5 gcc/testsuite/gcc.target/s390/sigfpe-eh.c
3a9ba61f8844739d1b5989c7c7e2b6c1 gcc/testsuite/gcc.target/s390/stackcheck1.c
440663fed0925afcad33c76bdde54f80 gcc/testsuite/gcc.target/s390/target-attribute/pr82012.c
4a0a569cb86f0820127939aa90fb2469 gcc/testsuite/gcc.target/s390/target-attribute/tattr-1.c
*************** d68a866a15a643eeda4c8be22e4cfd31 gcc/te
*** 54037,54042 ****
--- 54296,54302 ----
cd87621c97dea4b44990c53afb0e84f0 gcc/testsuite/gcc.target/s390/vector/fp-signedint-convert-1.c
7555086a7e981f40ab0a053876683cc4 gcc/testsuite/gcc.target/s390/vector/fp-unsignedint-convert-1.c
8a6c46e492362a7ae789676034c82a23 gcc/testsuite/gcc.target/s390/vector/int128-1.c
+ 4fefdb80366d27b600c5e726a3b722da gcc/testsuite/gcc.target/s390/vector/pr92950.c
f8ddf98d23fed8fdb81fc0b6b8a34fa4 gcc/testsuite/gcc.target/s390/vector/stpcpy-1.c
c6799efe253acc955e2b9dcf44075d99 gcc/testsuite/gcc.target/s390/vector/vcond-shift.c
8fa9b68cf0196b4198ce00a304191744 gcc/testsuite/gcc.target/s390/vector/vec-abi-1.c
*************** ffba4a644f6c776dd608a5285349bff8 gcc/te
*** 54363,54369 ****
a67458660c2ef2010f128fdaa4faaa86 gcc/testsuite/gcc.target/sparc/20160104-1.c
22f916e859ece29a91c18dffaca9e14b gcc/testsuite/gcc.target/sparc/20160104-2.c
5a2e933dbc9688c2c8158a7e45e5462b gcc/testsuite/gcc.target/sparc/20160229-1.c
! f105a9c71ffd58f541747bfe25ebdc89 gcc/testsuite/gcc.target/sparc/20161111-1.c
5b34d024151ffbbd5c3b91733a663c88 gcc/testsuite/gcc.target/sparc/20170205-1.c
e470b0a0d1a056b60c3915a6dfcfd4ae gcc/testsuite/gcc.target/sparc/20170228-1.c
bf95d536cbad4db92f264aa740abbbbc gcc/testsuite/gcc.target/sparc/20181129-1.c
--- 54623,54629 ----
a67458660c2ef2010f128fdaa4faaa86 gcc/testsuite/gcc.target/sparc/20160104-1.c
22f916e859ece29a91c18dffaca9e14b gcc/testsuite/gcc.target/sparc/20160104-2.c
5a2e933dbc9688c2c8158a7e45e5462b gcc/testsuite/gcc.target/sparc/20160229-1.c
! 5b143c3e46fe04901dc0f5da126d1e44 gcc/testsuite/gcc.target/sparc/20161111-1.c
5b34d024151ffbbd5c3b91733a663c88 gcc/testsuite/gcc.target/sparc/20170205-1.c
e470b0a0d1a056b60c3915a6dfcfd4ae gcc/testsuite/gcc.target/sparc/20170228-1.c
bf95d536cbad4db92f264aa740abbbbc gcc/testsuite/gcc.target/sparc/20181129-1.c
*************** a6501f830b7d1b9e944beb9e5db075f6 gcc/te
*** 54437,54447 ****
8c00c3335d253fde289d5e07676b4586 gcc/testsuite/gcc.target/sparc/movcc-2.c
06ebc1bfb7ebac800bc8e13a4c96ecdc gcc/testsuite/gcc.target/sparc/niagara7-align.c
27bc21317eeddefa4b9cc41e1c4e363c gcc/testsuite/gcc.target/sparc/noresult.c
! 019b2c91e8d69c544c8425875f80963c gcc/testsuite/gcc.target/sparc/overflow-1.c
! 0d159b72526aa6fb4b1565064261c3d5 gcc/testsuite/gcc.target/sparc/overflow-2.c
! c8f895d6319bbcc6fb06c49142f3c3bf gcc/testsuite/gcc.target/sparc/overflow-3.c
! 3423844e80022f8772b00b4375802c3b gcc/testsuite/gcc.target/sparc/overflow-4.c
! eb30497171b652baaf0fbfdfe639c2aa gcc/testsuite/gcc.target/sparc/overflow-5.c
0e446c8782cfda1bf1b2b7467cdf43af gcc/testsuite/gcc.target/sparc/pdist-2.c
77281e86e797be1ef8a0784c9a4db58a gcc/testsuite/gcc.target/sparc/pdist-3.c
178b0f750e337f74871710d17257944f gcc/testsuite/gcc.target/sparc/pdist.c
--- 54697,54707 ----
8c00c3335d253fde289d5e07676b4586 gcc/testsuite/gcc.target/sparc/movcc-2.c
06ebc1bfb7ebac800bc8e13a4c96ecdc gcc/testsuite/gcc.target/sparc/niagara7-align.c
27bc21317eeddefa4b9cc41e1c4e363c gcc/testsuite/gcc.target/sparc/noresult.c
! a54091faea7a1abd6cd4fbd0ef1b4336 gcc/testsuite/gcc.target/sparc/overflow-1.c
! d0fc65bbbe891276a96818aa810ee61a gcc/testsuite/gcc.target/sparc/overflow-2.c
! 444e8beace1b4de7dfc39e780fc67fac gcc/testsuite/gcc.target/sparc/overflow-3.c
! 2d8b17d688d100fd3cb6453f855222b0 gcc/testsuite/gcc.target/sparc/overflow-4.c
! 8475c91c4d278191b81ca429107475b1 gcc/testsuite/gcc.target/sparc/overflow-5.c
0e446c8782cfda1bf1b2b7467cdf43af gcc/testsuite/gcc.target/sparc/pdist-2.c
77281e86e797be1ef8a0784c9a4db58a gcc/testsuite/gcc.target/sparc/pdist-3.c
178b0f750e337f74871710d17257944f gcc/testsuite/gcc.target/sparc/pdist.c
*************** b752d8e0e2616e7a0b0f6cb39057e8f6 gcc/te
*** 57157,57163 ****
6d72a54151f72a962bff1910bf0da4fe gcc/testsuite/gdc.test/runnable/xtest55.d
4e7f0de22b7ea65edfc19886e0194745 gcc/testsuite/gdc.test/runnable/xtestenum.d
38343e39577a1d093c40818070ea1d7b gcc/testsuite/gfortran.dg/20181025-1.f
! fe54b6b6c4df6ffbc3faeb4350138a26 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.c
3eb61cc5bcca57c89d27b886454f741f gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.f90
59739710cd1fa1946c795ad6d61d5bc4 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_10.c
ab61897df959fe950516eff0731b9408 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_10.f90
--- 57417,57423 ----
6d72a54151f72a962bff1910bf0da4fe gcc/testsuite/gdc.test/runnable/xtest55.d
4e7f0de22b7ea65edfc19886e0194745 gcc/testsuite/gdc.test/runnable/xtestenum.d
38343e39577a1d093c40818070ea1d7b gcc/testsuite/gfortran.dg/20181025-1.f
! ce04570deb62ab215ae3e3f210fa3e05 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.c
3eb61cc5bcca57c89d27b886454f741f gcc/testsuite/gfortran.dg/ISO_Fortran_binding_1.f90
59739710cd1fa1946c795ad6d61d5bc4 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_10.c
ab61897df959fe950516eff0731b9408 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_10.f90
*************** ab61897df959fe950516eff0731b9408 gcc/te
*** 57165,57170 ****
--- 57425,57435 ----
0d4f32a7fb98c6f300d234ef07c868a6 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_11.f90
f960ece33e6f461552cdfe23d308516d gcc/testsuite/gfortran.dg/ISO_Fortran_binding_12.c
0f997ee918539916d184f0f26ede39dc gcc/testsuite/gfortran.dg/ISO_Fortran_binding_12.f90
+ 6b0904352bf83bab2f0b90ac1682aeb2 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_13.c
+ 1637107e7b04b625884037471be00510 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_13.f90
+ 0590c7c6708c81cca9c50dcfbc485021 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_14.f90
+ 6e7b19b5700d90f1ea9027eee720ded2 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_17.c
+ 83ed5cb8aafa7e28e6f1799d2f9af0c0 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_17.f90
9d0f92e87fb4f26f9b6c6ba44603d69c gcc/testsuite/gfortran.dg/ISO_Fortran_binding_3.c
2b8b1f675c75cbcedd7b9e79adfde6f8 gcc/testsuite/gfortran.dg/ISO_Fortran_binding_3.f90
26bb37cdd8c407bb13011329ec3723aa gcc/testsuite/gfortran.dg/ISO_Fortran_binding_4.f90
*************** fe3a537d232e11c904ccb01a3aab7662 gcc/te
*** 57410,57415 ****
--- 57675,57683 ----
7cc510b039d09672cfbf8d1dec88953c gcc/testsuite/gfortran.dg/allocate_zerosize_1.f90
12f3d33d5ae0d7cf655d8f39f073d9a9 gcc/testsuite/gfortran.dg/allocate_zerosize_2.f90
ce98de1957479e069ab10632545c5afa gcc/testsuite/gfortran.dg/allocate_zerosize_3.f
+ 2aed41bf3197f0940198d4ddf8b5d161 gcc/testsuite/gfortran.dg/allocated_1.f90
+ f6b88d144becd396845bef8ec9c702cf gcc/testsuite/gfortran.dg/allocated_2.f90
+ c48691ea63fd97e5aeaa840878e94e6f gcc/testsuite/gfortran.dg/allocated_3.f90
6a729cf1f6bf67aa0e2493345f68e5fc gcc/testsuite/gfortran.dg/altreturn_1.f90
35675d46dde8f42af0dccd6d6054d457 gcc/testsuite/gfortran.dg/altreturn_10.f90
7cbc1f043d9ba68898b8a84dff22a6f7 gcc/testsuite/gfortran.dg/altreturn_2.f90
*************** fc8aa36bdfc5dedea8c7e067f3958a4c gcc/te
*** 57451,57456 ****
--- 57719,57725 ----
9a6dc039d47b29ccb678823eb76c7e6c gcc/testsuite/gfortran.dg/argument_checking_8.f90
ae5c0c1a40358f4209139ab1ba4c93a1 gcc/testsuite/gfortran.dg/argument_checking_9.f90
f2050f4ab1ae68ef71906c613ddc6d03 gcc/testsuite/gfortran.dg/arith_divide.f
+ e91a18d295c64b6421d9e76487338fa8 gcc/testsuite/gfortran.dg/arith_divide_2.f90
3130a308b1d1471577ea44bf582c1bec gcc/testsuite/gfortran.dg/arith_divide_no_check.f
9f88f5ececa8e91571e1a769c9375575 gcc/testsuite/gfortran.dg/arithmetic_if.f90
ad54c15b47e17edab3af8726783901c3 gcc/testsuite/gfortran.dg/arithmetic_overflow_1.f90
*************** bf4b33b033f4afc9c22972f4a83b0173 gcc/te
*** 57649,57654 ****
--- 57918,57924 ----
6143ba2a228800dde0bd37f3665e0994 gcc/testsuite/gfortran.dg/associate_46.f90
9d5df5da202bebcf02ce0c435182480d gcc/testsuite/gfortran.dg/associate_47.f90
47ae1500d4b97d431462d23e9c5895d0 gcc/testsuite/gfortran.dg/associate_48.f90
+ c73b6100086b4db74c5f70aa2b7a9af6 gcc/testsuite/gfortran.dg/associate_49.f90
5dfaf5e9c3d8b8b8f835046ca42ccbf4 gcc/testsuite/gfortran.dg/associate_5.f03
fe80c25bfc4d1e630472420bac3dc836 gcc/testsuite/gfortran.dg/associate_6.f03
ac2154aefe0a4ce981b3fa252235e2dd gcc/testsuite/gfortran.dg/associate_7.f03
*************** f98c4c5663f30de86f0afb3d79ad29d9 gcc/te
*** 57779,57787 ****
--- 58049,58060 ----
be0405b4a56c0ba1a3fe8a34945a1be5 gcc/testsuite/gfortran.dg/bessel_6.f90
a2a8d60336baf77f1c51872999693b38 gcc/testsuite/gfortran.dg/bessel_7.f90
9969185b5b657469b14a9f67f9a454ce gcc/testsuite/gfortran.dg/besxy.f90
+ 7863c890f7dc67b1115c273e64489c85 gcc/testsuite/gfortran.dg/bind-c-intent-out.f90
1e97a2cc549ae76c480c160ef4a2470e gcc/testsuite/gfortran.dg/bind_c_18.f90
5057ed3328fade26b68ee446f3dbc8dc gcc/testsuite/gfortran.dg/bind_c_array_params.f03
0494b0ca6d11d224f65f64f607a53e22 gcc/testsuite/gfortran.dg/bind_c_array_params_2.f90
+ f6b29bf5e92ef393f02569bb463be585 gcc/testsuite/gfortran.dg/bind_c_array_params_3.f90
+ 6b21b4bba3d10945860c6b99ccbc87b2 gcc/testsuite/gfortran.dg/bind_c_array_params_3_aux.c
64b1da6deddc65df427e780f5980935a gcc/testsuite/gfortran.dg/bind_c_bool_1.f90
0be2d54dc75c98c5a88980df010d53b7 gcc/testsuite/gfortran.dg/bind_c_coms.f90
4889c13f805870ea7ba977bf711c64c4 gcc/testsuite/gfortran.dg/bind_c_coms_driver.c
*************** f644d887f39031b5af20b0a57a7894c4 gcc/te
*** 58155,58161 ****
7552d7512b3e8d60918c3a81c9b7fb02 gcc/testsuite/gfortran.dg/char_pointer_assign_3.f90
96b30f56a9de104b5d79a66d116b672a gcc/testsuite/gfortran.dg/char_pointer_assign_4.f90
37eb7ba9eb77543854f7607067c520c8 gcc/testsuite/gfortran.dg/char_pointer_assign_5.f90
! 05bbfce165dd596cf7612b34c8952dac gcc/testsuite/gfortran.dg/char_pointer_assign_6.f90
dd8a633154df2c14213e24aa617b08a2 gcc/testsuite/gfortran.dg/char_pointer_assign_icb_1.f90
ddf9f77e66c4a8135a264b7cc863b0b6 gcc/testsuite/gfortran.dg/char_pointer_comp_assign.f90
064ebf7ad523c69997a5cd603b66eb56 gcc/testsuite/gfortran.dg/char_pointer_dependency.f90
--- 58428,58434 ----
7552d7512b3e8d60918c3a81c9b7fb02 gcc/testsuite/gfortran.dg/char_pointer_assign_3.f90
96b30f56a9de104b5d79a66d116b672a gcc/testsuite/gfortran.dg/char_pointer_assign_4.f90
37eb7ba9eb77543854f7607067c520c8 gcc/testsuite/gfortran.dg/char_pointer_assign_5.f90
! 28d4409e03b02cb11c0c9a869cc23b95 gcc/testsuite/gfortran.dg/char_pointer_assign_6.f90
dd8a633154df2c14213e24aa617b08a2 gcc/testsuite/gfortran.dg/char_pointer_assign_icb_1.f90
ddf9f77e66c4a8135a264b7cc863b0b6 gcc/testsuite/gfortran.dg/char_pointer_comp_assign.f90
064ebf7ad523c69997a5cd603b66eb56 gcc/testsuite/gfortran.dg/char_pointer_dependency.f90
*************** ced365db03e0b33ad236199eb1a30741 gcc/te
*** 58172,58177 ****
--- 58445,58451 ----
a8c885ea4e0c6bc88f0ace8c9441b54c gcc/testsuite/gfortran.dg/char_result_16.f90
b04e8da3ed092a0886eb038f4181da94 gcc/testsuite/gfortran.dg/char_result_17.f90
c57ff1e13c323e08a3d7e31aaad2177d gcc/testsuite/gfortran.dg/char_result_18.f90
+ c23be0d92be5574c5c53b96a89405886 gcc/testsuite/gfortran.dg/char_result_19.f90
b9fd5c26379f980be6e5d0375d100c1d gcc/testsuite/gfortran.dg/char_result_2.f90
7b4ed16894be70d364eb086487f8813f gcc/testsuite/gfortran.dg/char_result_3.f90
cf6f60622f81de4bec4a3308815ca361 gcc/testsuite/gfortran.dg/char_result_4.f90
*************** a9d96fe47ff920da6b8376da1113bd80 gcc/te
*** 58180,58185 ****
--- 58454,58460 ----
8028b8274946e7feb9f3d4850e17af3f gcc/testsuite/gfortran.dg/char_result_7.f90
b0dc2d0a6ea7474b02cb85a70b3ad102 gcc/testsuite/gfortran.dg/char_result_8.f90
5093ae73a32a476b807d4a5128b4ed80 gcc/testsuite/gfortran.dg/char_result_9.f90
+ 1ced3da36308e54e5d306659bf14b653 gcc/testsuite/gfortran.dg/char_result_mod_19.f90
053c33c2d1200e52cbe9a4ae1b95d7c3 gcc/testsuite/gfortran.dg/char_spread_1.f90
4506436296784a8aec337002f8009e99 gcc/testsuite/gfortran.dg/char_transpose_1.f90
b63e59c90ea7e532d83d3417eab591c7 gcc/testsuite/gfortran.dg/char_type_len.f90
*************** a8f104492778b738ac5730dd1605432a gcc/te
*** 58286,58291 ****
--- 58561,58567 ----
3a4ce235430911afb3b8ccffffda2a7c gcc/testsuite/gfortran.dg/class_69.f90
cc0c048415b8d0593fe7e5b164763dc7 gcc/testsuite/gfortran.dg/class_7.f03
cd9759177f83fe4b6a6a007850b05c80 gcc/testsuite/gfortran.dg/class_70.f03
+ 77eb9432daba5a35f6be287dfec77ae3 gcc/testsuite/gfortran.dg/class_71.f90
765b5ae237d318aee8909def266c457e gcc/testsuite/gfortran.dg/class_8.f03
6ad3d2ed9f82c5534e18375c93ce8c03 gcc/testsuite/gfortran.dg/class_9.f03
eff35de84f2c16f8b8abcbc407237414 gcc/testsuite/gfortran.dg/class_alias.f90
*************** a8535ad2a515ec0df0ef730df6f14831 gcc/te
*** 58377,58382 ****
--- 58653,58659 ----
5458460c74c7764eb6fc6ca41f3520cb gcc/testsuite/gfortran.dg/coarray/codimension_2.f90
9604ece34279ee35811c44344503ca51 gcc/testsuite/gfortran.dg/coarray/codimension_2a.f90
c2fcd3c1508ec38085828e5481ea280c gcc/testsuite/gfortran.dg/coarray/codimension_2b.f90
+ 138b64ab66402dec923a5ed290f9cddc gcc/testsuite/gfortran.dg/coarray/codimension_3.f90
ee39ad592286c583f1d1379691059313 gcc/testsuite/gfortran.dg/coarray/coindexed_1.f90
f3a5dbd5b18b49f30a47e9c6ddf0ef10 gcc/testsuite/gfortran.dg/coarray/collectives_1.f90
57d5669b2d7c4384f4f2cbf7f42c55e5 gcc/testsuite/gfortran.dg/coarray/collectives_2.f90
*************** b696b6e95eca1076292ae33fb0521a93 gcc/te
*** 58817,58823 ****
ba7bd70d8f9beaa28febfa1d800b3cf7 gcc/testsuite/gfortran.dg/dec_structure_9.f90
cad42db351ade11e383560c34e3e978b gcc/testsuite/gfortran.dg/dec_type_print.f90
70aa90e6c44f5fa5d84842c62c6aa714 gcc/testsuite/gfortran.dg/dec_type_print_2.f03
! 4bd9c9737b4b51cd88faa2c6ce42ec6a gcc/testsuite/gfortran.dg/dec_type_print_3.f90
8336562dd939d9f2e4d7fa9f352ebdd5 gcc/testsuite/gfortran.dg/dec_union_1.f90
54fa8897424354fe36b1147275b1b014 gcc/testsuite/gfortran.dg/dec_union_10.f90
10c14f289f146d801c8860e6ec73a8f8 gcc/testsuite/gfortran.dg/dec_union_11.f90
--- 59094,59100 ----
ba7bd70d8f9beaa28febfa1d800b3cf7 gcc/testsuite/gfortran.dg/dec_structure_9.f90
cad42db351ade11e383560c34e3e978b gcc/testsuite/gfortran.dg/dec_type_print.f90
70aa90e6c44f5fa5d84842c62c6aa714 gcc/testsuite/gfortran.dg/dec_type_print_2.f03
! 704b6257a5f0e068ecee3e641a786fd3 gcc/testsuite/gfortran.dg/dec_type_print_3.f90
8336562dd939d9f2e4d7fa9f352ebdd5 gcc/testsuite/gfortran.dg/dec_union_1.f90
54fa8897424354fe36b1147275b1b014 gcc/testsuite/gfortran.dg/dec_union_10.f90
10c14f289f146d801c8860e6ec73a8f8 gcc/testsuite/gfortran.dg/dec_union_11.f90
*************** c872e70a9a84a69ae4b0be8d441bd75e gcc/te
*** 58871,58876 ****
--- 59148,59154 ----
f405c538ee221b34e2094a843f78c12a gcc/testsuite/gfortran.dg/deferred_character_32.f90
5f82ae5d302549ef737253722a910e61 gcc/testsuite/gfortran.dg/deferred_character_33.f90
c8ca7a67e0b9c502e7883c6187a3b1f3 gcc/testsuite/gfortran.dg/deferred_character_33a.f90
+ 78fa09124fe9b69cd259177c36a08282 gcc/testsuite/gfortran.dg/deferred_character_34.f90
5eede6c791f6d272034f9b84850ac6af gcc/testsuite/gfortran.dg/deferred_character_4.f90
981b809300de368e8fac65be4b40099c gcc/testsuite/gfortran.dg/deferred_character_5.f90
b8df78111bec4d4d4b97da6a15228361 gcc/testsuite/gfortran.dg/deferred_character_6.f90
*************** b708a831578a6c876ea16b95695f6103 gcc/te
*** 58953,58958 ****
--- 59231,59237 ----
e3dcdcb7fb8e68b8ccf780af3eb56518 gcc/testsuite/gfortran.dg/dependency_51.f90
883c7703c879981b223e943c9fdf9b18 gcc/testsuite/gfortran.dg/dependency_52.f90
4e12ffe31088cb1a780ebbce0ec059ef gcc/testsuite/gfortran.dg/dependency_53.f90
+ 22ceceb7b00db9dc4208078543dcb9e7 gcc/testsuite/gfortran.dg/dependency_56.f90
03218919538313b26e09fa1b8f0efda0 gcc/testsuite/gfortran.dg/dependency_6.f90
699f1378f5c1fcdc54eb21fdb4a59be1 gcc/testsuite/gfortran.dg/dependency_7.f90
89a3206dfabae1e31ea62ec7fa264ee6 gcc/testsuite/gfortran.dg/dependency_8.f90
*************** ac4ba6f5f598f2a50f552c87ef9cddca gcc/te
*** 59033,59039 ****
962a196487d7432027c72bcf5a27c447 gcc/testsuite/gfortran.dg/directive_unroll_2.f90
443d2ce00f080507f110c8f0d9908009 gcc/testsuite/gfortran.dg/directive_unroll_3.f90
2a7df85d6760265f24aa5fdcd9dba5b2 gcc/testsuite/gfortran.dg/directive_unroll_4.f90
! df0a3db0f5b87c7a64ef9bebbf3723af gcc/testsuite/gfortran.dg/directive_unroll_5.f90
62804b9931608efbe7f6506d1b679e64 gcc/testsuite/gfortran.dg/do_1.f90
b59a9e83027833130c5ee12a722d5ab6 gcc/testsuite/gfortran.dg/do_2.f90
527f706ecad7d9a9178b8e5fb63caac9 gcc/testsuite/gfortran.dg/do_3.F90
--- 59312,59318 ----
962a196487d7432027c72bcf5a27c447 gcc/testsuite/gfortran.dg/directive_unroll_2.f90
443d2ce00f080507f110c8f0d9908009 gcc/testsuite/gfortran.dg/directive_unroll_3.f90
2a7df85d6760265f24aa5fdcd9dba5b2 gcc/testsuite/gfortran.dg/directive_unroll_4.f90
! 460a0e1e07ba2992c53257fd2e78e83e gcc/testsuite/gfortran.dg/directive_unroll_5.f90
62804b9931608efbe7f6506d1b679e64 gcc/testsuite/gfortran.dg/do_1.f90
b59a9e83027833130c5ee12a722d5ab6 gcc/testsuite/gfortran.dg/do_2.f90
527f706ecad7d9a9178b8e5fb63caac9 gcc/testsuite/gfortran.dg/do_3.F90
*************** cc944e9209313a0d97bd7bed7198665c gcc/te
*** 59062,59067 ****
--- 59341,59350 ----
7d8c65a65d2d7c5bd8b9ada9a3dd140b gcc/testsuite/gfortran.dg/do_pointer_1.f90
8458b67d26bd265665097f2319d6e2f1 gcc/testsuite/gfortran.dg/do_subscript_1.f90
d37e7d4d6baf021e73df70552ca853bf gcc/testsuite/gfortran.dg/do_subscript_2.f90
+ 40946126fa175aeab63bea1a283b4b96 gcc/testsuite/gfortran.dg/do_subscript_3.f90
+ f08c46fcdc9c46cedf2236a4d87d0465 gcc/testsuite/gfortran.dg/do_subscript_4.f90
+ 554ac42462f9f2205e5a0ddfebcdc939 gcc/testsuite/gfortran.dg/do_subscript_5.f90
+ f4c22f8620f9cf0541b8ca7a3458969d gcc/testsuite/gfortran.dg/do_subscript_6.f90
a7c723754d10ef5541785fffb91b0578 gcc/testsuite/gfortran.dg/do_while_1.f90
23e59fcc0f241300d3822da5f55f6ab5 gcc/testsuite/gfortran.dg/dollar_edit_descriptor_1.f
eeb8d6e07dce7e2db9e441c445bdd3ac gcc/testsuite/gfortran.dg/dollar_edit_descriptor_2.f
*************** ab0027e37c53e4de2faf80a49af5c70e gcc/te
*** 59250,59255 ****
--- 59533,59539 ----
13491ddbf6de8262d5d57552a484c85e gcc/testsuite/gfortran.dg/eof_3.f90
80cd70fc61c375df2fe8a3fcac7a55a4 gcc/testsuite/gfortran.dg/eof_4.f90
0a5c2dd5647ff9c0a031479cb94312f1 gcc/testsuite/gfortran.dg/eof_5.f90
+ b11c3fe23be2c52dc0068ce168f7f903 gcc/testsuite/gfortran.dg/eof_6.f90
b2cbcfb2f5b6181bb94c3c59ec9d0da3 gcc/testsuite/gfortran.dg/eor_1.f90
aebb8d08fc0b290e576f86423f6ca59f gcc/testsuite/gfortran.dg/eor_handling_1.f90
294ba1a377b97aa6a9b5e6d2fdfefbae gcc/testsuite/gfortran.dg/eor_handling_2.f90
*************** d5c2becdf2a2a9b3476dac72cfc54877 gcc/te
*** 59334,59339 ****
--- 59618,59624 ----
400c9de8234ec3d29a78be5af6d85a84 gcc/testsuite/gfortran.dg/extends_type_of_2.f03
3485cc1f6803a287f97032484eec3440 gcc/testsuite/gfortran.dg/extends_type_of_3.f90
df764dd66e24cfa5a1af1a03b983104b gcc/testsuite/gfortran.dg/external_implicit_none.f90
+ ce177780ee2e2bc535a2720b3ea4612c gcc/testsuite/gfortran.dg/external_implicit_none_2.f90
4eca303332980555d4132fbdc52d774a gcc/testsuite/gfortran.dg/external_initializer.f90
bd779906b016bd335bbb19a449289c47 gcc/testsuite/gfortran.dg/external_procedure_4.f90
e858d42afb6c6feb41d75f84594d0e1f gcc/testsuite/gfortran.dg/external_procedures_1.f90
*************** c71397aec804c0b5ce001a1d5dbdb76e gcc/te
*** 59532,59538 ****
cbb70c4ec8b88d436fb61acf9486c6bf gcc/testsuite/gfortran.dg/function_kinds_2.f90
9d6188e05d3cc7589bb0f30729072f80 gcc/testsuite/gfortran.dg/function_kinds_3.f90
c69b86dd6284fc228eebe1af3216f600 gcc/testsuite/gfortran.dg/function_kinds_4.f90
! ee421b3a0829f99994d3021ff3a4bd48 gcc/testsuite/gfortran.dg/function_kinds_5.f90
3eb2c0453ffd85e9c0c11a2ee865f9bf gcc/testsuite/gfortran.dg/function_optimize_1.f90
0f94c426acf1539c8d60c0bbe4d7a5e4 gcc/testsuite/gfortran.dg/function_optimize_10.f90
6fed503c40eeae1f2a2cff04cc37419b gcc/testsuite/gfortran.dg/function_optimize_11.f90
--- 59817,59823 ----
cbb70c4ec8b88d436fb61acf9486c6bf gcc/testsuite/gfortran.dg/function_kinds_2.f90
9d6188e05d3cc7589bb0f30729072f80 gcc/testsuite/gfortran.dg/function_kinds_3.f90
c69b86dd6284fc228eebe1af3216f600 gcc/testsuite/gfortran.dg/function_kinds_4.f90
! e0923152a92d6d2a050d4e52180761e3 gcc/testsuite/gfortran.dg/function_kinds_5.f90
3eb2c0453ffd85e9c0c11a2ee865f9bf gcc/testsuite/gfortran.dg/function_optimize_1.f90
0f94c426acf1539c8d60c0bbe4d7a5e4 gcc/testsuite/gfortran.dg/function_optimize_10.f90
6fed503c40eeae1f2a2cff04cc37419b gcc/testsuite/gfortran.dg/function_optimize_11.f90
*************** e5c0af740e47a34c175a9ceb878b8228 gcc/te
*** 59748,59753 ****
--- 60033,60039 ----
07b9479faab492f369556d80a29d12e4 gcc/testsuite/gfortran.dg/goacc/asyncwait-3.f95
0084be36b4e094fd83e8998262213cba gcc/testsuite/gfortran.dg/goacc/asyncwait-4.f95
fe2df2ce6e9b837974ec76c54da56c62 gcc/testsuite/gfortran.dg/goacc/asyncwait-5.f
+ 0ff714bbb2fcd709c6b1bd4d6a4dad15 gcc/testsuite/gfortran.dg/goacc/atomic-1.f90
b5ce38fdd599e1809965f838521def2e gcc/testsuite/gfortran.dg/goacc/branch.f95
109a3ecc87b1bc758772cc9eeee4d842 gcc/testsuite/gfortran.dg/goacc/cache-1.f95
0770d02d65abc7014c30751880ebe628 gcc/testsuite/gfortran.dg/goacc/cache-2.f95
*************** f47a5a2e9ff497a168c9c8d63a06897c gcc/te
*** 59838,59849 ****
868181dc4df402dae3cb3e3a052089ea gcc/testsuite/gfortran.dg/goacc/pr77765.f90
e2526aa67803c2d8b8d2af2766ea2d9d gcc/testsuite/gfortran.dg/goacc/pr78027.f90
77b32efd84a7f238f0fa5166b3b2fde1 gcc/testsuite/gfortran.dg/goacc/pr84217.f90
! 98021166ee2b55420ca83360835ea78c gcc/testsuite/gfortran.dg/goacc/pr84963.f90
967e76184bab415f5ccaee3e8855e4e6 gcc/testsuite/gfortran.dg/goacc/pr85701.f90
69951fe9d02325aab83893b15f14ee22 gcc/testsuite/gfortran.dg/goacc/pr85702.f90
fff3ef606b07a0c12c2323afa6fe446d gcc/testsuite/gfortran.dg/goacc/pr85703.f90
8b11b5d3280af265110281a0a77e18f9 gcc/testsuite/gfortran.dg/goacc/pr85879.f90
1e6397cc1e2bf821ff497ca3cb5b4aa3 gcc/testsuite/gfortran.dg/goacc/pr89773.f90
a70416eb409bcd3ad178b3d0127d84e8 gcc/testsuite/gfortran.dg/goacc/private-3.f95
a63629c8c309d4d181aa7e4d163f30c1 gcc/testsuite/gfortran.dg/goacc/private-explicit-kernels-1.f95
4130cb2ad71b7a29b80b0c75c85f4c11 gcc/testsuite/gfortran.dg/goacc/private-explicit-parallel-1.f95
--- 60124,60137 ----
868181dc4df402dae3cb3e3a052089ea gcc/testsuite/gfortran.dg/goacc/pr77765.f90
e2526aa67803c2d8b8d2af2766ea2d9d gcc/testsuite/gfortran.dg/goacc/pr78027.f90
77b32efd84a7f238f0fa5166b3b2fde1 gcc/testsuite/gfortran.dg/goacc/pr84217.f90
! 1a37f54ea403d36fae4f50d189f5369b gcc/testsuite/gfortran.dg/goacc/pr84963.f90
967e76184bab415f5ccaee3e8855e4e6 gcc/testsuite/gfortran.dg/goacc/pr85701.f90
69951fe9d02325aab83893b15f14ee22 gcc/testsuite/gfortran.dg/goacc/pr85702.f90
fff3ef606b07a0c12c2323afa6fe446d gcc/testsuite/gfortran.dg/goacc/pr85703.f90
8b11b5d3280af265110281a0a77e18f9 gcc/testsuite/gfortran.dg/goacc/pr85879.f90
1e6397cc1e2bf821ff497ca3cb5b4aa3 gcc/testsuite/gfortran.dg/goacc/pr89773.f90
+ a2ead21242a28e48fc0d90b3af1c1ff7 gcc/testsuite/gfortran.dg/goacc/pr93329.f90
+ f456cdcfbddab6f8bef5a32a8ae942c7 gcc/testsuite/gfortran.dg/goacc/pr93463.f90
a70416eb409bcd3ad178b3d0127d84e8 gcc/testsuite/gfortran.dg/goacc/private-3.f95
a63629c8c309d4d181aa7e4d163f30c1 gcc/testsuite/gfortran.dg/goacc/private-explicit-kernels-1.f95
4130cb2ad71b7a29b80b0c75c85f4c11 gcc/testsuite/gfortran.dg/goacc/private-explicit-parallel-1.f95
*************** abcf243d41ab312c5b8bd135bf736ce3 gcc/te
*** 60057,60067 ****
--- 60345,60358 ----
28b8381f9a6407f3fbdf2a45fe796f66 gcc/testsuite/gfortran.dg/gomp/pr84116.f90
900e29bb957f49d5b8cee27818655396 gcc/testsuite/gfortran.dg/gomp/pr85313.f90
793bc6a890f694516d4634a933a5cb43 gcc/testsuite/gfortran.dg/gomp/pr85703.f90
+ a05658043d2f44626cadb5dc7a817898 gcc/testsuite/gfortran.dg/gomp/pr87752.f90
474faa53ddfedb432c4594b4df78d3f3 gcc/testsuite/gfortran.dg/gomp/pr88377.f90
930610eb3bad9c5b13c011e2a0c6a0d6 gcc/testsuite/gfortran.dg/gomp/pr88933.f90
c2c9b1a1db79eedb25331d3565231b66 gcc/testsuite/gfortran.dg/gomp/pr89027.f90
5ec5bffb9591a9ffd391899e3384e8c4 gcc/testsuite/gfortran.dg/gomp/pr89621.f90
6399dd6d481972c65426ae5a0fe674a2 gcc/testsuite/gfortran.dg/gomp/pr89651.f90
+ 1365d33484c21cf6b603f60889b019a4 gcc/testsuite/gfortran.dg/gomp/pr92977.f90
+ 6db6e7072dccd0be789b6dc9bd2a586c gcc/testsuite/gfortran.dg/gomp/pr93555.f90
b4be3f9de7631846875a711ae9b67293 gcc/testsuite/gfortran.dg/gomp/proc_ptr_1.f90
87885556568e657ef4c936c53e1c7305 gcc/testsuite/gfortran.dg/gomp/proc_ptr_2.f90
59e444df8ec8f5ea9859b5aef4d75865 gcc/testsuite/gfortran.dg/gomp/reduction1.f90
*************** c525cee40cfdc1d7f1dda5cf299fdde9 gcc/te
*** 60074,60082 ****
--- 60365,60375 ----
bb19e54aafc9016401c4797e4cb0d75d gcc/testsuite/gfortran.dg/gomp/sharing-2.f90
31d6e090f7c514b28f2656086d853df7 gcc/testsuite/gfortran.dg/gomp/sharing-3.f90
b3d1280c39c6cae9dddab498b1e1eeb4 gcc/testsuite/gfortran.dg/gomp/sharing-4.f90
+ 3c3ee23796192e475b1597bfe4ae9d72 gcc/testsuite/gfortran.dg/gomp/target-parallel1.f90
919bd1d4b3eea35828ead5f8cf204a98 gcc/testsuite/gfortran.dg/gomp/target1.f90
b75e4a6eaec211becf176c75768a3f3d gcc/testsuite/gfortran.dg/gomp/target2.f90
4a93baff2b168f10d86571d18de637ba gcc/testsuite/gfortran.dg/gomp/target3.f90
+ 888ee0ad8cb0065ba4e9fcce8bb7a890 gcc/testsuite/gfortran.dg/gomp/teams1.f90
86f899863718848e682593290355e6c1 gcc/testsuite/gfortran.dg/gomp/udr1.f90
2aa1076458fe27767e8682a018266e21 gcc/testsuite/gfortran.dg/gomp/udr2.f90
6ddb9641f92715d3a3298771fab84b43 gcc/testsuite/gfortran.dg/gomp/udr3.f90
*************** ccb1954a8e334f76679180ff6418e93d gcc/te
*** 60195,60200 ****
--- 60488,60494 ----
3503a9cbe64cf76d3600eb2c05657d98 gcc/testsuite/gfortran.dg/graphite/pr83963.f
dbffb0fef9d29324958740fabb2c1064 gcc/testsuite/gfortran.dg/graphite/pr84223.f90
026dc6f7d7072506f4a22a8b02c25c86 gcc/testsuite/gfortran.dg/graphite/pr89182.f90
+ 6c765eab5596feb5ef6623e8bbb8ef28 gcc/testsuite/gfortran.dg/graphite/pr93439.f90
2e6f76f3cd539870b471dce2c8e14179 gcc/testsuite/gfortran.dg/graphite/run-id-1.f
c5a256733781be2dc88ea518b8758391 gcc/testsuite/gfortran.dg/graphite/run-id-2.f90
6c187a54a92f49b5734ee67b739b6e74 gcc/testsuite/gfortran.dg/graphite/run-id-3.f90
*************** f6acaa4a3e082cac8858ca2288026cca gcc/te
*** 60448,60459 ****
--- 60742,60755 ----
46f60ab100688980f23ade8d2b3425f7 gcc/testsuite/gfortran.dg/inquire_9.f90
73d16ea8dadfff89fdb962be9c5810ab gcc/testsuite/gfortran.dg/inquire_internal.f90
1724a18e756515a495e846a6b7144795 gcc/testsuite/gfortran.dg/inquire_iolength.f90
+ a34d48eea1d8d4734b2f4fd739f354fc gcc/testsuite/gfortran.dg/inquire_pre.f90
3d02595b1c37f4acb0f0bb9b0db2fba3 gcc/testsuite/gfortran.dg/inquire_recl_f2018.f90
7664349957b7d6787138b3fd95966ad9 gcc/testsuite/gfortran.dg/inquire_size.f90
e5fa8c50769e7fcce10ed8a450b95bed gcc/testsuite/gfortran.dg/inquiry_type_ref_1.f08
47ca9f23756259e27215f6bb354820db gcc/testsuite/gfortran.dg/inquiry_type_ref_2.f90
85efcb0b44b1fc0dbc9bb8062a08ce58 gcc/testsuite/gfortran.dg/inquiry_type_ref_3.f90
962d8a92334a686213a7137fec487e5c gcc/testsuite/gfortran.dg/inquiry_type_ref_4.f90
+ 5bcc839204ebb7bdda5b2971ec2fa18a gcc/testsuite/gfortran.dg/inquiry_type_ref_5.f90
7b3179321b390998d95ad39afea45624 gcc/testsuite/gfortran.dg/int_1.f90
237886a0b756c8b89a124de63f69aefc gcc/testsuite/gfortran.dg/int_2.f90
1c33ddb023260200cdcf3434b09db9b0 gcc/testsuite/gfortran.dg/int_3.f90
*************** f2ea8cac46240547e280d6a47be8828d gcc/te
*** 60870,60875 ****
--- 61166,61172 ----
3b6165e40be92d1322c9e7feb5c90f0e gcc/testsuite/gfortran.dg/matmul_9.f90
368ecceacb36bc8031de56fda6503830 gcc/testsuite/gfortran.dg/matmul_argument_types.f90
6a883e202e2a5a1a5860d1565dec8edf gcc/testsuite/gfortran.dg/matmul_blas_1.f
+ 862897f6121e8bc995b9373ab8e7d097 gcc/testsuite/gfortran.dg/matmul_blas_2.f90
6ed82ab65a659c5528ba6467505d80bd gcc/testsuite/gfortran.dg/matmul_bounds_1.f90
558e4b3b400485cd87bcbf000d42d188 gcc/testsuite/gfortran.dg/matmul_bounds_10.f90
4d7f2fcf253e75af46fd09c44b1cd2ee gcc/testsuite/gfortran.dg/matmul_bounds_11.f90
*************** f67cfd0ae4d38f1ca5dc8d7f6e954087 gcc/te
*** 61354,61360 ****
68b10a194ff6797eee8ecb042129b08f gcc/testsuite/gfortran.dg/pdt_29.f03
467e7b0f7ffea3a05b9ac591c2ac05ee gcc/testsuite/gfortran.dg/pdt_3.f03
1f42496cb72089bef450a6df6a13c299 gcc/testsuite/gfortran.dg/pdt_30.f90
! b01b9ceba6ffee67e956395356b126b5 gcc/testsuite/gfortran.dg/pdt_4.f03
c5c92af1413fa2462f388d2ff5077773 gcc/testsuite/gfortran.dg/pdt_5.f03
65d2ad728417ad3174fc1ce2b51a458d gcc/testsuite/gfortran.dg/pdt_6.f03
d2c9dae0c6e2385c5712aba8e12a70ba gcc/testsuite/gfortran.dg/pdt_7.f03
--- 61651,61657 ----
68b10a194ff6797eee8ecb042129b08f gcc/testsuite/gfortran.dg/pdt_29.f03
467e7b0f7ffea3a05b9ac591c2ac05ee gcc/testsuite/gfortran.dg/pdt_3.f03
1f42496cb72089bef450a6df6a13c299 gcc/testsuite/gfortran.dg/pdt_30.f90
! 17fa57111f7b9c176c9f9fdf95c974cf gcc/testsuite/gfortran.dg/pdt_4.f03
c5c92af1413fa2462f388d2ff5077773 gcc/testsuite/gfortran.dg/pdt_5.f03
65d2ad728417ad3174fc1ce2b51a458d gcc/testsuite/gfortran.dg/pdt_6.f03
d2c9dae0c6e2385c5712aba8e12a70ba gcc/testsuite/gfortran.dg/pdt_7.f03
*************** bd3571f835db5f5cd3f13d46f65eaf7d gcc/te
*** 61610,61615 ****
--- 61907,61914 ----
3446ad679d644b2617b8836226b9d724 gcc/testsuite/gfortran.dg/pr46945.f90
2dbd0baf5cc71bd396aa0b27c82b3aa6 gcc/testsuite/gfortran.dg/pr46985.f90
cca539dda55db1fe3d9ab628330a364e gcc/testsuite/gfortran.dg/pr47008.f03
+ 8dc00e13e8017aa32673c1673ad9bb9b gcc/testsuite/gfortran.dg/pr47054_1.f90
+ dbb1bf91a8856be53abe8cd67ff0f627 gcc/testsuite/gfortran.dg/pr47054_2.f90
18cfa159030f8b4b160fe0d8e9420c68 gcc/testsuite/gfortran.dg/pr47574.f90
0280bd4bfb5b153f438a9cfd70e3cd82 gcc/testsuite/gfortran.dg/pr47614.f
9ff6a3335f233c3bfe3926ceefc544b9 gcc/testsuite/gfortran.dg/pr47757-1.f90
*************** b9749045f7e8d01ce770bef143077398 gcc/te
*** 61763,61768 ****
--- 62062,62069 ----
4dfe5b03dbae8d8845caac4e7f7c0a89 gcc/testsuite/gfortran.dg/pr69155.f90
ed38cfd514aa0a70b18745aff4616ca3 gcc/testsuite/gfortran.dg/pr69395.f90
1f55c100864bc4cf6e4a0f59988d3578 gcc/testsuite/gfortran.dg/pr69398.f90
+ 76138edfc2f50c95b9776fd1ddbf7633 gcc/testsuite/gfortran.dg/pr69455_1.f90
+ 4888552ee29a6b2e46e1b22d0f8a8483 gcc/testsuite/gfortran.dg/pr69455_2.f90
39a58b86266ffa82ee6ef911ebf3cb11 gcc/testsuite/gfortran.dg/pr69497.f90
b4bcabad8cbf6ed6353970399e848979 gcc/testsuite/gfortran.dg/pr69499.f90
96518037a7c5060a69f1bee697816618 gcc/testsuite/gfortran.dg/pr69514_1.f90
*************** e3df725d919fbea72dd53c26d3c3fc1b gcc/te
*** 61780,61786 ****
9e9bc408643c6665aef0267621e54b9e gcc/testsuite/gfortran.dg/pr70330.f90
aa6073708fcde459f6b44a5e294fd6b0 gcc/testsuite/gfortran.dg/pr70409.f90
2761c4711c65ea8a97d2345710e8bf1e gcc/testsuite/gfortran.dg/pr70673.f90
! b476378eb8250b54f4b3b5f63d128940 gcc/testsuite/gfortran.dg/pr70754.f90
386c85829c4e2571e0db7949c25f5113 gcc/testsuite/gfortran.dg/pr70870_1.f90
0e424f05f2fdeb786b877ace2617112d gcc/testsuite/gfortran.dg/pr70931.f90
768e159c79aa0aa1e1ae6e13122ed1b2 gcc/testsuite/gfortran.dg/pr70937.f90
--- 62081,62087 ----
9e9bc408643c6665aef0267621e54b9e gcc/testsuite/gfortran.dg/pr70330.f90
aa6073708fcde459f6b44a5e294fd6b0 gcc/testsuite/gfortran.dg/pr70409.f90
2761c4711c65ea8a97d2345710e8bf1e gcc/testsuite/gfortran.dg/pr70673.f90
! 858edd0f297501435fdd3e07e065201c gcc/testsuite/gfortran.dg/pr70754.f90
386c85829c4e2571e0db7949c25f5113 gcc/testsuite/gfortran.dg/pr70870_1.f90
0e424f05f2fdeb786b877ace2617112d gcc/testsuite/gfortran.dg/pr70931.f90
768e159c79aa0aa1e1ae6e13122ed1b2 gcc/testsuite/gfortran.dg/pr70937.f90
*************** f0bf2e9015ba3f518919bfadd773f284 gcc/te
*** 61796,61802 ****
346aef7b9c4b69444314886e127bf700 gcc/testsuite/gfortran.dg/pr71523_2.f90
e8e59f069c4b37c57b85939b49c5f51d gcc/testsuite/gfortran.dg/pr71526.f90
7ba418a27a13483d7dc03ce4a2d4328f gcc/testsuite/gfortran.dg/pr71642.f90
! 0cc1ff0cd700d2363a2db1360345b7db gcc/testsuite/gfortran.dg/pr71649.f90
dffe49f90e191f0e0d1a1c6f8d53f854 gcc/testsuite/gfortran.dg/pr71688.f90
1aa045033f7cb52ec480e9dcc3daf999 gcc/testsuite/gfortran.dg/pr71730.f90
b310ef8caef5ed95412a60d1546be16a gcc/testsuite/gfortran.dg/pr71764.f90
--- 62097,62103 ----
346aef7b9c4b69444314886e127bf700 gcc/testsuite/gfortran.dg/pr71523_2.f90
e8e59f069c4b37c57b85939b49c5f51d gcc/testsuite/gfortran.dg/pr71526.f90
7ba418a27a13483d7dc03ce4a2d4328f gcc/testsuite/gfortran.dg/pr71642.f90
! e43018d3cb0e5cb6a1f0234e0cfdce65 gcc/testsuite/gfortran.dg/pr71649.f90
dffe49f90e191f0e0d1a1c6f8d53f854 gcc/testsuite/gfortran.dg/pr71688.f90
1aa045033f7cb52ec480e9dcc3daf999 gcc/testsuite/gfortran.dg/pr71730.f90
b310ef8caef5ed95412a60d1546be16a gcc/testsuite/gfortran.dg/pr71764.f90
*************** ea6f420ce4d3bbc8e6c948a8f185ace7 gcc/te
*** 61808,61814 ****
e621f9143e37cc56334096cf3c636382 gcc/testsuite/gfortran.dg/pr71935.f90
66a69fa3f665ad36d8275af5ac99b1ae gcc/testsuite/gfortran.dg/pr77260_1.f90
7262366d4c0e8a739b1ce3e990334144 gcc/testsuite/gfortran.dg/pr77260_2.f90
! ab680d2f6cc0648921a054114a485973 gcc/testsuite/gfortran.dg/pr77351.f90
0e6eddcfc83690ffde7c6675dbaf7f56 gcc/testsuite/gfortran.dg/pr77380.f90
c80f60155bcb84d08e36147df56ee2a7 gcc/testsuite/gfortran.dg/pr77391.f90
98fa011f3b9cb0fda809c579d18e2aff gcc/testsuite/gfortran.dg/pr77406.f90
--- 62109,62115 ----
e621f9143e37cc56334096cf3c636382 gcc/testsuite/gfortran.dg/pr71935.f90
66a69fa3f665ad36d8275af5ac99b1ae gcc/testsuite/gfortran.dg/pr77260_1.f90
7262366d4c0e8a739b1ce3e990334144 gcc/testsuite/gfortran.dg/pr77260_2.f90
! d676dbff55fa3a1bfc2c5c723ab4b0e6 gcc/testsuite/gfortran.dg/pr77351.f90
0e6eddcfc83690ffde7c6675dbaf7f56 gcc/testsuite/gfortran.dg/pr77380.f90
c80f60155bcb84d08e36147df56ee2a7 gcc/testsuite/gfortran.dg/pr77391.f90
98fa011f3b9cb0fda809c579d18e2aff gcc/testsuite/gfortran.dg/pr77406.f90
*************** fadb08b8fc33159559b83dbbbb0cff19 gcc/te
*** 61843,61848 ****
--- 62144,62153 ----
c8893a59741e05d503a560b19c9684a9 gcc/testsuite/gfortran.dg/pr78297.f90
8bc71c8feb7f2720b1feb28cba0c975e gcc/testsuite/gfortran.dg/pr78571.f90
b0372de9ab64f58fe8095fafb7257fab gcc/testsuite/gfortran.dg/pr78619.f90
+ e33bc7d617dedd30516f7c6f5c5335a7 gcc/testsuite/gfortran.dg/pr78719_1.f90
+ 4e6d2b5a90b6b8115524681e46087853 gcc/testsuite/gfortran.dg/pr78719_2.f90
+ f166fdd0a6158ee4997aa03d50735f03 gcc/testsuite/gfortran.dg/pr78719_3.f90
+ 5f78649f9610903a91712298193f1ab3 gcc/testsuite/gfortran.dg/pr78739.f90
5b2aa5e5d8aa97b69f0cc98bc9709f3f gcc/testsuite/gfortran.dg/pr78741.f90
18ef55c7791c30ff0793ca246df65036 gcc/testsuite/gfortran.dg/pr78758.f90
ee35970003b8954b57c5ce45c7fd506c gcc/testsuite/gfortran.dg/pr79315.f90
*************** bf416564a457b9444387855732e4d265 gcc/te
*** 61889,61895 ****
3daad136d0cfc95d8964dc923c7cc4ac gcc/testsuite/gfortran.dg/pr85521_1.f90
bd361a07290488b6483c3d2cbc61c2dd gcc/testsuite/gfortran.dg/pr85521_2.f90
8a38dba72563cd634a47718362876075 gcc/testsuite/gfortran.dg/pr85542.f90
! e5468da2525b5c88fb154b0609572950 gcc/testsuite/gfortran.dg/pr85543.f90
1bc0d862fdec041bd3263385555b08c2 gcc/testsuite/gfortran.dg/pr85687.f90
7015fea37cfa3077dcf663f014a04889 gcc/testsuite/gfortran.dg/pr85779_1.f90
cf956ba7ea568a1ec1e49d5d32949c70 gcc/testsuite/gfortran.dg/pr85779_2.f90
--- 62194,62200 ----
3daad136d0cfc95d8964dc923c7cc4ac gcc/testsuite/gfortran.dg/pr85521_1.f90
bd361a07290488b6483c3d2cbc61c2dd gcc/testsuite/gfortran.dg/pr85521_2.f90
8a38dba72563cd634a47718362876075 gcc/testsuite/gfortran.dg/pr85542.f90
! b85cfd294e061b2ee8d25c44b7c4e1b5 gcc/testsuite/gfortran.dg/pr85543.f90
1bc0d862fdec041bd3263385555b08c2 gcc/testsuite/gfortran.dg/pr85687.f90
7015fea37cfa3077dcf663f014a04889 gcc/testsuite/gfortran.dg/pr85779_1.f90
cf956ba7ea568a1ec1e49d5d32949c70 gcc/testsuite/gfortran.dg/pr85779_2.f90
*************** d8214bedb5ecef9053ef86971d5501cc gcc/te
*** 61920,61931 ****
--- 62225,62239 ----
aa095a787c42cdeb4d2b7777cbeccfe3 gcc/testsuite/gfortran.dg/pr87922.f90
f8e6352c1c80659a4023e56075d6f1cc gcc/testsuite/gfortran.dg/pr87945_1.f90
b37e2980deb28560322fe1668580dd8c gcc/testsuite/gfortran.dg/pr87945_2.f90
+ 48fd45c2154312b459b658b1686dd7d6 gcc/testsuite/gfortran.dg/pr87991.f90
b64e61e88b486cf88558e16bb151917f gcc/testsuite/gfortran.dg/pr87992.f90
+ a9e192b49dbc72e5972a1e60f82ee433 gcc/testsuite/gfortran.dg/pr87993.f90
c842772198f401b528cb6ac0f65c4b5b gcc/testsuite/gfortran.dg/pr87994_1.f90
1bbd8f79e620f6dc8314f507372e92b1 gcc/testsuite/gfortran.dg/pr87994_2.f90
3a118bb4cf0e05ac1d34bf3d8b7a9364 gcc/testsuite/gfortran.dg/pr87994_3.f90
c1733abbc24e42e42fd2d6ae738e6faf gcc/testsuite/gfortran.dg/pr88025.f90
87738ead717ba536de4c455534af755e gcc/testsuite/gfortran.dg/pr88048.f90
+ 299cd4b3cd8f981657d37f9d6063d080 gcc/testsuite/gfortran.dg/pr88072.f90
f2f69037301e6e901e6d032542873c68 gcc/testsuite/gfortran.dg/pr88116_1.f90
99c41c8c4fc876568fd7e4f16f44a112 gcc/testsuite/gfortran.dg/pr88116_2.f90
be2e4039f25dfb8ddb1d209b44b9ca1a gcc/testsuite/gfortran.dg/pr88138.f90
*************** eb191e16157f03cba56fb00422bb2852 gcc/te
*** 61959,61971 ****
--- 62267,62323 ----
2726f9a132f249a727072d95e5f0aee3 gcc/testsuite/gfortran.dg/pr89344.f90
a93655d239d2dec9eca10adffc8e918f gcc/testsuite/gfortran.dg/pr89451.f90
3d3ae675ea53199229afe3e1ab0a247a gcc/testsuite/gfortran.dg/pr89492.f90
+ 4c00d675221b8e119618fd174077c605 gcc/testsuite/gfortran.dg/pr89647.f90
7ebf7d753067f8fb33a012241af298a7 gcc/testsuite/gfortran.dg/pr89664.f90
+ 51110a6eedd6a04c8d24b1221f417a4c gcc/testsuite/gfortran.dg/pr89943_1.f90
+ c8b61ebc8563f334c25fcd70c0534f36 gcc/testsuite/gfortran.dg/pr89943_2.f90
+ 06b2d802f5d95257d8ae61d2b9c466d0 gcc/testsuite/gfortran.dg/pr89943_3.f90
+ 76252e955978550643d5d0dc6f7e78e4 gcc/testsuite/gfortran.dg/pr89943_4.f90
831d5fcec1de1ef5c5b043098058d7a8 gcc/testsuite/gfortran.dg/pr89956.f90
f93d3cf614a3e39cf100823554d1a638 gcc/testsuite/gfortran.dg/pr90002.f90
b4b80d372198c955d7e61bb3acdc89e1 gcc/testsuite/gfortran.dg/pr90021.f90
6c40c2e9bce5a1732ce75fa94fa42515 gcc/testsuite/gfortran.dg/pr90290.f90
5fea94bd1571f0284dfaf40f44bde552 gcc/testsuite/gfortran.dg/pr90385.f90
207365a12aa2fd4f78dfbc9891548a86 gcc/testsuite/gfortran.dg/pr91296.f90
+ 6900ccfee5c1eaa6333cce805d488872 gcc/testsuite/gfortran.dg/pr91359_1.f
+ 11df5996d57dc7b34e5ec2b29cc87614 gcc/testsuite/gfortran.dg/pr91359_2.f
+ 0773165cac6e0831c64c249518bf6e30 gcc/testsuite/gfortran.dg/pr91471.f90
+ ad69ec1f0e04791258649d3ead95a16c gcc/testsuite/gfortran.dg/pr91485.f90
+ a06dfc186abc7953f44927364980bc00 gcc/testsuite/gfortran.dg/pr91496.f90
+ 2a61a5fbe2a82741dc8be0096e201d09 gcc/testsuite/gfortran.dg/pr91552.f90
+ 799c912a2c22ba463e19cf37460d25da gcc/testsuite/gfortran.dg/pr91553.f90
+ 3fa58646b12fa9300bbdda1471d128d5 gcc/testsuite/gfortran.dg/pr91564.f90
+ d708ca79d3f7beddb1b0e1ac5d3c7e40 gcc/testsuite/gfortran.dg/pr91565.f90
+ d4c100fd2b0ed3d378cc9208f0f15ec7 gcc/testsuite/gfortran.dg/pr91566.f90
+ 76098f4ddb845c9b71d0d0096840eb33 gcc/testsuite/gfortran.dg/pr91568.f
+ 13a9fca597163bc4551b10a7afedc575 gcc/testsuite/gfortran.dg/pr91587.f90
+ a958399f4783bcc65026df1b9158c7c3 gcc/testsuite/gfortran.dg/pr91589.f90
+ eaab35f4ed45749ea1a7b76b0b145fea gcc/testsuite/gfortran.dg/pr91641.f90
+ 5fdbfa1fb8868061a5c36fea3e74829c gcc/testsuite/gfortran.dg/pr91642.f90
+ 5971533db5401692d71e4a03b8eff8e6 gcc/testsuite/gfortran.dg/pr91649.f90
+ 369d7228ab7b3ad77b432a7dc6979f04 gcc/testsuite/gfortran.dg/pr91660_1.f90
+ 5af600dd01897e512804e99050dc44dc gcc/testsuite/gfortran.dg/pr91660_2.f90
+ 6f5531c53b400c1e1a3a8b34306f95ee gcc/testsuite/gfortran.dg/pr91714.f90
+ badcae969288e8ec6f2806836897bd05 gcc/testsuite/gfortran.dg/pr91715.f90
+ fc3c98984c121218a329dcbf8cc34569 gcc/testsuite/gfortran.dg/pr91727.f90
+ 006a7b298fa54253f86a0ff8cead4333 gcc/testsuite/gfortran.dg/pr91785.f90
+ 4f2af6b7579556ae683594ebf0c99e65 gcc/testsuite/gfortran.dg/pr91801.f90
+ a50919bcdb1d810ce2f68bd6b22ee53b gcc/testsuite/gfortran.dg/pr91802.f90
+ 3f85d9e4e647aefd279442e5e5868317 gcc/testsuite/gfortran.dg/pr91864.f90
+ 01ee8e553f7a64b04b3a06e2716e084d gcc/testsuite/gfortran.dg/pr91942.f90
+ cd47c5f771e296971301643af5583dfa gcc/testsuite/gfortran.dg/pr92050.f90
+ 9e6b24c3fb5c77a7500ceae8f3990258 gcc/testsuite/gfortran.dg/pr92208.f90
+ 8623fdd6c6daabe9a4f011dbfe739aa7 gcc/testsuite/gfortran.dg/pr92277.f90
+ 7383008a151433faa521410955d94a9f gcc/testsuite/gfortran.dg/pr92629.f90
+ 4f42dad4b149f18ca843630273713f7d gcc/testsuite/gfortran.dg/pr92781.f90
+ 07f97b5c9035f22956d8de6d516ad835 gcc/testsuite/gfortran.dg/pr92897.f90
+ 6c549fe6e961f7c6efa0d1c7fc21996f gcc/testsuite/gfortran.dg/pr92898.f90
+ 586be212d36e00160fa7287a5a206284 gcc/testsuite/gfortran.dg/pr93263_1.f90
+ 8ee3137f282f1f173ac8264cd48c1696 gcc/testsuite/gfortran.dg/pr93263_2.f90
+ 044a867e31d2488aef215034fa209478 gcc/testsuite/gfortran.dg/pr93580.f90
+ 5ae8cd18044c6e382e1d73b60781e2f9 gcc/testsuite/gfortran.dg/pr93714_1.f90
+ 1709f1232d61b6638bf2d8db392c7ed9 gcc/testsuite/gfortran.dg/pr93714_2.f90
+ a5b6ce00cd18edc5606fea2eada6c169 gcc/testsuite/gfortran.dg/pr93835.f08
891574fabddfbfea0c1fe4cf0cd69927 gcc/testsuite/gfortran.dg/predcom-1.f
76cb03b4659cc6b4cd2f072860817262 gcc/testsuite/gfortran.dg/predcom-2.f
d667c79ea0bad11d2e191cce083c4c1a gcc/testsuite/gfortran.dg/predict-1.f90
*************** b8220e7f001fe7f8144e570e0a24ac0e gcc/te
*** 62472,62477 ****
--- 62824,62830 ----
037694f7a50336b18699b176fea4d569 gcc/testsuite/gfortran.dg/select_type_45.f90
cd8c016f6ead596119f334940e6d58e4 gcc/testsuite/gfortran.dg/select_type_46.f90
4f15c72da02b84843e3a7ec6e64b8857 gcc/testsuite/gfortran.dg/select_type_47.f90
+ fd6ab0a5e316e2999bc498f35a3c0877 gcc/testsuite/gfortran.dg/select_type_48.f90
652809f8153234254b8b67a7efca979e gcc/testsuite/gfortran.dg/select_type_5.f03
d4874fed6108821dfa28ab998af7855a gcc/testsuite/gfortran.dg/select_type_6.f03
3acc63d3709ace8561c2455ee8125fbc gcc/testsuite/gfortran.dg/select_type_7.f03
*************** d3b8cb87c0d4560033de0eefb87ccd93 gcc/te
*** 62572,62577 ****
--- 62925,62931 ----
1d00f5b498cd877e60af5bf7a6780831 gcc/testsuite/gfortran.dg/spread_shape_1.f90
066e3aa75ad023aada1229f37bfa9c17 gcc/testsuite/gfortran.dg/spread_simplify_1.f90
4a6636fb35b05d54b152a2bb04221e10 gcc/testsuite/gfortran.dg/spread_size_limit.f90
+ c8b716cee316206a2cc9482d0e553937 gcc/testsuite/gfortran.dg/spread_size_limit_2.f90
660cebcc8ffff86cb4ccb16d81f894fb gcc/testsuite/gfortran.dg/spread_zerosize_1.f90
c261a331f783e0e77510fea0a4181472 gcc/testsuite/gfortran.dg/stat_1.f90
3fe235d1f1fd3811931f6728caac65ba gcc/testsuite/gfortran.dg/stat_2.f90
*************** ce5a21a69bff33360348e98834eb26dd gcc/te
*** 62606,62611 ****
--- 62960,62966 ----
809108ab99d66e4cd3c97f5907f5e42d gcc/testsuite/gfortran.dg/streamio_15.f90
5c471a5a2baacf7f5d3e95c36897d15f gcc/testsuite/gfortran.dg/streamio_16.f90
c6e6702db98bfd0226defb828dc129a4 gcc/testsuite/gfortran.dg/streamio_17.f90
+ 8ebdb4c891eb318f95a6a53df8df8d8f gcc/testsuite/gfortran.dg/streamio_18.f90
30fbe8f82f3ae117749d33f0cbecb0f9 gcc/testsuite/gfortran.dg/streamio_2.f90
ecc66620574916f4b154ee3802866490 gcc/testsuite/gfortran.dg/streamio_3.f90
ab6b23d963a5b8985972c2fa89516a18 gcc/testsuite/gfortran.dg/streamio_4.f90
*************** abba27a7d6ff9a2b115326ab5eb34647 gcc/te
*** 62961,62967 ****
c5c095a1207e8ebb9df3221cce7dd889 gcc/testsuite/gfortran.dg/unlimited_polymorphic_25.f90
2962b03e92b8de163aff58cd5c92f4b4 gcc/testsuite/gfortran.dg/unlimited_polymorphic_26.f90
1ed74102999daaa6c4980638954407ec gcc/testsuite/gfortran.dg/unlimited_polymorphic_27.f90
! ecade1b66b84e107c521641739e3cb99 gcc/testsuite/gfortran.dg/unlimited_polymorphic_28.f90
7e7a7ae9debf426cb9a72de5784be0f1 gcc/testsuite/gfortran.dg/unlimited_polymorphic_29.f90
9416e6463a32e0db92b1430a5ece704c gcc/testsuite/gfortran.dg/unlimited_polymorphic_3.f03
260aa02b581b990fd7887506c5bb6013 gcc/testsuite/gfortran.dg/unlimited_polymorphic_30.f03
--- 63316,63322 ----
c5c095a1207e8ebb9df3221cce7dd889 gcc/testsuite/gfortran.dg/unlimited_polymorphic_25.f90
2962b03e92b8de163aff58cd5c92f4b4 gcc/testsuite/gfortran.dg/unlimited_polymorphic_26.f90
1ed74102999daaa6c4980638954407ec gcc/testsuite/gfortran.dg/unlimited_polymorphic_27.f90
! 2b8ad4a091615fdca62fd02b47b05402 gcc/testsuite/gfortran.dg/unlimited_polymorphic_28.f90
7e7a7ae9debf426cb9a72de5784be0f1 gcc/testsuite/gfortran.dg/unlimited_polymorphic_29.f90
9416e6463a32e0db92b1430a5ece704c gcc/testsuite/gfortran.dg/unlimited_polymorphic_3.f03
260aa02b581b990fd7887506c5bb6013 gcc/testsuite/gfortran.dg/unlimited_polymorphic_30.f03
*************** a5bacc6abd14312805d91c2c53d4d15e gcc/te
*** 62987,62993 ****
71259a734476392fd9bd4328063ab4bd gcc/testsuite/gfortran.dg/use_12.f90
4fea03e3aefdee14f32f96947e3173a6 gcc/testsuite/gfortran.dg/use_13.f90
02d37ad899915ac342daefcded6da39a gcc/testsuite/gfortran.dg/use_14.f90
! 2c3c63fcc3a92bf38c4f22303a13dcd2 gcc/testsuite/gfortran.dg/use_15.f90
d62d0339c456b157f5fc35d29c279441 gcc/testsuite/gfortran.dg/use_16.f90
54a1d7edd2a86a5b4b136fecf18e7a52 gcc/testsuite/gfortran.dg/use_17.f90
2391055bfcc19504801cb22811f2801c gcc/testsuite/gfortran.dg/use_18.f90
--- 63342,63348 ----
71259a734476392fd9bd4328063ab4bd gcc/testsuite/gfortran.dg/use_12.f90
4fea03e3aefdee14f32f96947e3173a6 gcc/testsuite/gfortran.dg/use_13.f90
02d37ad899915ac342daefcded6da39a gcc/testsuite/gfortran.dg/use_14.f90
! e6162ed32133772ed718025467840a2b gcc/testsuite/gfortran.dg/use_15.f90
d62d0339c456b157f5fc35d29c279441 gcc/testsuite/gfortran.dg/use_16.f90
54a1d7edd2a86a5b4b136fecf18e7a52 gcc/testsuite/gfortran.dg/use_17.f90
2391055bfcc19504801cb22811f2801c gcc/testsuite/gfortran.dg/use_18.f90
*************** e67a4a11f35c66e08fb4bb3279634a7a gcc/te
*** 63027,63033 ****
f915c7e347a13904541e64ecfbf96b9e gcc/testsuite/gfortran.dg/use_rename_5.f90
ad43c4d3cb4733e86d9206b28785afd0 gcc/testsuite/gfortran.dg/use_rename_6.f90
da9a5416920599f30fb0c82c34d88084 gcc/testsuite/gfortran.dg/use_rename_7.f90
! 2101a506b2c2f7a637be977cd5b76008 gcc/testsuite/gfortran.dg/use_rename_8.f90
24db50d437f34fb5fdc1a3b1feded07d gcc/testsuite/gfortran.dg/use_rename_9.f90
3be1aba2041e7638b2f7647c61986b6e gcc/testsuite/gfortran.dg/use_without_only_1.f90
15c120470a7413dda29cbfafbfc57725 gcc/testsuite/gfortran.dg/used_before_typed_1.f90
--- 63382,63388 ----
f915c7e347a13904541e64ecfbf96b9e gcc/testsuite/gfortran.dg/use_rename_5.f90
ad43c4d3cb4733e86d9206b28785afd0 gcc/testsuite/gfortran.dg/use_rename_6.f90
da9a5416920599f30fb0c82c34d88084 gcc/testsuite/gfortran.dg/use_rename_7.f90
! 873b728d3926112bba93e3638fefd9ee gcc/testsuite/gfortran.dg/use_rename_8.f90
24db50d437f34fb5fdc1a3b1feded07d gcc/testsuite/gfortran.dg/use_rename_9.f90
3be1aba2041e7638b2f7647c61986b6e gcc/testsuite/gfortran.dg/use_without_only_1.f90
15c120470a7413dda29cbfafbfc57725 gcc/testsuite/gfortran.dg/used_before_typed_1.f90
*************** faef1baec47674d096569b4803422d64 gcc/te
*** 63202,63207 ****
--- 63557,63563 ----
9cdfca84c19b8b4bfd5f9be4a921f068 gcc/testsuite/gfortran.dg/warn_unused_dummy_argument_2.f90
62c8995bb923620e3509b9bd179b618c gcc/testsuite/gfortran.dg/warn_unused_dummy_argument_3.f90
fa2d697a6cf010eb6e082b1cf14cfb0a gcc/testsuite/gfortran.dg/warn_unused_dummy_argument_4.f90
+ 1d37c013db4796b65d121229b6e04f40 gcc/testsuite/gfortran.dg/warn_unused_dummy_argument_5.f90
a889821a76a43cd0bc42032f92d62143 gcc/testsuite/gfortran.dg/warn_unused_function.f90
babf649d09171c4fca19c8092348ee07 gcc/testsuite/gfortran.dg/warn_unused_function_2.f90
ae95981491a9741922c27b078d9a628c gcc/testsuite/gfortran.dg/warn_unused_function_3.f90
*************** fd5ae9b069107f5cb8fa4adff7b9fb2b gcc/te
*** 63685,63690 ****
--- 64041,64047 ----
680a780d9fd1583bce71ba44eb4d55f7 gcc/testsuite/gnat.dg/addr12_b.adb
d233a79e52e83a661c83db520be5206a gcc/testsuite/gnat.dg/addr12_b.ads
339c2f773d3a743c92702541a4d0e7f9 gcc/testsuite/gnat.dg/addr12_c.ads
+ afc2d0740417b768e50304dd00736f2d gcc/testsuite/gnat.dg/addr14.adb
f0a1bdb8415a236b8bd801950f678f6e gcc/testsuite/gnat.dg/addr2.adb
87b883a0706741ad3f7d6c6221d18b83 gcc/testsuite/gnat.dg/addr2_p.adb
0193ed7cae4310c99c6658a78453df8d gcc/testsuite/gnat.dg/addr2_p.ads
*************** d9ed5d8d94cefc81f6e8f1e096e44c85 gcc/te
*** 64568,64573 ****
--- 64925,64935 ----
fa0a217ef7773f18e2100deca65155e8 gcc/testsuite/gnat.dg/lto22_pkg1.ads
42c63ff6c62141b282c3de6014c66376 gcc/testsuite/gnat.dg/lto22_pkg2.adb
57519860c7ff9212e8c352b54168aebc gcc/testsuite/gnat.dg/lto22_pkg2.ads
+ 13d408bc48c1909174c83a543267c21b gcc/testsuite/gnat.dg/lto23.adb
+ 63d4886915d7f10386bf9acb4c27545a gcc/testsuite/gnat.dg/lto24.adb
+ 800283c5dd0dcc98963845af2f46f5b1 gcc/testsuite/gnat.dg/lto24_pkg1.ads
+ 6cc6cb14bbcba172d4f4eeb357613237 gcc/testsuite/gnat.dg/lto24_pkg2.adb
+ 14d0b11f260b0d1752208a98b741658a gcc/testsuite/gnat.dg/lto24_pkg2.ads
2acb4cc31994f1569a3db6ac6613928d gcc/testsuite/gnat.dg/lto4.adb
9b38247c8e825c514f87e2965d931dad gcc/testsuite/gnat.dg/lto4.ads
959fb8bdf4cd1c34347ecfbab19ea60b gcc/testsuite/gnat.dg/lto5.adb
*************** c0f32d5c5e15d348c935773328f10358 gcc/te
*** 65073,65079 ****
eef18f6f1c14b968b9fbb8d9e15b10b9 gcc/testsuite/gnat.dg/slice9.adb
5f0bf4632c09277729d821e8413a0426 gcc/testsuite/gnat.dg/slice_enum.adb
04d0c566bcfddf32cfb214ddbc7a73bc gcc/testsuite/gnat.dg/small_alignment.adb
! 7859d3d3ffdc14118bb275a43a367d7d gcc/testsuite/gnat.dg/socket1.adb
13735a71837a22e3a3ea62afb2189d81 gcc/testsuite/gnat.dg/socket2.adb
0caf5abcbc500a4037b4b5d2e38923f3 gcc/testsuite/gnat.dg/sort1.adb
cc5d9c23cbd067bd3b5f3d7e9a5747a4 gcc/testsuite/gnat.dg/sort1.ads
--- 65435,65441 ----
eef18f6f1c14b968b9fbb8d9e15b10b9 gcc/testsuite/gnat.dg/slice9.adb
5f0bf4632c09277729d821e8413a0426 gcc/testsuite/gnat.dg/slice_enum.adb
04d0c566bcfddf32cfb214ddbc7a73bc gcc/testsuite/gnat.dg/small_alignment.adb
! 4e69ba53def9a96e4aeee61b06c97f4d gcc/testsuite/gnat.dg/socket1.adb
13735a71837a22e3a3ea62afb2189d81 gcc/testsuite/gnat.dg/socket2.adb
0caf5abcbc500a4037b4b5d2e38923f3 gcc/testsuite/gnat.dg/sort1.adb
cc5d9c23cbd067bd3b5f3d7e9a5747a4 gcc/testsuite/gnat.dg/sort1.ads
*************** cf6061ac7a16f74b48144be58c3da5e2 gcc/te
*** 65403,65408 ****
--- 65765,65771 ----
83548cc110b5dea61f198392d0b5ba60 gcc/testsuite/gnat.dg/subp_inst.adb
0e21fedbcd64e4f36839cc7fe179d80b gcc/testsuite/gnat.dg/subp_inst_pkg.adb
840b0c423abf6b2fae281aeda3118ba0 gcc/testsuite/gnat.dg/subp_inst_pkg.ads
+ 9ef2fc6a5b60d79af93069621bd1eac2 gcc/testsuite/gnat.dg/subpools1.adb
222b053d2f80b1a83bb11792bfddb673 gcc/testsuite/gnat.dg/suppress_initialization.adb
4fd092592cfdb014761d607e63995c8a gcc/testsuite/gnat.dg/suppress_initialization_pkg.ads
c087d7cad0ff48806e04cef1eb71ab0b gcc/testsuite/gnat.dg/sync1.adb
*************** e6321f166b32aa6358ef91407179cccd gcc/te
*** 66983,66989 ****
7acc2fe528fd93ffd4e5699c381e4683 gcc/testsuite/lib/scanwpaipa.exp
030dc615f05eb00335a0b2fd066509b0 gcc/testsuite/lib/target-libpath.exp
b1611f78cda71099f7cb783fec6036cf gcc/testsuite/lib/target-supports-dg.exp
! 9da1cbb66b93888ac8065f2520238be7 gcc/testsuite/lib/target-supports.exp
ba8c0be14d2e93c15f823b8c4c0672d1 gcc/testsuite/lib/target-utils.exp
b85604e4e8dd8de681a31f6c7d59204c gcc/testsuite/lib/timeout-dg.exp
53159c18e733a12fd05a5058f29488d5 gcc/testsuite/lib/timeout.exp
--- 67346,67352 ----
7acc2fe528fd93ffd4e5699c381e4683 gcc/testsuite/lib/scanwpaipa.exp
030dc615f05eb00335a0b2fd066509b0 gcc/testsuite/lib/target-libpath.exp
b1611f78cda71099f7cb783fec6036cf gcc/testsuite/lib/target-supports-dg.exp
! 357477db01d4831e3ed95339f2d5f412 gcc/testsuite/lib/target-supports.exp
ba8c0be14d2e93c15f823b8c4c0672d1 gcc/testsuite/lib/target-utils.exp
b85604e4e8dd8de681a31f6c7d59204c gcc/testsuite/lib/timeout-dg.exp
53159c18e733a12fd05a5058f29488d5 gcc/testsuite/lib/timeout.exp
*************** a9aabe53382bdf1de0612f8bcf7ef0eb gcc/te
*** 67289,67296 ****
4a89061dc402adc311f94d3659a6eaa2 gcc/testsuite/obj-c++.dg/strings/strings-1.mm
acda44b06216ac119f6bf3a2e4b8cb98 gcc/testsuite/obj-c++.dg/strings/strings-2.mm
1c9ddf8ebcb389ac0ffe91037d72fa5a gcc/testsuite/obj-c++.dg/strings/strings.exp
! fa70c57e3ccdb714eef96517ba884c54 gcc/testsuite/obj-c++.dg/stubify-1.mm
! 86455888eccfe372be132a4bbd8508df gcc/testsuite/obj-c++.dg/stubify-2.mm
0827dd859e38ad893f65d76bf7a5b5e1 gcc/testsuite/obj-c++.dg/super-class-1.mm
348dead166b98af1745eea549652a4e0 gcc/testsuite/obj-c++.dg/super-class-2.mm
5f7cf7eb1290cd0ac7cc810aca461fcb gcc/testsuite/obj-c++.dg/super-dealloc-1.mm
--- 67652,67659 ----
4a89061dc402adc311f94d3659a6eaa2 gcc/testsuite/obj-c++.dg/strings/strings-1.mm
acda44b06216ac119f6bf3a2e4b8cb98 gcc/testsuite/obj-c++.dg/strings/strings-2.mm
1c9ddf8ebcb389ac0ffe91037d72fa5a gcc/testsuite/obj-c++.dg/strings/strings.exp
! 054e0ceae2ad0ae2533b291b1f1d50ab gcc/testsuite/obj-c++.dg/stubify-1.mm
! 562d9abba7e00b15773964756d58bb73 gcc/testsuite/obj-c++.dg/stubify-2.mm
0827dd859e38ad893f65d76bf7a5b5e1 gcc/testsuite/obj-c++.dg/super-class-1.mm
348dead166b98af1745eea549652a4e0 gcc/testsuite/obj-c++.dg/super-class-2.mm
5f7cf7eb1290cd0ac7cc810aca461fcb gcc/testsuite/obj-c++.dg/super-dealloc-1.mm
*************** d14e2bc0e149efd8ad9b13c9f1e48081 gcc/te
*** 67791,67798 ****
4a89061dc402adc311f94d3659a6eaa2 gcc/testsuite/objc.dg/strings/strings-1.m
5406714e0710bd54d86b2186d1cb98fa gcc/testsuite/objc.dg/strings/strings-2.m
b7f12e604b0138477a2121a9a6b05323 gcc/testsuite/objc.dg/strings/strings.exp
! e725bc4ca7d60a0fa96e088c77b44ba3 gcc/testsuite/objc.dg/stubify-1.m
! b9a053b6534bf53cd94aa5a5ae0b528c gcc/testsuite/objc.dg/stubify-2.m
7e68d7fe39ddc6065769f26089764fd6 gcc/testsuite/objc.dg/super-class-1.m
ba3105737585d465268d9bf41481fa06 gcc/testsuite/objc.dg/super-class-2.m
a1b0dd9c9fb200a066255256ef572225 gcc/testsuite/objc.dg/super-class-3.m
--- 68154,68161 ----
4a89061dc402adc311f94d3659a6eaa2 gcc/testsuite/objc.dg/strings/strings-1.m
5406714e0710bd54d86b2186d1cb98fa gcc/testsuite/objc.dg/strings/strings-2.m
b7f12e604b0138477a2121a9a6b05323 gcc/testsuite/objc.dg/strings/strings.exp
! 1028fef4f6067cf3ed3015cb12843bec gcc/testsuite/objc.dg/stubify-1.m
! 14f47f9629e885bc51130d3b4d8a5ffb gcc/testsuite/objc.dg/stubify-2.m
7e68d7fe39ddc6065769f26089764fd6 gcc/testsuite/objc.dg/super-class-1.m
ba3105737585d465268d9bf41481fa06 gcc/testsuite/objc.dg/super-class-2.m
a1b0dd9c9fb200a066255256ef572225 gcc/testsuite/objc.dg/super-class-3.m
*************** f8048ba5e1363a697fba1638825efdda gcc/to
*** 68005,68022 ****
af2ee3722a9568476164aea9490bddff gcc/tree-affine.c
661d33c210c8a531512c7beb6b96e73c gcc/tree-affine.h
c1690c6f804c612c1e6ad8c26b8489d8 gcc/tree-call-cdce.c
! fd657c20b96297042abba02715a7c7f1 gcc/tree-cfg.c
cf3fa5a439726d0e73d0651b14a2dd1b gcc/tree-cfg.h
! bcf43d639ae678366922572ff999d4c1 gcc/tree-cfgcleanup.c
ee6db89124dff9b0bf2e76468c03eb0e gcc/tree-cfgcleanup.h
64ba3ee03d1c5a6f1958fdad7c8ee694 gcc/tree-chrec.c
7b55d46f115ac2eed2a43554095765e3 gcc/tree-chrec.h
d6d3619e6d0d28721a9c5c6a368ee52c gcc/tree-complex.c
! 9ffba5815283744cce13eb21b7e239c1 gcc/tree-core.h
9af67decb941bf8ce444686492527806 gcc/tree-data-ref.c
ef7aefae53ef39fa14071dd236e0a6c1 gcc/tree-data-ref.h
! 51125bd5bc54def0cd796c8c76314b26 gcc/tree-dfa.c
! 30a612d5591c7ac87e8ea62051fa68f5 gcc/tree-dfa.h
7d91748613f2693f57dcc989d3ad1416 gcc/tree-diagnostic.c
3668b829319a65e04fa31624410d9b09 gcc/tree-diagnostic.h
de5324d205f3d8e4436fad862c4e8cbf gcc/tree-dump.c
--- 68368,68385 ----
af2ee3722a9568476164aea9490bddff gcc/tree-affine.c
661d33c210c8a531512c7beb6b96e73c gcc/tree-affine.h
c1690c6f804c612c1e6ad8c26b8489d8 gcc/tree-call-cdce.c
! 2b5116d56636e80b59168001d062358e gcc/tree-cfg.c
cf3fa5a439726d0e73d0651b14a2dd1b gcc/tree-cfg.h
! 66487f31b19815125207732d79b55d31 gcc/tree-cfgcleanup.c
ee6db89124dff9b0bf2e76468c03eb0e gcc/tree-cfgcleanup.h
64ba3ee03d1c5a6f1958fdad7c8ee694 gcc/tree-chrec.c
7b55d46f115ac2eed2a43554095765e3 gcc/tree-chrec.h
d6d3619e6d0d28721a9c5c6a368ee52c gcc/tree-complex.c
! c8a0e0c5adae771c3832e3adedf1983b gcc/tree-core.h
9af67decb941bf8ce444686492527806 gcc/tree-data-ref.c
ef7aefae53ef39fa14071dd236e0a6c1 gcc/tree-data-ref.h
! e1479e97dde82bebaa8dd0dc3ae45384 gcc/tree-dfa.c
! 57a776e8da826c3b6ae7f8881a3627da gcc/tree-dfa.h
7d91748613f2693f57dcc989d3ad1416 gcc/tree-diagnostic.c
3668b829319a65e04fa31624410d9b09 gcc/tree-diagnostic.h
de5324d205f3d8e4436fad862c4e8cbf gcc/tree-dump.c
*************** b79825083a3ebc55626e8b11536c4ba6 gcc/tr
*** 68026,68034 ****
2d4ed46125756128d55f4b1cb0738c07 gcc/tree-emutls.c
6a6624d33802dfaf68612c39969d7e4c gcc/tree-hash-traits.h
b5f8cac4e95ce5662b8305facd72053e gcc/tree-hasher.h
! 9dfaafd9bc843f7d032c418283f9821d gcc/tree-if-conv.c
f1194f3c38cd8ea80b953e27866fc331 gcc/tree-if-conv.h
! 6757096cec123413f52e538a6c202692 gcc/tree-inline.c
6715df3b6c3d1a52e89ee84312bb82a4 gcc/tree-inline.h
66872f4ce13076066c8deaa72f57d82b gcc/tree-into-ssa.c
d8db8f29a72806d9ef9a7ce2abf423f6 gcc/tree-into-ssa.h
--- 68389,68397 ----
2d4ed46125756128d55f4b1cb0738c07 gcc/tree-emutls.c
6a6624d33802dfaf68612c39969d7e4c gcc/tree-hash-traits.h
b5f8cac4e95ce5662b8305facd72053e gcc/tree-hasher.h
! dc1d62afc68881b5529ecbbb84075a36 gcc/tree-if-conv.c
f1194f3c38cd8ea80b953e27866fc331 gcc/tree-if-conv.h
! cf23997bede05c81bd2c6b1d88ac4227 gcc/tree-inline.c
6715df3b6c3d1a52e89ee84312bb82a4 gcc/tree-inline.h
66872f4ce13076066c8deaa72f57d82b gcc/tree-into-ssa.c
d8db8f29a72806d9ef9a7ce2abf423f6 gcc/tree-into-ssa.h
*************** d8db8f29a72806d9ef9a7ce2abf423f6 gcc/tr
*** 68038,68053 ****
83da4a6874ca9b4cd45114b5c7361373 gcc/tree-nested.c
bdf67051c7eed96122b29fed2a234557 gcc/tree-nested.h
e328fa27681700c371368b06726b6240 gcc/tree-nrv.c
! 08a5e095d486a5b2825b292d6a8ff56c gcc/tree-object-size.c
581605d2dd6bb83bfa8850340650b609 gcc/tree-object-size.h
56d40eabfbf48f28cd7a046c887c64db gcc/tree-outof-ssa.c
4140681bb09779084be8e530c4b81429 gcc/tree-outof-ssa.h
! 6791251748b2c670e25f27f66e10d821 gcc/tree-parloops.c
0d7426b0f0e17f2520cdaa847330af7c gcc/tree-parloops.h
! 714722e72aa4f9554c174142faa7c4d8 gcc/tree-pass.h
9c572480fbeacf491cfa0fc39d259ad3 gcc/tree-phinodes.c
9bc2d68918728aa1c82b3b87c59e72f7 gcc/tree-phinodes.h
! 100e2343de977e828d1c9c9e0f38e4cb gcc/tree-predcom.c
35067c56c89aaebeefd37f4193e1b695 gcc/tree-pretty-print.c
493d17fce20d7c46fe093594a3907627 gcc/tree-pretty-print.h
7191536639bfd276bc3527da15ebb458 gcc/tree-profile.c
--- 68401,68416 ----
83da4a6874ca9b4cd45114b5c7361373 gcc/tree-nested.c
bdf67051c7eed96122b29fed2a234557 gcc/tree-nested.h
e328fa27681700c371368b06726b6240 gcc/tree-nrv.c
! 98ba3328b43c198bd914196eaa783d6e gcc/tree-object-size.c
581605d2dd6bb83bfa8850340650b609 gcc/tree-object-size.h
56d40eabfbf48f28cd7a046c887c64db gcc/tree-outof-ssa.c
4140681bb09779084be8e530c4b81429 gcc/tree-outof-ssa.h
! 7e0f83dd2b7273393e596771de38835d gcc/tree-parloops.c
0d7426b0f0e17f2520cdaa847330af7c gcc/tree-parloops.h
! 8645b61ff48847f16b00836efe389e61 gcc/tree-pass.h
9c572480fbeacf491cfa0fc39d259ad3 gcc/tree-phinodes.c
9bc2d68918728aa1c82b3b87c59e72f7 gcc/tree-phinodes.h
! 83784925d8631d2202c517ff06c54d44 gcc/tree-predcom.c
35067c56c89aaebeefd37f4193e1b695 gcc/tree-pretty-print.c
493d17fce20d7c46fe093594a3907627 gcc/tree-pretty-print.h
7191536639bfd276bc3527da15ebb458 gcc/tree-profile.c
*************** a972ba059faad340bcbe01fd547285d7 gcc/tr
*** 68056,68064 ****
eb66f105c824cefd9bbabb0848c6b196 gcc/tree-sra.c
cd2c5878ad9e5f4f953ca0876727446e gcc/tree-ssa-address.c
26a031bfc9047f95d93c2ae4b3863c6a gcc/tree-ssa-address.h
! 8a01fa8d5ee8914788850ea45581f755 gcc/tree-ssa-alias.c
! 0063ee17d6abb9e2049d5363f573c9d0 gcc/tree-ssa-alias.h
! 27f50c3af1a7aef89eedef3b6aa58c06 gcc/tree-ssa-ccp.c
5cb94ea5ab4b0e0aa5c1bd8c5e774099 gcc/tree-ssa-ccp.h
23f1dbac1027552f1fad8371d1c6421a gcc/tree-ssa-coalesce.c
bd73e3b6a1d6459aba559373e7d25550 gcc/tree-ssa-coalesce.h
--- 68419,68427 ----
eb66f105c824cefd9bbabb0848c6b196 gcc/tree-sra.c
cd2c5878ad9e5f4f953ca0876727446e gcc/tree-ssa-address.c
26a031bfc9047f95d93c2ae4b3863c6a gcc/tree-ssa-address.h
! 4e284dc982ebb3a4a9c144728f660031 gcc/tree-ssa-alias.c
! de080bbdbf508c58b6645a26dd5f8cbd gcc/tree-ssa-alias.h
! 13abc08ddb44afc2c5bc74acc7fc2b4c gcc/tree-ssa-ccp.c
5cb94ea5ab4b0e0aa5c1bd8c5e774099 gcc/tree-ssa-ccp.h
23f1dbac1027552f1fad8371d1c6421a gcc/tree-ssa-coalesce.c
bd73e3b6a1d6459aba559373e7d25550 gcc/tree-ssa-coalesce.h
*************** c44c82bb6bd01c015ca39ae8b7017287 gcc/tr
*** 68067,68074 ****
33554b70ccf1bbc32aa7f228515de7a7 gcc/tree-ssa-dce.h
62ca87da3ddb8c15dabc78a46376040c gcc/tree-ssa-dom.c
d4d7445af3374048e91bdee947d748a5 gcc/tree-ssa-dom.h
! f552d73c8ab8b19a86455ece5076cd79 gcc/tree-ssa-dse.c
! f78dfdaa7e2cb04a86be1fcc8ec863bf gcc/tree-ssa-forwprop.c
6632895b4e518427e486f20927e19789 gcc/tree-ssa-ifcombine.c
882535983e77f5bb4aa55d36cbbb7a2e gcc/tree-ssa-live.c
c621d600df58fcb07ad10ec2c2f606c8 gcc/tree-ssa-live.h
--- 68430,68437 ----
33554b70ccf1bbc32aa7f228515de7a7 gcc/tree-ssa-dce.h
62ca87da3ddb8c15dabc78a46376040c gcc/tree-ssa-dom.c
d4d7445af3374048e91bdee947d748a5 gcc/tree-ssa-dom.h
! f7a98771e5d8fb843188063cc8fdf438 gcc/tree-ssa-dse.c
! 274466d6de89c2b1c6d7c7cf63b34bab gcc/tree-ssa-forwprop.c
6632895b4e518427e486f20927e19789 gcc/tree-ssa-ifcombine.c
882535983e77f5bb4aa55d36cbbb7a2e gcc/tree-ssa-live.c
c621d600df58fcb07ad10ec2c2f606c8 gcc/tree-ssa-live.h
*************** e57adf6c93783e7a9a4c5329e7f70aab gcc/tr
*** 68086,68108 ****
0a34a9a261adf7e4567f080f9fa95a12 gcc/tree-ssa-loop-unswitch.c
3dd70e9b5c6b93aa45a0880056bfd0fc gcc/tree-ssa-loop.c
6e344a6eb39582fd9ccf67abc4771d46 gcc/tree-ssa-loop.h
! 6430b8dc91caf314cea7007ccb343502 gcc/tree-ssa-math-opts.c
c6e348e48bc6da0fd54bd84f1400c2ac gcc/tree-ssa-operands.c
2e5e0d5c35227d27366a9f075289807d gcc/tree-ssa-operands.h
! 065b84a77ecc300506326bd1fcb0335d gcc/tree-ssa-phiopt.c
! 1ef9642ce41d43348cb6a9805e2e165c gcc/tree-ssa-phiprop.c
! bb98312c48024ae939fa3e7d74d8adde gcc/tree-ssa-pre.c
3f48463407f52911b59898c513e362a6 gcc/tree-ssa-propagate.c
e2457942a23f91d5a287e162b3911839 gcc/tree-ssa-propagate.h
! c9d1ef10e74ba7da93e1ab1eea0bbd75 gcc/tree-ssa-reassoc.c
! 544a797db56f7f46979ed99beade7117 gcc/tree-ssa-sccvn.c
! 28fd9378bf562a62cf7b24e67f04decf gcc/tree-ssa-sccvn.h
! d45f8c094bbd3f6f2a9950914b80913f gcc/tree-ssa-scopedtables.c
56680b87422628c7a0a7bd4beafc7e6a gcc/tree-ssa-scopedtables.h
! 353c3f4dab727030793b1d68161b71be gcc/tree-ssa-sink.c
72ff315cc2a08a17fe1331808ada843f gcc/tree-ssa-strlen.c
0d6511564316fc04732d39013b4cb055 gcc/tree-ssa-strlen.h
! 79b6e07a493696b6374657f21535d3ab gcc/tree-ssa-structalias.c
3bccb1e932b23973cd3bfe5ca5b21737 gcc/tree-ssa-tail-merge.c
ca804ae9967b39ec65ed1bb4bdbadca6 gcc/tree-ssa-ter.c
4e75bbd30c15801e7db7f9895805362c gcc/tree-ssa-ter.h
--- 68449,68471 ----
0a34a9a261adf7e4567f080f9fa95a12 gcc/tree-ssa-loop-unswitch.c
3dd70e9b5c6b93aa45a0880056bfd0fc gcc/tree-ssa-loop.c
6e344a6eb39582fd9ccf67abc4771d46 gcc/tree-ssa-loop.h
! ad83f46c9cbf76e7985e83df5506fcee gcc/tree-ssa-math-opts.c
c6e348e48bc6da0fd54bd84f1400c2ac gcc/tree-ssa-operands.c
2e5e0d5c35227d27366a9f075289807d gcc/tree-ssa-operands.h
! efedfb8d4b6f39e7c042e5ac3a685331 gcc/tree-ssa-phiopt.c
! acb6aa7ce143ae91fbebf78c1b01c517 gcc/tree-ssa-phiprop.c
! ce29b2670697c81f1d702b5ef1455ef2 gcc/tree-ssa-pre.c
3f48463407f52911b59898c513e362a6 gcc/tree-ssa-propagate.c
e2457942a23f91d5a287e162b3911839 gcc/tree-ssa-propagate.h
! 2c4d61f8932f41037eb675b45cdedfb2 gcc/tree-ssa-reassoc.c
! 7369613e0e62fe87da239fb56350d918 gcc/tree-ssa-sccvn.c
! 00aa1da9a4734aee088f3ae7a04cbe72 gcc/tree-ssa-sccvn.h
! e8f7441e16b235f14ac6ab9c4c743152 gcc/tree-ssa-scopedtables.c
56680b87422628c7a0a7bd4beafc7e6a gcc/tree-ssa-scopedtables.h
! 2765de718cf340271f1d2693dcf76419 gcc/tree-ssa-sink.c
72ff315cc2a08a17fe1331808ada843f gcc/tree-ssa-strlen.c
0d6511564316fc04732d39013b4cb055 gcc/tree-ssa-strlen.h
! 2b7d269bf626d9f6132406a0c8104c3f gcc/tree-ssa-structalias.c
3bccb1e932b23973cd3bfe5ca5b21737 gcc/tree-ssa-tail-merge.c
ca804ae9967b39ec65ed1bb4bdbadca6 gcc/tree-ssa-ter.c
4e75bbd30c15801e7db7f9895805362c gcc/tree-ssa-ter.h
*************** c17b4939dff5f391c4735dbc3d69c1ad gcc/tr
*** 68123,68147 ****
d60db07cf0bd16c97faf0fd226ba5980 gcc/tree-streamer-out.c
98d3d8c48a9b3efe58dfdde689f7c408 gcc/tree-streamer.c
b054506e5b8d5ed1b8605d943ac31d12 gcc/tree-streamer.h
! 6cec4bcb30689c682d5865b856703fcf gcc/tree-switch-conversion.c
979b0fbb38ab0a16518112580711689b gcc/tree-switch-conversion.h
! 4e510963643a52dbb15da81ed4a7dbdc gcc/tree-tailcall.c
! 3ab9d8ceff4dd14521eaa63c8fbcaf1b gcc/tree-vect-data-refs.c
3a36b1196f70db5b6b118a555a0c6a39 gcc/tree-vect-generic.c
c8f952851187727ac28dc3c21ffb773e gcc/tree-vect-loop-manip.c
! 5c445aad94fae81ccf8490ed49107465 gcc/tree-vect-loop.c
! 8b5080f31c446a3f507f5c76662e7be2 gcc/tree-vect-patterns.c
! 32e75d0c52f144ba054e42235a4c5cc3 gcc/tree-vect-slp.c
! 7b3aef1cae2aa6eae85f176fc754c399 gcc/tree-vect-stmts.c
923de3f5927009f9e3576e15ae880ab0 gcc/tree-vector-builder.c
! 2e6464b0cb823dde1c47fa1d4ea88c11 gcc/tree-vector-builder.h
! eb39064807ca15d5f21e472bde35333c gcc/tree-vectorizer.c
! 0cf706336ae4b15375927b0368349f1b gcc/tree-vectorizer.h
! 7c668c1bee054e58d568a128763a640f gcc/tree-vrp.c
11bb365df114008a6fda07f3787ffb2a gcc/tree-vrp.h
! 2ce0384a491298cf0a176a004ec12afa gcc/tree.c
1e417842f4d580fc7ca0b19e337e2a8f gcc/tree.def
! c6bd2abb7488c926abada7a2bbbada7e gcc/tree.h
a632adf0707e5662b38f91c502ebcd9c gcc/treestruct.def
a700ac9e89b6cab280947e83afe8304c gcc/tsan.c
369e17dd79820668a84a989973ff7f6c gcc/tsan.h
--- 68486,68510 ----
d60db07cf0bd16c97faf0fd226ba5980 gcc/tree-streamer-out.c
98d3d8c48a9b3efe58dfdde689f7c408 gcc/tree-streamer.c
b054506e5b8d5ed1b8605d943ac31d12 gcc/tree-streamer.h
! e955d60cc69cccd30e1126c8f011e391 gcc/tree-switch-conversion.c
979b0fbb38ab0a16518112580711689b gcc/tree-switch-conversion.h
! cd1850ab7ebe7611fb2c0b693c64863f gcc/tree-tailcall.c
! 21c9f8c7220ea0068cbe1698d0bc26ea gcc/tree-vect-data-refs.c
3a36b1196f70db5b6b118a555a0c6a39 gcc/tree-vect-generic.c
c8f952851187727ac28dc3c21ffb773e gcc/tree-vect-loop-manip.c
! 8c44ced701a7fa40cca8131ec12c899f gcc/tree-vect-loop.c
! 29d895ab943ae309af78dc3a43d3169e gcc/tree-vect-patterns.c
! 439d2ee55317b5ba4ede0c39a6f00256 gcc/tree-vect-slp.c
! 7cb96dbffb76832c92b449b252e3f6f9 gcc/tree-vect-stmts.c
923de3f5927009f9e3576e15ae880ab0 gcc/tree-vector-builder.c
! c7ac3c11f53390dce6cc710eaaac6a52 gcc/tree-vector-builder.h
! 575355cdfb31dedd620f9db37f2a6dd7 gcc/tree-vectorizer.c
! 56ef90d227aaa781ba75e175b65cfa4d gcc/tree-vectorizer.h
! 2f06b198ddaa1c8bb944ea22ca691149 gcc/tree-vrp.c
11bb365df114008a6fda07f3787ffb2a gcc/tree-vrp.h
! 170143e885e8f3313d7ba5cf1dca02e6 gcc/tree.c
1e417842f4d580fc7ca0b19e337e2a8f gcc/tree.def
! cb02e7f2133801e546c8c65a040a3122 gcc/tree.h
a632adf0707e5662b38f91c502ebcd9c gcc/treestruct.def
a700ac9e89b6cab280947e83afe8304c gcc/tsan.c
369e17dd79820668a84a989973ff7f6c gcc/tsan.h
*************** fdfe19949e8ebfe5f14b613f0f65cd6e gcc/va
*** 68157,68163 ****
c9b17af100e6e8b93fd6f44f3298c444 gcc/value-prof.c
6850a2f89c3044494307d034303972cc gcc/value-prof.h
81d2fc2f16729073ea312642708b81ee gcc/var-tracking.c
! f25ff8dfe49e22dc886f35d637fa3999 gcc/varasm.c
6f964e619afc01dea8b02e5c9e30b044 gcc/varasm.h
618cd72aea132c3e97c596aee2d00ed6 gcc/varpool.c
9639142b99476bc7eaeb8460331b0566 gcc/vec-perm-indices.c
--- 68520,68526 ----
c9b17af100e6e8b93fd6f44f3298c444 gcc/value-prof.c
6850a2f89c3044494307d034303972cc gcc/value-prof.h
81d2fc2f16729073ea312642708b81ee gcc/var-tracking.c
! 4e363767a6b571895b88c1a620b53f9a gcc/varasm.c
6f964e619afc01dea8b02e5c9e30b044 gcc/varasm.h
618cd72aea132c3e97c596aee2d00ed6 gcc/varpool.c
9639142b99476bc7eaeb8460331b0566 gcc/vec-perm-indices.c
*************** ed35c9dc4d0b16c41b99ebe0eed61dff gcc/wi
*** 68184,68194 ****
f9f7c952be9b58fa5e9fc7a89cbd0c6e gcc/xcoff.h
2f034ec50b36619b6f38d5c224cb9a42 gcc/xcoffout.c
b3d9467b5da1c3d00d28147a04c86dbf gcc/xcoffout.h
! f27cccf3e98f7b22e5230eda2b66de50 gnattools/ChangeLog
aaa671ca98fa9f94bfedd0ab395c5505 gnattools/Makefile.in
8385a4d775aa1b9949c1f88488491c86 gnattools/configure
1e063bb0b806e41cc0ed23d1b7047746 gnattools/configure.ac
! 4b3c499353b07a2c4c4af7f71e1a031e gotools/ChangeLog
e6bbff19055ec2e8a53d3a2f4bffdeca gotools/Makefile.am
49d6c95c9b61332be4b77dbfa6c609dc gotools/Makefile.in
7e23031e2e274aaa07b61c1e8f18dc99 gotools/README
--- 68547,68557 ----
f9f7c952be9b58fa5e9fc7a89cbd0c6e gcc/xcoff.h
2f034ec50b36619b6f38d5c224cb9a42 gcc/xcoffout.c
b3d9467b5da1c3d00d28147a04c86dbf gcc/xcoffout.h
! 8c55fe2cd02edde196c4171e2c24e000 gnattools/ChangeLog
aaa671ca98fa9f94bfedd0ab395c5505 gnattools/Makefile.in
8385a4d775aa1b9949c1f88488491c86 gnattools/configure
1e063bb0b806e41cc0ed23d1b7047746 gnattools/configure.ac
! d476aa214b1d2a619467c93fa23b2d85 gotools/ChangeLog
e6bbff19055ec2e8a53d3a2f4bffdeca gotools/Makefile.am
49d6c95c9b61332be4b77dbfa6c609dc gotools/Makefile.in
7e23031e2e274aaa07b61c1e8f18dc99 gotools/README
*************** c4e8176c1964a5ebe0a55900f2141299 gotool
*** 68199,68205 ****
eb2aeb3a6cffe7b26a8f1c8a2da23dcd gotools/gofmt.1
59530bdf33659b29e73d4adb9f9f6552 include/COPYING
d32239bcb673463ab874e80d47fae504 include/COPYING3
! 2413f354f89f3d7a3315971607d698ed include/ChangeLog
4263432a72ff47ed8bf420208ee7eea5 include/ChangeLog-9103
a43d76108493b20da790f953f829c6a5 include/ChangeLog.jit
eb7ab2f3097121a9154cc0ddecf661b2 include/ansidecl.h
--- 68562,68568 ----
eb2aeb3a6cffe7b26a8f1c8a2da23dcd gotools/gofmt.1
59530bdf33659b29e73d4adb9f9f6552 include/COPYING
d32239bcb673463ab874e80d47fae504 include/COPYING3
! b82982149d183ecac42478c20a844bd1 include/ChangeLog
4263432a72ff47ed8bf420208ee7eea5 include/ChangeLog-9103
a43d76108493b20da790f953f829c6a5 include/ChangeLog.jit
eb7ab2f3097121a9154cc0ddecf661b2 include/ansidecl.h
*************** b5692912b7f639c8285c77fa6ad84449 includ
*** 68244,68250 ****
def665a8553c0865c88d58a554d87473 include/xregex2.h
5e7c2e8aca772d2a3ac0791728781298 include/xtensa-config.h
361482dd6b5b5eb7090fff3986fba68a install-sh
! fca1ada2a23aa7d78cd3d970b1649938 intl/ChangeLog
cad1d6fab2274517783de7433c0faa74 intl/Makefile.in
6ec998bb4716c744bf8185e607f69301 intl/README
76ca170a525d5b84d90f0478fe788931 intl/VERSION
--- 68607,68613 ----
def665a8553c0865c88d58a554d87473 include/xregex2.h
5e7c2e8aca772d2a3ac0791728781298 include/xtensa-config.h
361482dd6b5b5eb7090fff3986fba68a install-sh
! ae8cd32246500dadc3b1a6a85fe9eaa5 intl/ChangeLog
cad1d6fab2274517783de7433c0faa74 intl/Makefile.in
6ec998bb4716c744bf8185e607f69301 intl/README
76ca170a525d5b84d90f0478fe788931 intl/VERSION
*************** d50a8c6c5b41089930accbdce767d3c0 intl/p
*** 68286,68297 ****
b4758a0194e3e41362b939911472ce62 intl/relocatable.c
bedade7bcfc3bc5eb09a2c6844f637f3 intl/relocatable.h
43f287d082528203fc85c1d2d81bf30d intl/textdomain.c
! 8368231cf85a285351a82b75ed2cb3c5 libada/ChangeLog
2a453698f4bd6b664ee7c6be22402650 libada/Makefile.in
ac7a7dbdb4599e1a98b97c82e372191e libada/configure
2509405c0c4ff558c0d8f66fa41c7e0d libada/configure.ac
46d3fe6da7a771cc2d5420c4137a6861 libatomic/.gitignore
! 1669b0842bac93622f22d6748111ff97 libatomic/ChangeLog
8e7df66918150dad6d8320f11f4ede36 libatomic/Makefile.am
2f61e67926f726144fd98377c2671b78 libatomic/Makefile.in
6d2b5627e60376680a6923959c375266 libatomic/acinclude.m4
--- 68649,68660 ----
b4758a0194e3e41362b939911472ce62 intl/relocatable.c
bedade7bcfc3bc5eb09a2c6844f637f3 intl/relocatable.h
43f287d082528203fc85c1d2d81bf30d intl/textdomain.c
! efc11f10953ea717feb5d8abaaf3821e libada/ChangeLog
2a453698f4bd6b664ee7c6be22402650 libada/Makefile.in
ac7a7dbdb4599e1a98b97c82e372191e libada/configure
2509405c0c4ff558c0d8f66fa41c7e0d libada/configure.ac
46d3fe6da7a771cc2d5420c4137a6861 libatomic/.gitignore
! 32b68c12b857be4260b9ca71c5878f30 libatomic/ChangeLog
8e7df66918150dad6d8320f11f4ede36 libatomic/Makefile.am
2f61e67926f726144fd98377c2671b78 libatomic/Makefile.in
6d2b5627e60376680a6923959c375266 libatomic/acinclude.m4
*************** c03a072efac9b30f8f8429ac52fd246b libato
*** 68377,68383 ****
8a7308fda7ed1543cb9e3be0f8e47bce libatomic/testsuite/libatomic.c/atomic-store-5.c
40618200985a15bcba64f871863da498 libatomic/testsuite/libatomic.c/c.exp
97b0c9cdfcb733664bdf4efe0f5dc449 libatomic/testsuite/libatomic.c/generic-2.c
! 190866328ef6a26cc49993524ee4480d libbacktrace/ChangeLog
eb3a88b53140eb234a99a4b3a55e56bf libbacktrace/ChangeLog.jit
648838959097e0a8fa1b0b9704a9ae9d libbacktrace/Makefile.am
c8a69ac59470cd3f43c0d784a9d4bfde libbacktrace/Makefile.in
--- 68740,68746 ----
8a7308fda7ed1543cb9e3be0f8e47bce libatomic/testsuite/libatomic.c/atomic-store-5.c
40618200985a15bcba64f871863da498 libatomic/testsuite/libatomic.c/c.exp
97b0c9cdfcb733664bdf4efe0f5dc449 libatomic/testsuite/libatomic.c/generic-2.c
! 89d1c85dac5266f450837add0e3e23c7 libbacktrace/ChangeLog
eb3a88b53140eb234a99a4b3a55e56bf libbacktrace/ChangeLog.jit
648838959097e0a8fa1b0b9704a9ae9d libbacktrace/Makefile.am
c8a69ac59470cd3f43c0d784a9d4bfde libbacktrace/Makefile.in
*************** bdbc7bcfa63dc92b1440fc83c7d769cc libbac
*** 68406,68412 ****
ecac281ca0efeedd90007bfb7eb3e6b5 libbacktrace/mmap.c
aa7b4bbf6702a4805c39977710381515 libbacktrace/mmapio.c
d1a9b2c3b342eaa21161e344fd5b7d00 libbacktrace/nounwind.c
! 2818e395c54b6a21d3ae2311993144a2 libbacktrace/pecoff.c
d2c2fc9ec0d683241bf5d1b06819f3d2 libbacktrace/posix.c
1ebf0d80127281cc7bd3e14fdabffc5a libbacktrace/print.c
316c63e7638e7dd98bd32a149798634e libbacktrace/read.c
--- 68769,68775 ----
ecac281ca0efeedd90007bfb7eb3e6b5 libbacktrace/mmap.c
aa7b4bbf6702a4805c39977710381515 libbacktrace/mmapio.c
d1a9b2c3b342eaa21161e344fd5b7d00 libbacktrace/nounwind.c
! d1c7eb6b99af77dadb094812519d3a65 libbacktrace/pecoff.c
d2c2fc9ec0d683241bf5d1b06819f3d2 libbacktrace/posix.c
1ebf0d80127281cc7bd3e14fdabffc5a libbacktrace/print.c
316c63e7638e7dd98bd32a149798634e libbacktrace/read.c
*************** ca9e1886004a1d290b3e205cf7d93e76 libbac
*** 68420,68428 ****
f917ae4f4a8353f5f6210d4399d333f9 libbacktrace/ttest.c
3c9ad27f02e0ea46aa30f154a430a3f8 libbacktrace/unittest.c
4bcecc9e15528ac37690df80f1f37d8b libbacktrace/unknown.c
! b4b961bd893040c8f1c13c169df3d670 libbacktrace/xcoff.c
2e820a2f5f1db658ccedaaba021d985c libbacktrace/ztest.c
! 37a57e3d9d04f4cd4848f7b59d1244df libcc1/ChangeLog
02ca37e3383de9f5c75e8de63507bb96 libcc1/Makefile.am
783b727d820db2db3b9801e87bfa4f99 libcc1/Makefile.in
951b88f5687afa4f7735d87a83007fc0 libcc1/aclocal.m4
--- 68783,68791 ----
f917ae4f4a8353f5f6210d4399d333f9 libbacktrace/ttest.c
3c9ad27f02e0ea46aa30f154a430a3f8 libbacktrace/unittest.c
4bcecc9e15528ac37690df80f1f37d8b libbacktrace/unknown.c
! cc14c4b26f0a468b4680095c43aff2c1 libbacktrace/xcoff.c
2e820a2f5f1db658ccedaaba021d985c libbacktrace/ztest.c
! b788080af1ff09bfebcc85b7a62a0a1a libcc1/ChangeLog
02ca37e3383de9f5c75e8de63507bb96 libcc1/Makefile.am
783b727d820db2db3b9801e87bfa4f99 libcc1/Makefile.in
951b88f5687afa4f7735d87a83007fc0 libcc1/aclocal.m4
*************** f6e4594f30d0958b989729eaeaf30d13 libcc1
*** 68451,68457 ****
281515e15866eb4506bbbc786f630e0f libcc1/names.hh
504f1417b07f98c5f03ba4c60a9d7a0c libcc1/rpc.hh
ea9958db9e43f398aad45b61b850753a libcc1/status.hh
! 26ffcd9e8f1daf33881b78ac8571dbc1 libcpp/ChangeLog
2bd831b17997584e38305782cebe6948 libcpp/ChangeLog.jit
222dba4ab7498ff043c97003b13ec99d libcpp/Makefile.in
5f73e265652f92a8ad72a80124ac7061 libcpp/aclocal.m4
--- 68814,68820 ----
281515e15866eb4506bbbc786f630e0f libcc1/names.hh
504f1417b07f98c5f03ba4c60a9d7a0c libcc1/rpc.hh
ea9958db9e43f398aad45b61b850753a libcc1/status.hh
! 9adfbe80e36a984a73a961a46c49f79b libcpp/ChangeLog
2bd831b17997584e38305782cebe6948 libcpp/ChangeLog.jit
222dba4ab7498ff043c97003b13ec99d libcpp/Makefile.in
5f73e265652f92a8ad72a80124ac7061 libcpp/aclocal.m4
*************** a82e3eb1d8561484e9ba80fe49aaa3d2 libcpp
*** 68460,68466 ****
f95c591555ed352736370c7a1b6d0f98 libcpp/configure
db98df9b3eb19f4fe581a917e87c5a57 libcpp/configure.ac
7b6cb6a7b1b18e5058899d7b0b6c2e29 libcpp/directives-only.c
! 2bd8b9ea9e386ed367d8d23fa767e034 libcpp/directives.c
0a342f3f7b07fb4e763b209333dbb06b libcpp/errors.c
652fec5ae61d9fc04abc72e59c457305 libcpp/expr.c
d043d853a1f677a273ca7a9a969dab92 libcpp/files.c
--- 68823,68829 ----
f95c591555ed352736370c7a1b6d0f98 libcpp/configure
db98df9b3eb19f4fe581a917e87c5a57 libcpp/configure.ac
7b6cb6a7b1b18e5058899d7b0b6c2e29 libcpp/directives-only.c
! 0052b900a16269d3b3d79383fba2857c libcpp/directives.c
0a342f3f7b07fb4e763b209333dbb06b libcpp/errors.c
652fec5ae61d9fc04abc72e59c457305 libcpp/expr.c
d043d853a1f677a273ca7a9a969dab92 libcpp/files.c
*************** d043d853a1f677a273ca7a9a969dab92 libcpp
*** 68469,68476 ****
cef329778c5d330ecda50584ccd181ab libcpp/include/line-map.h
7949f963045c91cc3138213bf5ead236 libcpp/include/mkdeps.h
496dd848f33cf3bc1ab5a11e3d25a24b libcpp/include/symtab.h
! 960c1d60b94d543daaecb1a77e5a817b libcpp/init.c
! 3a4173c4ea9cfc8295503104942859a5 libcpp/internal.h
be667f46d233f27f0bc302667739df28 libcpp/lex.c
d62e382eb7e77997195cc6ba2f1bf242 libcpp/line-map.c
46a07100f95f5e354c7e25cd19d26884 libcpp/location-example.txt
--- 68832,68839 ----
cef329778c5d330ecda50584ccd181ab libcpp/include/line-map.h
7949f963045c91cc3138213bf5ead236 libcpp/include/mkdeps.h
496dd848f33cf3bc1ab5a11e3d25a24b libcpp/include/symtab.h
! c9d2656287cb96b4e6422c5fcdaff3a6 libcpp/init.c
! 4af96b20be90ff8cadff4b95fcea0416 libcpp/internal.h
be667f46d233f27f0bc302667739df28 libcpp/lex.c
d62e382eb7e77997195cc6ba2f1bf242 libcpp/line-map.c
46a07100f95f5e354c7e25cd19d26884 libcpp/location-example.txt
*************** d62e382eb7e77997195cc6ba2f1bf242 libcpp
*** 68478,68484 ****
4d29f81731f27ee18c8643ab850311f7 libcpp/makeucnid.c
490d1e48a80412dfb3514b94e7f51775 libcpp/mkdeps.c
a6e9e77c0524957faba66e24fbf3ed8a libcpp/pch.c
! 3484fa0b63c8aaf91e572fd10bd92678 libcpp/po/ChangeLog
800d45168b428dc83c20c2b9f59ed630 libcpp/po/be.gmo
dc05c4bd3c6895e2da9141f65119fb51 libcpp/po/be.po
120a1ad532876abf18a95b8592038fda libcpp/po/ca.gmo
--- 68841,68847 ----
4d29f81731f27ee18c8643ab850311f7 libcpp/makeucnid.c
490d1e48a80412dfb3514b94e7f51775 libcpp/mkdeps.c
a6e9e77c0524957faba66e24fbf3ed8a libcpp/pch.c
! 3652e4958cae1dd92819563c0253afb8 libcpp/po/ChangeLog
800d45168b428dc83c20c2b9f59ed630 libcpp/po/be.gmo
dc05c4bd3c6895e2da9141f65119fb51 libcpp/po/be.po
120a1ad532876abf18a95b8592038fda libcpp/po/ca.gmo
*************** c862ccf544840751be474f16ed6b1963 libcpp
*** 68528,68539 ****
628099a1919648a76bead35903e7b89b libcpp/ucnid.h
d575d8ea34f81aa9a0af383fdbd9d2ca libcpp/ucnid.tab
a6c2b3de06c7424706b16f4c206396a1 libdecnumber/.gitignore
! e99d8966a11d2fccbdf4fc8151ff3c53 libdecnumber/ChangeLog
2bd831b17997584e38305782cebe6948 libdecnumber/ChangeLog.jit
141296edcf1deb455bf9aae8e8a8fe04 libdecnumber/Makefile.in
5f9283b55276ee7e43f1b2d807e0d85f libdecnumber/aclocal.m4
0be0d749baced3e33379fb7be2e77f49 libdecnumber/bid/bid-dpd.h
! 4dadff91d38d279436d6339de2f79f2d libdecnumber/bid/bid2dpd_dpd2bid.c
d7510cabd0d6275900d764d906e6d12d libdecnumber/bid/bid2dpd_dpd2bid.h
73c2f06952f9bd8f1d470722399dfc56 libdecnumber/bid/decimal128.c
47afd72790bc284aceb5a23597cc6146 libdecnumber/bid/decimal128.h
--- 68891,68902 ----
628099a1919648a76bead35903e7b89b libcpp/ucnid.h
d575d8ea34f81aa9a0af383fdbd9d2ca libcpp/ucnid.tab
a6c2b3de06c7424706b16f4c206396a1 libdecnumber/.gitignore
! fddb4e5fd375d23e8ba3d690fb318938 libdecnumber/ChangeLog
2bd831b17997584e38305782cebe6948 libdecnumber/ChangeLog.jit
141296edcf1deb455bf9aae8e8a8fe04 libdecnumber/Makefile.in
5f9283b55276ee7e43f1b2d807e0d85f libdecnumber/aclocal.m4
0be0d749baced3e33379fb7be2e77f49 libdecnumber/bid/bid-dpd.h
! 739a9e33eca239339afbecfd16013d13 libdecnumber/bid/bid2dpd_dpd2bid.c
d7510cabd0d6275900d764d906e6d12d libdecnumber/bid/bid2dpd_dpd2bid.h
73c2f06952f9bd8f1d470722399dfc56 libdecnumber/bid/decimal128.c
47afd72790bc284aceb5a23597cc6146 libdecnumber/bid/decimal128.h
*************** a97c47969dfc92a7666dfe3c2e1e1448 libdec
*** 68591,68597 ****
74a3833f7f2ae0d269dcacb46972d1f0 libdecnumber/dpd/decimal64.c
4e08638f371cb9b372f3ec903f00fc0e libdecnumber/dpd/decimal64.h
0f6db29710e7075c2fd62bc4478b3b8d libdecnumber/dpd/decimal64Symbols.h
! 612c6111bc7e25b0698afb92ef78844a libffi/ChangeLog
ba66fc19311348d373ec271be939a659 libffi/ChangeLog.libffi
fbbc216bc25d759a72ea3e6d734af56b libffi/ChangeLog.libgcj
d946d2b97454ad50a1dbfbf48923c5be libffi/ChangeLog.v1
--- 68954,68960 ----
74a3833f7f2ae0d269dcacb46972d1f0 libdecnumber/dpd/decimal64.c
4e08638f371cb9b372f3ec903f00fc0e libdecnumber/dpd/decimal64.h
0f6db29710e7075c2fd62bc4478b3b8d libdecnumber/dpd/decimal64Symbols.h
! 9bf3ce8df2ec57dac18f8dd86412f065 libffi/ChangeLog
ba66fc19311348d373ec271be939a659 libffi/ChangeLog.libffi
fbbc216bc25d759a72ea3e6d734af56b libffi/ChangeLog.libgcj
d946d2b97454ad50a1dbfbf48923c5be libffi/ChangeLog.v1
*************** d47c79b281339983862a8e52d8c73f0f libffi
*** 68951,68959 ****
291be426192f460f6a07dfe1c96ab094 libffi/testsuite/libffi.special/special.exp
93fc3ea311b79f64004992807ce75d1e libffi/testsuite/libffi.special/unwindtest.cc
185d0795017fbbe253a13db8e34085f9 libffi/testsuite/libffi.special/unwindtest_ffi_call.cc
! 0087f4b3e2f0473676d0ed37c1daece4 libgcc/ChangeLog
ad1e8cb6d1e59c5bbcc931b5e56711e1 libgcc/Makefile.in
! d59bffbd4d8f0c9e1e40e0ab856dcfc8 libgcc/config.host
dbd4c68a64e3be09ab49bad953cf29cd libgcc/config.in
6565c7b497d5f7e6e7f86014d52eadba libgcc/config/aarch64/aarch64-unwind.h
a604bdf629139cf288a532d9fb755410 libgcc/config/aarch64/crtfastmath.c
--- 69314,69322 ----
291be426192f460f6a07dfe1c96ab094 libffi/testsuite/libffi.special/special.exp
93fc3ea311b79f64004992807ce75d1e libffi/testsuite/libffi.special/unwindtest.cc
185d0795017fbbe253a13db8e34085f9 libffi/testsuite/libffi.special/unwindtest_ffi_call.cc
! 2b7baf7c00dda23dda649c0ca7a1d7b6 libgcc/ChangeLog
ad1e8cb6d1e59c5bbcc931b5e56711e1 libgcc/Makefile.in
! 9d8f302e61acc277666e756e017a720a libgcc/config.host
dbd4c68a64e3be09ab49bad953cf29cd libgcc/config.in
6565c7b497d5f7e6e7f86014d52eadba libgcc/config/aarch64/aarch64-unwind.h
a604bdf629139cf288a532d9fb755410 libgcc/config/aarch64/crtfastmath.c
*************** c88e8089cef2ae288ee43a31da146ae9 libgcc
*** 69265,69271 ****
175f8038676099df3497d2191eeda292 libgcc/config/i386/savms64f.h
e28eece912c4f472d66f144e969e4ef7 libgcc/config/i386/sfp-exceptions.c
d34238cdb06dae0b56a3a517467683d3 libgcc/config/i386/sfp-machine.h
! bbedcda2a1d836c20e731d6f4c256170 libgcc/config/i386/shadow-stack-unwind.h
9837b233df15ea32018f46eec96d5cc3 libgcc/config/i386/sol2-c1.S
7bd7e1e5fdd51765f4cd0ce4e68aa97b libgcc/config/i386/sol2-unwind.h
597d8ce804b1c2e917fdb1870e7ea0ac libgcc/config/i386/sse_resms64.S
--- 69628,69634 ----
175f8038676099df3497d2191eeda292 libgcc/config/i386/savms64f.h
e28eece912c4f472d66f144e969e4ef7 libgcc/config/i386/sfp-exceptions.c
d34238cdb06dae0b56a3a517467683d3 libgcc/config/i386/sfp-machine.h
! 007caac335b975d079738b7b52d225d6 libgcc/config/i386/shadow-stack-unwind.h
9837b233df15ea32018f46eec96d5cc3 libgcc/config/i386/sol2-c1.S
7bd7e1e5fdd51765f4cd0ce4e68aa97b libgcc/config/i386/sol2-unwind.h
597d8ce804b1c2e917fdb1870e7ea0ac libgcc/config/i386/sse_resms64.S
*************** e708eaae233279e50aca0fb6221aa099 libgcc
*** 69336,69342 ****
2499660ca1508fd7a1c0a9c4bf398faf libgcc/config/ia64/vms-unwind.h
d542947a4878833a608a7a6c66107af2 libgcc/config/iq2000/lib2funcs.c
102f7dad8ad6b54434a1b8313d1e42c4 libgcc/config/iq2000/t-iq2000
! 3c067c132891daa25457482637248c87 libgcc/config/libbid/ChangeLog
e09001f7f7eb492bfa91377efc1de072 libgcc/config/libbid/_addsub_dd.c
d1ea578ab0ec90a68084bc92256a875a libgcc/config/libbid/_addsub_sd.c
7ec84cbf2be3e6936ecfb988e11678b6 libgcc/config/libbid/_addsub_td.c
--- 69699,69705 ----
2499660ca1508fd7a1c0a9c4bf398faf libgcc/config/ia64/vms-unwind.h
d542947a4878833a608a7a6c66107af2 libgcc/config/iq2000/lib2funcs.c
102f7dad8ad6b54434a1b8313d1e42c4 libgcc/config/iq2000/t-iq2000
! 5dcd46e2fe5b7987c11c4d5f8919b81c libgcc/config/libbid/ChangeLog
e09001f7f7eb492bfa91377efc1de072 libgcc/config/libbid/_addsub_dd.c
d1ea578ab0ec90a68084bc92256a875a libgcc/config/libbid/_addsub_sd.c
7ec84cbf2be3e6936ecfb988e11678b6 libgcc/config/libbid/_addsub_td.c
*************** d1abad1abb78c23d432daf78ec237cd9 libgcc
*** 69873,69885 ****
e0ef23bde7dbafa567f4b1303b05a877 libgcc/config/or1k/linux-unwind.h
bae0e3b81bed9e3ea4b31a52d222e907 libgcc/config/or1k/sfp-machine.h
6bc916776e1534a9de6d79f6530f0412 libgcc/config/or1k/t-or1k
! 76d6badc981bf87b56d48c6fe4f1bda4 libgcc/config/pa/fptr.c
e1de91feb077c33534a9cc4d2fe09657 libgcc/config/pa/gthr-dce.h
12c448d35b960a5650c4ba9a5cf35e07 libgcc/config/pa/hpux-unwind.h
! c834198166c01faa755240c006ac5b00 libgcc/config/pa/lib2funcs.S
! fdd883d06fb1d3d9dc0f2dad94fc51f9 libgcc/config/pa/linux-atomic.c
dde3935fa4561cabea432f777774f9ba libgcc/config/pa/linux-unwind.h
! a34fcdc2071d7bb8cdca3c0f97faa911 libgcc/config/pa/milli64.S
8267bac5fc9e32d2e728edbc7d978b51 libgcc/config/pa/pa64-hpux-lib.h
3c5ce73389b2139807c1d2d546229737 libgcc/config/pa/quadlib.c
71c9c291204dc98b7de0ef6b19387db9 libgcc/config/pa/stublib.c
--- 70236,70248 ----
e0ef23bde7dbafa567f4b1303b05a877 libgcc/config/or1k/linux-unwind.h
bae0e3b81bed9e3ea4b31a52d222e907 libgcc/config/or1k/sfp-machine.h
6bc916776e1534a9de6d79f6530f0412 libgcc/config/or1k/t-or1k
! bd41c9c4e8e855126c292582197016ff libgcc/config/pa/fptr.c
e1de91feb077c33534a9cc4d2fe09657 libgcc/config/pa/gthr-dce.h
12c448d35b960a5650c4ba9a5cf35e07 libgcc/config/pa/hpux-unwind.h
! f01c3db454b605b72d1232f39af126ab libgcc/config/pa/lib2funcs.S
! 64a6e5d5843e81a024f9afe766cc713b libgcc/config/pa/linux-atomic.c
dde3935fa4561cabea432f777774f9ba libgcc/config/pa/linux-unwind.h
! 704fc661652e30b41dd46eddc0701597 libgcc/config/pa/milli64.S
8267bac5fc9e32d2e728edbc7d978b51 libgcc/config/pa/pa64-hpux-lib.h
3c5ce73389b2139807c1d2d546229737 libgcc/config/pa/quadlib.c
71c9c291204dc98b7de0ef6b19387db9 libgcc/config/pa/stublib.c
*************** aa29c1671558b9acd0f64e4a85a8fb88 libgcc
*** 70007,70014 ****
85f807ff0364a0c80caa348722990805 libgcc/config/rs6000/sol-cn.S
8e65197842ba39fd658038728475e572 libgcc/config/rs6000/t-aix-cxa
0d6637a7e112c021e7ce371918c7659c libgcc/config/rs6000/t-crtstuff
! b6151b20715687e580fd5fc2f102102b libgcc/config/rs6000/t-darwin
! d7cdc73d7a8e658f872ea07474837bc2 libgcc/config/rs6000/t-darwin64
5e37428787f8a44735ab7c7fb6bbcd27 libgcc/config/rs6000/t-e500v1-fp
ce6aba3310e17ec0410a23118775bbab libgcc/config/rs6000/t-e500v2-fp
f9c993d20fe30bd0ec55ec5caf62518d libgcc/config/rs6000/t-float128
--- 70370,70377 ----
85f807ff0364a0c80caa348722990805 libgcc/config/rs6000/sol-cn.S
8e65197842ba39fd658038728475e572 libgcc/config/rs6000/t-aix-cxa
0d6637a7e112c021e7ce371918c7659c libgcc/config/rs6000/t-crtstuff
! bc91baf0523c8475334ca80d6ff265c4 libgcc/config/rs6000/t-darwin
! a0014912b4b08cfbe887d9945460e370 libgcc/config/rs6000/t-darwin64
5e37428787f8a44735ab7c7fb6bbcd27 libgcc/config/rs6000/t-e500v1-fp
ce6aba3310e17ec0410a23118775bbab libgcc/config/rs6000/t-e500v2-fp
f9c993d20fe30bd0ec55ec5caf62518d libgcc/config/rs6000/t-float128
*************** ada9a39786da3b2e999f7440a17a1ed7 libgcc
*** 70115,70121 ****
7f567bcd22705a965e07f79e8f68ebaa libgcc/config/stormy16/umodsi3.c
f199b38114ce849b77b38bd475d72cff libgcc/config/t-crtfm
060a49bb5c4a53a2125123d4cbd571de libgcc/config/t-crtstuff-pic
! cbc6f3d27731114bacf21184530579de libgcc/config/t-darwin
ee7ad6460936fc6f3f89ecb711376477 libgcc/config/t-dfprules
d747115cbcc2bd56b6b4f73c350c2ae3 libgcc/config/t-eh-dw2-dip
b9d08c1cbead9131f216accd515ec32c libgcc/config/t-fdpbit
--- 70478,70484 ----
7f567bcd22705a965e07f79e8f68ebaa libgcc/config/stormy16/umodsi3.c
f199b38114ce849b77b38bd475d72cff libgcc/config/t-crtfm
060a49bb5c4a53a2125123d4cbd571de libgcc/config/t-crtstuff-pic
! 7fec96c04b71be88732732651ac5dd37 libgcc/config/t-darwin
ee7ad6460936fc6f3f89ecb711376477 libgcc/config/t-dfprules
d747115cbcc2bd56b6b4f73c350c2ae3 libgcc/config/t-eh-dw2-dip
b9d08c1cbead9131f216accd515ec32c libgcc/config/t-fdpbit
*************** af87f07c7852b3f285999fc059f8add9 libgcc
*** 70368,70374 ****
3141a3583b6db8874e874d333dde6638 libgcc/vtv_end_preinit.c
8a18f995d18c874fc01982af6acf7552 libgcc/vtv_start.c
1fc53b7e6934daf3a6708fd8ac1665a7 libgcc/vtv_start_preinit.c
! ce9200da2f1ae308d902ab7020c3c234 libgfortran/ChangeLog
9aca36338382e5b4b730e7779170b24d libgfortran/ChangeLog-2002
80d3edc880c2da0b7a2beec2e2c4f774 libgfortran/ChangeLog-2003
9f0239429993a5e64ed793eb6c55a5c1 libgfortran/ChangeLog-2004
--- 70731,70737 ----
3141a3583b6db8874e874d333dde6638 libgcc/vtv_end_preinit.c
8a18f995d18c874fc01982af6acf7552 libgcc/vtv_start.c
1fc53b7e6934daf3a6708fd8ac1665a7 libgcc/vtv_start_preinit.c
! dc1326b62f8bcf1d999b7f9fa25edab1 libgfortran/ChangeLog
9aca36338382e5b4b730e7779170b24d libgfortran/ChangeLog-2002
80d3edc880c2da0b7a2beec2e2c4f774 libgfortran/ChangeLog-2003
9f0239429993a5e64ed793eb6c55a5c1 libgfortran/ChangeLog-2004
*************** f91822b34847fdd809e608b8c7d3abe7 libgfo
*** 71056,71062 ****
89eb7307b38f7de7d92d72be3e65b56a libgfortran/intrinsics/pack_generic.c
9fa720bbef66c669caeea1f1b46dd06b libgfortran/intrinsics/perror.c
5c05986df2cd6ff16a02045a5c0db647 libgfortran/intrinsics/rand.c
! 8bddab74bd50a77080f4ba76fa5d249d libgfortran/intrinsics/random.c
d02d4a9ec10c193f87f4052bc16f985f libgfortran/intrinsics/random_init.f90
a2785447274eae2caeb788c9d11aae76 libgfortran/intrinsics/rename.c
78b5e98911da89787ce57c5f4a2fca4a libgfortran/intrinsics/reshape_generic.c
--- 71419,71425 ----
89eb7307b38f7de7d92d72be3e65b56a libgfortran/intrinsics/pack_generic.c
9fa720bbef66c669caeea1f1b46dd06b libgfortran/intrinsics/perror.c
5c05986df2cd6ff16a02045a5c0db647 libgfortran/intrinsics/rand.c
! d95dfc1734926ac22d5886a61a87ebf4 libgfortran/intrinsics/random.c
d02d4a9ec10c193f87f4052bc16f985f libgfortran/intrinsics/random_init.f90
a2785447274eae2caeb788c9d11aae76 libgfortran/intrinsics/rename.c
78b5e98911da89787ce57c5f4a2fca4a libgfortran/intrinsics/reshape_generic.c
*************** fe30431ece9320fef4897cbf7b85c7c5 libgfo
*** 71079,71086 ****
86cf6b0aa8cb79c40585c7fa0aa28189 libgfortran/intrinsics/umask.c
b5261934b781670362603cf1d457584a libgfortran/intrinsics/unlink.c
72f59615911df6d0fa9721e4b6630daf libgfortran/intrinsics/unpack_generic.c
! 743156d23f79ce70c8e9585eee086365 libgfortran/io/async.c
! a63f7c879dfe54e9d36cc77b0e206deb libgfortran/io/async.h
73116f4e9931cef70309c9cc03a6ee71 libgfortran/io/close.c
c72950c9daf66b9bd3d380f11b16fe4d libgfortran/io/fbuf.c
f04fd4c3e1fcdb44926bd74d91646e4b libgfortran/io/fbuf.h
--- 71442,71449 ----
86cf6b0aa8cb79c40585c7fa0aa28189 libgfortran/intrinsics/umask.c
b5261934b781670362603cf1d457584a libgfortran/intrinsics/unlink.c
72f59615911df6d0fa9721e4b6630daf libgfortran/intrinsics/unpack_generic.c
! 0b9202c286289cc12f38243e68d93200 libgfortran/io/async.c
! 9b18842ca87a921151aef9062fdc5869 libgfortran/io/async.h
73116f4e9931cef70309c9cc03a6ee71 libgfortran/io/close.c
c72950c9daf66b9bd3d380f11b16fe4d libgfortran/io/fbuf.c
f04fd4c3e1fcdb44926bd74d91646e4b libgfortran/io/fbuf.h
*************** b98969669f06625d7f1649f5dcdb3429 libgfo
*** 71095,71103 ****
b8a84fa4f708bde73acf7b731adfd17e libgfortran/io/open.c
82b163476fbb8fee0ee45baa6cc00a65 libgfortran/io/read.c
c3a84590fc9e05db3ee8edd137ff5b77 libgfortran/io/size_from_kind.c
! 2fa6be5ef0b543d07cefb55f968c1743 libgfortran/io/transfer.c
6503a54c7b76e0b4afb93da1b4e99e11 libgfortran/io/transfer128.c
! 6fa4cb6e3796b5aebe0af73525e1fb5f libgfortran/io/unit.c
ec7a3fa5efd004914e6d742ec0fa5d2c libgfortran/io/unix.c
a7cac03e5ea5e04ddc1e71230dc8efbf libgfortran/io/unix.h
11a8c5319167fe26d31048a4a06ceb26 libgfortran/io/write.c
--- 71458,71466 ----
b8a84fa4f708bde73acf7b731adfd17e libgfortran/io/open.c
82b163476fbb8fee0ee45baa6cc00a65 libgfortran/io/read.c
c3a84590fc9e05db3ee8edd137ff5b77 libgfortran/io/size_from_kind.c
! dbffedec25beb930dac6bb8c280f284a libgfortran/io/transfer.c
6503a54c7b76e0b4afb93da1b4e99e11 libgfortran/io/transfer128.c
! 6d87a67293e67e26d19336932bd9077a libgfortran/io/unit.c
ec7a3fa5efd004914e6d742ec0fa5d2c libgfortran/io/unix.c
a7cac03e5ea5e04ddc1e71230dc8efbf libgfortran/io/unix.h
11a8c5319167fe26d31048a4a06ceb26 libgfortran/io/write.c
*************** f61b6a1604c85203c2359d0dc94ff046 libgfo
*** 71175,71181 ****
cef25b7bceffde6fc5728a173e842a62 libgfortran/mk-kinds-h.sh
764579ddc54916182288fc40bdf0e544 libgfortran/mk-sik-inc.sh
f81db480cbfdc2b1d2291623c6cadb5f libgfortran/mk-srk-inc.sh
! 526126620b37c460cedd1555384f47e7 libgfortran/runtime/ISO_Fortran_binding.c
e39243fb520e1a732300fc16296958a2 libgfortran/runtime/backtrace.c
34410e0bae9ea796d484d6dbd01c814a libgfortran/runtime/bounds.c
48294478892f154208e59c317dd6bf20 libgfortran/runtime/compile_options.c
--- 71538,71544 ----
cef25b7bceffde6fc5728a173e842a62 libgfortran/mk-kinds-h.sh
764579ddc54916182288fc40bdf0e544 libgfortran/mk-sik-inc.sh
f81db480cbfdc2b1d2291623c6cadb5f libgfortran/mk-srk-inc.sh
! f2329d7c3a5a998a5496941b22637758 libgfortran/runtime/ISO_Fortran_binding.c
e39243fb520e1a732300fc16296958a2 libgfortran/runtime/backtrace.c
34410e0bae9ea796d484d6dbd01c814a libgfortran/runtime/bounds.c
48294478892f154208e59c317dd6bf20 libgfortran/runtime/compile_options.c
*************** fbad8136b522abf2ebe4b3314e91ad5e libgo/
*** 72856,72863 ****
793d64a663f57774e79ad07c62d9d7f5 libgo/go/go/internal/gccgoimporter/gccgoinstallation.go
32693376e96a6b80ca2ed06f4e097bf8 libgo/go/go/internal/gccgoimporter/gccgoinstallation_test.go
12f542900528e2c8761c660080a88fb5 libgo/go/go/internal/gccgoimporter/importer.go
! 92c8817cc3cbc35efd1be24ca52fe1fe libgo/go/go/internal/gccgoimporter/importer_test.go
! 56176710a2190b5be2f1f2e3402e6bd3 libgo/go/go/internal/gccgoimporter/parser.go
21dadbf1bff4c2adbb8dc8ec49147ecd libgo/go/go/internal/gccgoimporter/parser_test.go
6b5ad74e54217ee2ce9a4d097b9d0c7d libgo/go/go/internal/gccgoimporter/testdata/aliases.go
08b64ac87a4fec11683ee190a7b23a8a libgo/go/go/internal/gccgoimporter/testdata/aliases.gox
--- 73219,73226 ----
793d64a663f57774e79ad07c62d9d7f5 libgo/go/go/internal/gccgoimporter/gccgoinstallation.go
32693376e96a6b80ca2ed06f4e097bf8 libgo/go/go/internal/gccgoimporter/gccgoinstallation_test.go
12f542900528e2c8761c660080a88fb5 libgo/go/go/internal/gccgoimporter/importer.go
! 21a8556b2ba6ff0c87d3d3eed417c602 libgo/go/go/internal/gccgoimporter/importer_test.go
! 53ed9d28b155790d3367b11237cb2c19 libgo/go/go/internal/gccgoimporter/parser.go
21dadbf1bff4c2adbb8dc8ec49147ecd libgo/go/go/internal/gccgoimporter/parser_test.go
6b5ad74e54217ee2ce9a4d097b9d0c7d libgo/go/go/internal/gccgoimporter/testdata/aliases.go
08b64ac87a4fec11683ee190a7b23a8a libgo/go/go/internal/gccgoimporter/testdata/aliases.gox
*************** d3d07d83edba799e6b79f15c3e666977 libgo/
*** 72873,72878 ****
--- 73236,73243 ----
8b06547b78377b6270ef7a613e7389bd libgo/go/go/internal/gccgoimporter/testdata/issue27856.gox
c77b4727ff3bdda00268c0e2a4575f47 libgo/go/go/internal/gccgoimporter/testdata/issue29198.go
034244b8d03516c8a861ce8d2d02c009 libgo/go/go/internal/gccgoimporter/testdata/issue29198.gox
+ 4fcf5fba5c915b0b7ca4ed770cc7f861 libgo/go/go/internal/gccgoimporter/testdata/issue34182.go
+ 63e817a82266fdf1f5d5ff13f067efdc libgo/go/go/internal/gccgoimporter/testdata/issue34182.gox
90e48df212447c17fa43fd56392e4af4 libgo/go/go/internal/gccgoimporter/testdata/libimportsar.a
e8f52c582ba100d6fdf04b4a7bbc6f36 libgo/go/go/internal/gccgoimporter/testdata/nointerface.go
00a05ff4434ba3eab68854cd84fed86b libgo/go/go/internal/gccgoimporter/testdata/nointerface.gox
*************** fb40fc675164613c2ce0361a86ebd5d0 libgo/
*** 75283,75289 ****
c314cdee3ab16ba76053d8d23b0aabef libgo/mkrsysinfo.sh
48640c9075a0ad806d6e5e4cb112ec7c libgo/mkruntimeinc.sh
81b8b042300eee47fae42dae3d92cf4e libgo/mksigtab.sh
! 5e63e36d2811d5d947bf22b676f55be2 libgo/mksysinfo.sh
9c66bb618ec9c46d7e7dcadd04faf52b libgo/mvifdiff.sh
2562bdd994e9efc56cebdc80e91ae41a libgo/runtime/aeshash.c
06b0ddfbd036dbdfdf8c4c7efb8b746f libgo/runtime/arch.h
--- 75648,75654 ----
c314cdee3ab16ba76053d8d23b0aabef libgo/mkrsysinfo.sh
48640c9075a0ad806d6e5e4cb112ec7c libgo/mkruntimeinc.sh
81b8b042300eee47fae42dae3d92cf4e libgo/mksigtab.sh
! 0a579bdc5ff8aa4ce587321b9e28303a libgo/mksysinfo.sh
9c66bb618ec9c46d7e7dcadd04faf52b libgo/mvifdiff.sh
2562bdd994e9efc56cebdc80e91ae41a libgo/runtime/aeshash.c
06b0ddfbd036dbdfdf8c4c7efb8b746f libgo/runtime/arch.h
*************** f1f0917f45d626d15a5f129fef3d81e2 libgo/
*** 75343,75355 ****
8ee949b66b618f814424a36e68df976a libgo/testsuite/gotest
ead4e721beb57b319fcd7da8ddf10705 libgo/testsuite/lib/libgo.exp
6df485581d2f02246f41b5ca46f5bb5d libgo/testsuite/libgo.testmain/testmain.exp
! d1ced572bf13d9533f5fd9b45240995f libgomp/ChangeLog
0d55aa862aee66efdc5f8d62c94ff8fb libgomp/ChangeLog.graphite
d9a2f9477fc09a75dd2d538799f491d8 libgomp/Makefile.am
b8b41eee465fa52ffd96c3f358ab15c9 libgomp/Makefile.in
fbc6e68e7bd89c3dbe3f538851f8d054 libgomp/acinclude.m4
026249ab3444b07b9f8b4d3bb5f1c2fe libgomp/aclocal.m4
! 15bcbbf99121f50ec803d5e9511dcf66 libgomp/affinity-fmt.c
781fa7c2f00c88d5779a1c0aa0cc091e libgomp/affinity.c
e50482255cf5a7f68e2199101aa075f2 libgomp/alloc.c
c9f750a5b99481943fbb0fa04832ca66 libgomp/atomic.c
--- 75708,75720 ----
8ee949b66b618f814424a36e68df976a libgo/testsuite/gotest
ead4e721beb57b319fcd7da8ddf10705 libgo/testsuite/lib/libgo.exp
6df485581d2f02246f41b5ca46f5bb5d libgo/testsuite/libgo.testmain/testmain.exp
! bb53c8ac36b753604f921cfc65376808 libgomp/ChangeLog
0d55aa862aee66efdc5f8d62c94ff8fb libgomp/ChangeLog.graphite
d9a2f9477fc09a75dd2d538799f491d8 libgomp/Makefile.am
b8b41eee465fa52ffd96c3f358ab15c9 libgomp/Makefile.in
fbc6e68e7bd89c3dbe3f538851f8d054 libgomp/acinclude.m4
026249ab3444b07b9f8b4d3bb5f1c2fe libgomp/aclocal.m4
! 6f83360eaec63188c0c5f749c1f01893 libgomp/affinity-fmt.c
781fa7c2f00c88d5779a1c0aa0cc091e libgomp/affinity.c
e50482255cf5a7f68e2199101aa075f2 libgomp/alloc.c
c9f750a5b99481943fbb0fa04832ca66 libgomp/atomic.c
*************** faabbd26a573e96e81dda8363c33e7e0 libgom
*** 75458,75464 ****
7009fed834fdf23d327dd29f35a07f4c libgomp/iter_ull.c
9bff1e4d350ff9ea9502f8f430fe47b6 libgomp/libgomp-plugin.c
14d952f1b53baf8f8ed35c87558084fa libgomp/libgomp-plugin.h
! 67533a48b1abebf7fd9e5adfb5eee74b libgomp/libgomp.h
913fd2715d9a6b2585c364fe790a760c libgomp/libgomp.info
72bc80535d4a55dfc4d5841a7e9e0418 libgomp/libgomp.map
8b2aa50aecad82171348a6918309afd6 libgomp/libgomp.spec.in
--- 75823,75829 ----
7009fed834fdf23d327dd29f35a07f4c libgomp/iter_ull.c
9bff1e4d350ff9ea9502f8f430fe47b6 libgomp/libgomp-plugin.c
14d952f1b53baf8f8ed35c87558084fa libgomp/libgomp-plugin.h
! 701f81e9565881277737dff88697fd30 libgomp/libgomp.h
913fd2715d9a6b2585c364fe790a760c libgomp/libgomp.info
72bc80535d4a55dfc4d5841a7e9e0418 libgomp/libgomp.map
8b2aa50aecad82171348a6918309afd6 libgomp/libgomp.spec.in
*************** ab93cecf1aaa0b64c46f0f9aaede435c libgom
*** 75471,75477 ****
6acf74336a1a46079ec976f852fabe55 libgomp/oacc-async.c
60cd215a4e0ae755bd1d7c76a1e5d12d libgomp/oacc-cuda.c
08ee40611490c01bab38c84db0b260f3 libgomp/oacc-host.c
! 2b705776f744d18356901a5c0a1a1a11 libgomp/oacc-init.c
9503f3f1358c4af8cb7aa5db5a9bf80c libgomp/oacc-int.h
951aa6dabcfc0f58deabb2762d20534a libgomp/oacc-mem.c
fbf5297324364b63d522861579f58537 libgomp/oacc-parallel.c
--- 75836,75842 ----
6acf74336a1a46079ec976f852fabe55 libgomp/oacc-async.c
60cd215a4e0ae755bd1d7c76a1e5d12d libgomp/oacc-cuda.c
08ee40611490c01bab38c84db0b260f3 libgomp/oacc-host.c
! 048c27f6a9e22d385587fb5b365ab2e1 libgomp/oacc-init.c
9503f3f1358c4af8cb7aa5db5a9bf80c libgomp/oacc-int.h
951aa6dabcfc0f58deabb2762d20534a libgomp/oacc-mem.c
fbf5297324364b63d522861579f58537 libgomp/oacc-parallel.c
*************** fbf5297324364b63d522861579f58537 libgom
*** 75479,75485 ****
8de23ba778cf0de79f0f7485cdd011f1 libgomp/oacc-plugin.h
bb6e51d0cdfa0273e312a1d94cd8267c libgomp/omp.h.in
b37ea42e795b9cbd35f23f5db7acbdf1 libgomp/omp_lib.f90.in
! 76d948815a2f4958dd13bde8f0899a64 libgomp/omp_lib.h.in
1e9fac84b4e9d3f192178e1bdc98476d libgomp/openacc.f90
900ac4f99dff51c6b6c17812ebc01363 libgomp/openacc.h
9e113a865018c4e566739529320a8c12 libgomp/openacc_lib.h
--- 75844,75850 ----
8de23ba778cf0de79f0f7485cdd011f1 libgomp/oacc-plugin.h
bb6e51d0cdfa0273e312a1d94cd8267c libgomp/omp.h.in
b37ea42e795b9cbd35f23f5db7acbdf1 libgomp/omp_lib.f90.in
! 59883b6c907068628562b409c263848d libgomp/omp_lib.h.in
1e9fac84b4e9d3f192178e1bdc98476d libgomp/openacc.f90
900ac4f99dff51c6b6c17812ebc01363 libgomp/openacc.h
9e113a865018c4e566739529320a8c12 libgomp/openacc_lib.h
*************** bb4331c4cc59998041f6d3fba93bf2e3 libgom
*** 75499,75505 ****
447c61ca370e8ecb19bd3cb10d9c5ade libgomp/single.c
ec301483e40c415b91ec0ece951a5d71 libgomp/splay-tree.c
06e808d378029a1f66b32055a24a5a81 libgomp/splay-tree.h
! e539840319cbc1113f95b1fb40476a06 libgomp/target.c
f58f73ebb04b83eaacf69fabf6450cfd libgomp/task.c
383c432e4635d249f8951c0189183d68 libgomp/taskloop.c
61195dc42744d9b5e4e7cf65947c1ce5 libgomp/team.c
--- 75864,75870 ----
447c61ca370e8ecb19bd3cb10d9c5ade libgomp/single.c
ec301483e40c415b91ec0ece951a5d71 libgomp/splay-tree.c
06e808d378029a1f66b32055a24a5a81 libgomp/splay-tree.h
! c8e96b8ea763e2e0d60dcd3a2ec629a4 libgomp/target.c
f58f73ebb04b83eaacf69fabf6450cfd libgomp/task.c
383c432e4635d249f8951c0189183d68 libgomp/taskloop.c
61195dc42744d9b5e4e7cf65947c1ce5 libgomp/team.c
*************** cae1fc2a9354c3a86718128ae4ce239b libgom
*** 75723,75728 ****
--- 76088,76095 ----
325bc05f5a92dc21b7b2f0ecf33f9322 libgomp/testsuite/libgomp.c++/udr-18.C
2866cb5ec4c037497e63a1d769f091ff libgomp/testsuite/libgomp.c++/udr-19.C
d781578fb089699e0ef346a39952f9ba libgomp/testsuite/libgomp.c++/udr-2.C
+ 5b4b50c570b25d55796124f11168988d libgomp/testsuite/libgomp.c++/udr-20.C
+ 66c3ee1d97bf98787c71112cad84a23b libgomp/testsuite/libgomp.c++/udr-21.C
9fbc10fae7a305b6bd8fea38417fa68d libgomp/testsuite/libgomp.c++/udr-3.C
ea9d7efadb5b2c25e305ce1e8aee8d04 libgomp/testsuite/libgomp.c++/udr-4.C
237e9df073e4ccf5adf875c41f053cb2 libgomp/testsuite/libgomp.c++/udr-5.C
*************** dff7a676c5c7625a109dad1fb29c317d libgom
*** 75792,75797 ****
--- 76159,76165 ----
4891b9bdc801db05683bb9bcd26d27c4 libgomp/testsuite/libgomp.c-c++-common/pr69389.c
4066b4a4600721101ac384b659311782 libgomp/testsuite/libgomp.c-c++-common/pr81875.c
08611a968d3d5d8544391a554aa64d2e libgomp/testsuite/libgomp.c-c++-common/pr83046.c
+ bbbd1b345adde5e2b11d48880c03841d libgomp/testsuite/libgomp.c-c++-common/pr93515.c
d66bb650f4953bee67dede99228fb94f libgomp/testsuite/libgomp.c-c++-common/simd-1.c
561437d7d3d7ef8ef34cb872b883ba18 libgomp/testsuite/libgomp.c-c++-common/simd-14.c
cbc1c46aca10b5056dd653273e1b22d3 libgomp/testsuite/libgomp.c-c++-common/simd-15.c
*************** b4c15022416962dcec51efe75df665a7 libgom
*** 76210,76215 ****
--- 76578,76584 ----
5e242c79f8a764b71861a1cef97787ba libgomp/testsuite/libgomp.fortran/async_io_6.f90
975fef1a87fe5f4e45bd6542c0fafca3 libgomp/testsuite/libgomp.fortran/async_io_7.f90
31240ed1ebd26bf4876192a37ac37526 libgomp/testsuite/libgomp.fortran/async_io_8.f90
+ 0cf6fc87987dbd18ee6f54a20ad2c091 libgomp/testsuite/libgomp.fortran/atomic1.f90
4d455a0a3b8e0006a359454c3fb17aec libgomp/testsuite/libgomp.fortran/cancel-do-1.f90
dd51543eb89b458e7a62739bd9e26d57 libgomp/testsuite/libgomp.fortran/cancel-do-2.f90
7f4a53305903de225bc7d7bb581cb477 libgomp/testsuite/libgomp.fortran/cancel-parallel-1.f90
*************** ec7407612efe0c12c7b39ced29c5050b libgom
*** 76932,76938 ****
587985ef7e9fc6203f8886fbafacf9f5 libgomp/testsuite/libgomp.oacc-fortran/routine-3.f90
576d913af18b8261f765fcf068efc278 libgomp/testsuite/libgomp.oacc-fortran/routine-4.f90
ee7521ad4aa9a4706a403ccbc2d58f80 libgomp/testsuite/libgomp.oacc-fortran/routine-5.f90
! 9c22090294819b2209bd05c79e5aa014 libgomp/testsuite/libgomp.oacc-fortran/routine-7.f90
33ef2e55343edd608f8494ebf9d3be7c libgomp/testsuite/libgomp.oacc-fortran/routine-9.f90
30b58eb5fb7d0736b1668c7122916117 libgomp/testsuite/libgomp.oacc-fortran/stop-1.f
800bf43223ada211bac30294146695ed libgomp/testsuite/libgomp.oacc-fortran/stop-2.f
--- 77301,77307 ----
587985ef7e9fc6203f8886fbafacf9f5 libgomp/testsuite/libgomp.oacc-fortran/routine-3.f90
576d913af18b8261f765fcf068efc278 libgomp/testsuite/libgomp.oacc-fortran/routine-4.f90
ee7521ad4aa9a4706a403ccbc2d58f80 libgomp/testsuite/libgomp.oacc-fortran/routine-5.f90
! 72f512627fac89dcf61bcaadae02b3ed libgomp/testsuite/libgomp.oacc-fortran/routine-7.f90
33ef2e55343edd608f8494ebf9d3be7c libgomp/testsuite/libgomp.oacc-fortran/routine-9.f90
30b58eb5fb7d0736b1668c7122916117 libgomp/testsuite/libgomp.oacc-fortran/stop-1.f
800bf43223ada211bac30294146695ed libgomp/testsuite/libgomp.oacc-fortran/stop-2.f
*************** ca78ca2ee2a528893865330c2b0d05bc libgom
*** 76942,76948 ****
e8a3245c095430c8ef2413afe2ee4c48 libgomp/testsuite/libgomp.oacc-fortran/update-1.f90
3a53883f5d7397a99e94574ae6990135 libgomp/testsuite/libgomp.oacc-fortran/vector-routine.f90
c2416ae6388a09109404b7dadd83d9e4 libgomp/work.c
! 274c455538f09e4153f31648fc4804fd libhsail-rt/ChangeLog
9147b482b39962a71e580b4a8265285e libhsail-rt/Makefile.am
5a060d9a3e645ad21b36810ed27d297d libhsail-rt/Makefile.in
de97a355fadb5753d182cbcf06b1b33a libhsail-rt/README
--- 77311,77317 ----
e8a3245c095430c8ef2413afe2ee4c48 libgomp/testsuite/libgomp.oacc-fortran/update-1.f90
3a53883f5d7397a99e94574ae6990135 libgomp/testsuite/libgomp.oacc-fortran/vector-routine.f90
c2416ae6388a09109404b7dadd83d9e4 libgomp/work.c
! 81cd0cd0fbd91dafdca4c218f9b931c0 libhsail-rt/ChangeLog
9147b482b39962a71e580b4a8265285e libhsail-rt/Makefile.am
5a060d9a3e645ad21b36810ed27d297d libhsail-rt/Makefile.in
de97a355fadb5753d182cbcf06b1b33a libhsail-rt/README
*************** f10d6eb004be00911c69df75394e3d61 libhsa
*** 76969,76975 ****
ef9f05873915c22cae79ef5545355353 libhsail-rt/target-config.h.in
99c2e5e712b990ee07be10f53e41f3fb libiberty/.gitignore
a916467b91076e631dd8edb7424769c7 libiberty/COPYING.LIB
! 5595d8d9c2d2515256376ba3dcf5b860 libiberty/ChangeLog
347c31392973de6a4872d540c1718dc1 libiberty/ChangeLog.jit
1072110de0e01a526aafb095b6560e58 libiberty/Makefile.in
c68dbf7834af4281ebd84caa3fd54680 libiberty/README
--- 77338,77344 ----
ef9f05873915c22cae79ef5545355353 libhsail-rt/target-config.h.in
99c2e5e712b990ee07be10f53e41f3fb libiberty/.gitignore
a916467b91076e631dd8edb7424769c7 libiberty/COPYING.LIB
! f4ddb889abb86555db679b34c8636e5d libiberty/ChangeLog
347c31392973de6a4872d540c1718dc1 libiberty/ChangeLog.jit
1072110de0e01a526aafb095b6560e58 libiberty/Makefile.in
c68dbf7834af4281ebd84caa3fd54680 libiberty/README
*************** f91b8d5d7816eef3e17ef2622beab65e libibe
*** 77077,77083 ****
65ca0a3d9be3ce891340f1eae754fa19 libiberty/simple-object-elf.c
da5f132ac5b6c17d4a80b113fa724a27 libiberty/simple-object-mach-o.c
3648de68e0eb13c0a308c30c79366a4d libiberty/simple-object-xcoff.c
! 9acdd37de46b645a4ee9bbfac819c317 libiberty/simple-object.c
4863a11e04a2021af582edf86f156954 libiberty/simple-object.txh
ad3626eaffd230176312abb2d2f61577 libiberty/snprintf.c
c6f7ab2ab64bc6d2555f5ee10045b339 libiberty/sort.c
--- 77446,77452 ----
65ca0a3d9be3ce891340f1eae754fa19 libiberty/simple-object-elf.c
da5f132ac5b6c17d4a80b113fa724a27 libiberty/simple-object-mach-o.c
3648de68e0eb13c0a308c30c79366a4d libiberty/simple-object-xcoff.c
! 60d3bb6bb031170ed67c77dcb90c9430 libiberty/simple-object.c
4863a11e04a2021af582edf86f156954 libiberty/simple-object.txh
ad3626eaffd230176312abb2d2f61577 libiberty/snprintf.c
c6f7ab2ab64bc6d2555f5ee10045b339 libiberty/sort.c
*************** b2c289eb14e9197dcad172f3acba12b7 libibe
*** 77133,77139 ****
6f774a92661ca4a067f1691a7925524b libiberty/xstrerror.c
b401cc074ea4e0b9d4099f3f76045da0 libiberty/xstrndup.c
9dc48fda00a709b3019aa09eedd3cb6c libiberty/xvasprintf.c
! b2b04fa0f3182864777e784e65003fb7 libitm/ChangeLog
5976dc97f843f5680c4fa615f8c3b1b7 libitm/Makefile.am
e52686e01bf9c75ace85d9d5d66a8f26 libitm/Makefile.in
c93a1d287ee8fdbc9c0533b3ca5cffb1 libitm/aatree.cc
--- 77502,77508 ----
6f774a92661ca4a067f1691a7925524b libiberty/xstrerror.c
b401cc074ea4e0b9d4099f3f76045da0 libiberty/xstrndup.c
9dc48fda00a709b3019aa09eedd3cb6c libiberty/xvasprintf.c
! 1e72ce6db8ac09d00c81af4e830c537f libitm/ChangeLog
5976dc97f843f5680c4fa615f8c3b1b7 libitm/Makefile.am
e52686e01bf9c75ace85d9d5d66a8f26 libitm/Makefile.in
c93a1d287ee8fdbc9c0533b3ca5cffb1 libitm/aatree.cc
*************** b4e503ecfdccc9f13da8f73eeb6f23a9 libitm
*** 77236,77242 ****
ef24198422c19f99b0c41be6a16f7081 libitm/testsuite/libitm.c/txrelease.c
122a1ebf1162054c022a63be5e3b054a libitm/useraction.cc
513489f9cf00f7f1db7cdd8d19e45c7c libitm/util.cc
! 90bdcadf22d6bb6a3d830dea27d6e1af libobjc/ChangeLog
49cbb3d12e03687aa775d9d5152c4f35 libobjc/Makefile.in
c31835938c8e167ea525cd5fdaf375d9 libobjc/NXConstStr.m
6b956f327bd823041a4227f02091dee7 libobjc/Object.m
--- 77605,77611 ----
ef24198422c19f99b0c41be6a16f7081 libitm/testsuite/libitm.c/txrelease.c
122a1ebf1162054c022a63be5e3b054a libitm/useraction.cc
513489f9cf00f7f1db7cdd8d19e45c7c libitm/util.cc
! 383e44aa2de03ca321c66102f7e63510 libobjc/ChangeLog
49cbb3d12e03687aa775d9d5152c4f35 libobjc/Makefile.in
c31835938c8e167ea525cd5fdaf375d9 libobjc/NXConstStr.m
6b956f327bd823041a4227f02091dee7 libobjc/Object.m
*************** ed1131608f0e1f8a6ee6813ddf861c77 libobj
*** 77293,77299 ****
d21209d281b7fac0c980e2e00fe20da6 libobjc/selector.c
7392129772c6d373ef507e60dd855223 libobjc/sendmsg.c
43acbcc5fb5a8b498cc7ff08057d35b1 libobjc/thr.c
! 83129d1ffc256ac5060ae5701cba98aa liboffloadmic/ChangeLog
99e2b0817f42c602b520261f7dee183b liboffloadmic/Makefile.am
3d4335846c6486ad0e619e33a95c2b1f liboffloadmic/Makefile.in
7b741af741f39418ab3c1f0be89505e1 liboffloadmic/aclocal.m4
--- 77662,77668 ----
d21209d281b7fac0c980e2e00fe20da6 libobjc/selector.c
7392129772c6d373ef507e60dd855223 libobjc/sendmsg.c
43acbcc5fb5a8b498cc7ff08057d35b1 libobjc/thr.c
! 6aef855bffce07fe8298c653075de3fc liboffloadmic/ChangeLog
99e2b0817f42c602b520261f7dee183b liboffloadmic/Makefile.am
3d4335846c6486ad0e619e33a95c2b1f liboffloadmic/Makefile.in
7b741af741f39418ab3c1f0be89505e1 liboffloadmic/aclocal.m4
*************** b1def68202639bd452fb59aea3371fe4 liboff
*** 77381,77387 ****
4659326a13bd5fed47bb680ddb6f5dc3 liboffloadmic/runtime/orsl-lite/include/orsl-lite.h
cc603cdf253cc686bfcee192bb7630df liboffloadmic/runtime/orsl-lite/lib/orsl-lite.c
dff5c8575c49d6aa71e549b0fa021479 liboffloadmic/runtime/orsl-lite/version.txt
! 5307deb271e7f458ed2b1a6fce00b845 libphobos/ChangeLog
da627c4c662405d686ccd633f59112a0 libphobos/Makefile.am
11ff255ada45e83558a846f1cebff64b libphobos/Makefile.in
ee88c20a7744a2305503e1670f3b7889 libphobos/README.gcc
--- 77750,77756 ----
4659326a13bd5fed47bb680ddb6f5dc3 liboffloadmic/runtime/orsl-lite/include/orsl-lite.h
cc603cdf253cc686bfcee192bb7630df liboffloadmic/runtime/orsl-lite/lib/orsl-lite.c
dff5c8575c49d6aa71e549b0fa021479 liboffloadmic/runtime/orsl-lite/version.txt
! ff44876b07e439045501f241b8f28501 libphobos/ChangeLog
da627c4c662405d686ccd633f59112a0 libphobos/Makefile.am
11ff255ada45e83558a846f1cebff64b libphobos/Makefile.in
ee88c20a7744a2305503e1670f3b7889 libphobos/README.gcc
*************** e286530c1673eab67616befb2f26f1a7 libpho
*** 78036,78042 ****
759b4120c236756d432abefcd2490546 libphobos/testsuite/Makefile.in
ada84264d633b7a6efc7406c7f14d833 libphobos/testsuite/config/default.exp
d935c59358372092300cc5c5d5660547 libphobos/testsuite/lib/libphobos-dg.exp
! 442b87f318676164fb920ce7890e6f6b libphobos/testsuite/lib/libphobos.exp
3bfe0f9c10561eb84fb1bf6f955f49fe libphobos/testsuite/libphobos.aa/aa.exp
bc5e4ff02f931c6e4092411c492a23eb libphobos/testsuite/libphobos.aa/test_aa.d
be293a36c3d9678d428d5ff9b4f5c5fa libphobos/testsuite/libphobos.allocations/allocations.exp
--- 78405,78411 ----
759b4120c236756d432abefcd2490546 libphobos/testsuite/Makefile.in
ada84264d633b7a6efc7406c7f14d833 libphobos/testsuite/config/default.exp
d935c59358372092300cc5c5d5660547 libphobos/testsuite/lib/libphobos-dg.exp
! 094f512d775d18e33e63d4b6c471d1f7 libphobos/testsuite/lib/libphobos.exp
3bfe0f9c10561eb84fb1bf6f955f49fe libphobos/testsuite/libphobos.aa/aa.exp
bc5e4ff02f931c6e4092411c492a23eb libphobos/testsuite/libphobos.aa/test_aa.d
be293a36c3d9678d428d5ff9b4f5c5fa libphobos/testsuite/libphobos.allocations/allocations.exp
*************** be293a36c3d9678d428d5ff9b4f5c5fa libpho
*** 78092,78098 ****
76010271744c121fab0096a61bb8f014 libphobos/testsuite/libphobos.typeinfo/typeinfo.exp
668bf1021ddcdd98e1a3977a43a339ff libphobos/testsuite/testsuite_flags.in
a916467b91076e631dd8edb7424769c7 libquadmath/COPYING.LIB
! f54dc35adf63b3debf248ef32608fcae libquadmath/ChangeLog
4696eddf264dd090e144b4849b0a6d91 libquadmath/Makefile.am
9fadb501b88c2f0e9444ac7d2a1d61f9 libquadmath/Makefile.in
d9afbc1f1e04c7e461265ff9323cc6f4 libquadmath/acinclude.m4
--- 78461,78467 ----
76010271744c121fab0096a61bb8f014 libphobos/testsuite/libphobos.typeinfo/typeinfo.exp
668bf1021ddcdd98e1a3977a43a339ff libphobos/testsuite/testsuite_flags.in
a916467b91076e631dd8edb7424769c7 libquadmath/COPYING.LIB
! 047ff5b53cac1c909a0a0897db128e25 libquadmath/ChangeLog
4696eddf264dd090e144b4849b0a6d91 libquadmath/Makefile.am
9fadb501b88c2f0e9444ac7d2a1d61f9 libquadmath/Makefile.in
d9afbc1f1e04c7e461265ff9323cc6f4 libquadmath/acinclude.m4
*************** e1960c6cccb78a5a2d60bdfe428c9d1b libqua
*** 78223,78229 ****
d2588a7f4e04e453e8926777100a5490 libquadmath/printf/submul_1.c
09d64fc2bb44de8641f6fb46b932ed17 libquadmath/quadmath-imp.h
50709da39971589779199b3433120e3e libquadmath/quadmath-rounding-mode.h
! 9c16aaef658bc695c16e614d6546abab libquadmath/quadmath.h
cd139c8f7066ccd99c46052b7b67b2cb libquadmath/quadmath.map
a21481cfd0382ef41901608376f2161c libquadmath/quadmath_weak.h
e766022f8615b72cbc38335d262e9d3d libquadmath/strtod/grouping.h
--- 78592,78598 ----
d2588a7f4e04e453e8926777100a5490 libquadmath/printf/submul_1.c
09d64fc2bb44de8641f6fb46b932ed17 libquadmath/quadmath-imp.h
50709da39971589779199b3433120e3e libquadmath/quadmath-rounding-mode.h
! 5d8430b45b7108d7bc3b0258d2ae154a libquadmath/quadmath.h
cd139c8f7066ccd99c46052b7b67b2cb libquadmath/quadmath.map
a21481cfd0382ef41901608376f2161c libquadmath/quadmath_weak.h
e766022f8615b72cbc38335d262e9d3d libquadmath/strtod/grouping.h
*************** a81cc82679e80c86cfbd5575867450d0 libqua
*** 78232,78238 ****
af84fa5118f4adec8393614994e1c4d6 libquadmath/strtod/strtoflt128.c
d15a18f7c46ba2add6148edc5b7563c0 libquadmath/strtod/tens_in_limb.c
12c73a846f7668d29de720bd79502bef libquadmath/update-quadmath.py
! 79416c953d4793fb2a31c4063eb404d5 libsanitizer/ChangeLog
0e35a2dc2727acc707a3f5ead45c8e12 libsanitizer/HOWTO_MERGE
0249c37748936faf5b1efd5789587909 libsanitizer/LICENSE.TXT
02afc6c39fa03cf9664b477a97d59d38 libsanitizer/LOCAL_PATCHES
--- 78601,78607 ----
af84fa5118f4adec8393614994e1c4d6 libquadmath/strtod/strtoflt128.c
d15a18f7c46ba2add6148edc5b7563c0 libquadmath/strtod/tens_in_limb.c
12c73a846f7668d29de720bd79502bef libquadmath/update-quadmath.py
! d5565ce3aa01bd810f896262292968ea libsanitizer/ChangeLog
0e35a2dc2727acc707a3f5ead45c8e12 libsanitizer/HOWTO_MERGE
0249c37748936faf5b1efd5789587909 libsanitizer/LICENSE.TXT
02afc6c39fa03cf9664b477a97d59d38 libsanitizer/LOCAL_PATCHES
*************** d15a18f7c46ba2add6148edc5b7563c0 libqua
*** 78242,78249 ****
86d7961250addd460750856d5b7b6914 libsanitizer/README.gcc
9fefac8c0974bfaa97f7bd2eba2ecb55 libsanitizer/acinclude.m4
0eb5bd7778e98c268a4bbda729856934 libsanitizer/aclocal.m4
! 5aaca9440d5995a1523bfe0f78337102 libsanitizer/asan/Makefile.am
! 551c39c3582c8d4521423965b4632fb3 libsanitizer/asan/Makefile.in
4e6a780316e676920638567be59145cd libsanitizer/asan/asan_activation.cc
17e04d539a658df3f9030c441a2a2aae libsanitizer/asan/asan_activation.h
517261ad793374c311a624f2679e24e4 libsanitizer/asan/asan_activation_flags.inc
--- 78611,78618 ----
86d7961250addd460750856d5b7b6914 libsanitizer/README.gcc
9fefac8c0974bfaa97f7bd2eba2ecb55 libsanitizer/acinclude.m4
0eb5bd7778e98c268a4bbda729856934 libsanitizer/aclocal.m4
! 9e3b279840cc19f536fb70500795017e libsanitizer/asan/Makefile.am
! ac31c5c56671219aaea2ced79db32e48 libsanitizer/asan/Makefile.in
4e6a780316e676920638567be59145cd libsanitizer/asan/asan_activation.cc
17e04d539a658df3f9030c441a2a2aae libsanitizer/asan/asan_activation.h
517261ad793374c311a624f2679e24e4 libsanitizer/asan/asan_activation_flags.inc
*************** dba403395f0645ea153ea6ffad6628b3 libsan
*** 78264,78270 ****
0d89953ffb150d0b8496d96fdf6ee734 libsanitizer/asan/asan_globals_win.cc
15b2b3b6333646c0365a30c200e68cfa libsanitizer/asan/asan_init_version.h
865b9f377aa29ce5901cfdc83ba625a6 libsanitizer/asan/asan_interceptors.cc
! 2370ea02e2cb0576fd6b17fa57938ac0 libsanitizer/asan/asan_interceptors.h
c2f7fad2ce0beb6ccbf3fae74cbf3d9e libsanitizer/asan/asan_interceptors_memintrinsics.cc
ac94f07fb2b3f0f5520f9d94bf64478a libsanitizer/asan/asan_interceptors_memintrinsics.h
a2db438d49e9555d94a2a31d7a32441e libsanitizer/asan/asan_interface.inc
--- 78633,78639 ----
0d89953ffb150d0b8496d96fdf6ee734 libsanitizer/asan/asan_globals_win.cc
15b2b3b6333646c0365a30c200e68cfa libsanitizer/asan/asan_init_version.h
865b9f377aa29ce5901cfdc83ba625a6 libsanitizer/asan/asan_interceptors.cc
! 05787b5e8e4ceaaba333769a2022626d libsanitizer/asan/asan_interceptors.h
c2f7fad2ce0beb6ccbf3fae74cbf3d9e libsanitizer/asan/asan_interceptors_memintrinsics.cc
ac94f07fb2b3f0f5520f9d94bf64478a libsanitizer/asan/asan_interceptors_memintrinsics.h
a2db438d49e9555d94a2a31d7a32441e libsanitizer/asan/asan_interface.inc
*************** b13376bec07960426c192588b83bb501 libsan
*** 78311,78317 ****
4d6948c4912be5da16e30aac001b87d7 libsanitizer/config.h.in
ac791b019895f2556a9337a31a976abb libsanitizer/configure
65282c60cc518d54fef977442fd5fc47 libsanitizer/configure.ac
! aa80738efd3c894eb4be47c744bf28a5 libsanitizer/configure.tgt
f18c0f156937e228997f04bf89131c7b libsanitizer/include/sanitizer/allocator_interface.h
6560d8d3fd7ff220de86a8038a716d3f libsanitizer/include/sanitizer/asan_interface.h
169b5cb142d5b8f7c1d1c2a218250a0e libsanitizer/include/sanitizer/common_interface_defs.h
--- 78680,78686 ----
4d6948c4912be5da16e30aac001b87d7 libsanitizer/config.h.in
ac791b019895f2556a9337a31a976abb libsanitizer/configure
65282c60cc518d54fef977442fd5fc47 libsanitizer/configure.ac
! fecbe9ff3f58bad80d49953f7352845d libsanitizer/configure.tgt
f18c0f156937e228997f04bf89131c7b libsanitizer/include/sanitizer/allocator_interface.h
6560d8d3fd7ff220de86a8038a716d3f libsanitizer/include/sanitizer/asan_interface.h
169b5cb142d5b8f7c1d1c2a218250a0e libsanitizer/include/sanitizer/common_interface_defs.h
*************** ffeec15c30af600cdc42ab4b65bdce94 libsan
*** 78471,78478 ****
07da943fa99873be6ba25200d3c96bec libsanitizer/sanitizer_common/sanitizer_platform_limits_netbsd.h
5be769a539054f0f9fb2ff6441bacd50 libsanitizer/sanitizer_common/sanitizer_platform_limits_openbsd.cc
2c43d2575962d527b543028240661533 libsanitizer/sanitizer_common/sanitizer_platform_limits_openbsd.h
! b09e9249c2a4048a2af9c0a5fc459077 libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc
! 8e696ac2473e659ad9aa09b9ceb6c12b libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.h
2bf65900c91c899af372f1b6688fa5dc libsanitizer/sanitizer_common/sanitizer_platform_limits_solaris.cc
56b61ae5f649179a135e7b4ded147336 libsanitizer/sanitizer_common/sanitizer_platform_limits_solaris.h
1ab1c2512cb34fa7cadc6bf2261e9b1a libsanitizer/sanitizer_common/sanitizer_posix.cc
--- 78840,78847 ----
07da943fa99873be6ba25200d3c96bec libsanitizer/sanitizer_common/sanitizer_platform_limits_netbsd.h
5be769a539054f0f9fb2ff6441bacd50 libsanitizer/sanitizer_common/sanitizer_platform_limits_openbsd.cc
2c43d2575962d527b543028240661533 libsanitizer/sanitizer_common/sanitizer_platform_limits_openbsd.h
! 8b76649ac638fe2b62e4c72060366e45 libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc
! 4e5c526c7395532f61b14bf644b1a8fe libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.h
2bf65900c91c899af372f1b6688fa5dc libsanitizer/sanitizer_common/sanitizer_platform_limits_solaris.cc
56b61ae5f649179a135e7b4ded147336 libsanitizer/sanitizer_common/sanitizer_platform_limits_solaris.h
1ab1c2512cb34fa7cadc6bf2261e9b1a libsanitizer/sanitizer_common/sanitizer_posix.cc
*************** b490fcba1d9e0b70baffc8ce1a5c2085 libsan
*** 78642,78648 ****
46e3b6415e85a8bbfc9c5ea5256eba29 libsanitizer/ubsan/ubsan_win_dll_thunk.cc
a42bfadb27dcd986b87e4c05b987ec4f libsanitizer/ubsan/ubsan_win_dynamic_runtime_thunk.cc
84a8f5fe84b5ea37705699c82d3ceefc libsanitizer/ubsan/ubsan_win_weak_interception.cc
! 004eceff5addcf6c3cd4744a54e7239a libssp/ChangeLog
984b6fe21c33a4aa11a33239eba81164 libssp/Makefile.am
6159efc67a81fc0df755333b60ca43e1 libssp/Makefile.in
8539c68b9af7b02740719b1723cf0b52 libssp/aclocal.m4
--- 79011,79017 ----
46e3b6415e85a8bbfc9c5ea5256eba29 libsanitizer/ubsan/ubsan_win_dll_thunk.cc
a42bfadb27dcd986b87e4c05b987ec4f libsanitizer/ubsan/ubsan_win_dynamic_runtime_thunk.cc
84a8f5fe84b5ea37705699c82d3ceefc libsanitizer/ubsan/ubsan_win_weak_interception.cc
! 00571b7d94e850b7587585cc4d2c3502 libssp/ChangeLog
984b6fe21c33a4aa11a33239eba81164 libssp/Makefile.am
6159efc67a81fc0df755333b60ca43e1 libssp/Makefile.in
8539c68b9af7b02740719b1723cf0b52 libssp/aclocal.m4
*************** baba3a648adc99223302c44e85deca7d libssp
*** 78671,78677 ****
443b5ef0da3859ef66145b58138d0bc6 libssp/strncpy-chk.c
236980868c84657cf7f5af6a9b7e2e89 libssp/vsnprintf-chk.c
1a8676d98fbe8ac8bff6649570de529b libssp/vsprintf-chk.c
! c6c3910272086069bd79cbb0905e3690 libstdc++-v3/ChangeLog
7aa6c40440a44fcf5ec94c066160c2f8 libstdc++-v3/ChangeLog-1998
7aff86600b6a1ed3fa87305075a92db0 libstdc++-v3/ChangeLog-1999
a6f28e8fc9bb07696a9e068b439a3a87 libstdc++-v3/ChangeLog-2000
--- 79040,79046 ----
443b5ef0da3859ef66145b58138d0bc6 libssp/strncpy-chk.c
236980868c84657cf7f5af6a9b7e2e89 libssp/vsnprintf-chk.c
1a8676d98fbe8ac8bff6649570de529b libssp/vsprintf-chk.c
! 2fc2d844d2292eaf830f0db1996839c8 libstdc++-v3/ChangeLog
7aa6c40440a44fcf5ec94c066160c2f8 libstdc++-v3/ChangeLog-1998
7aff86600b6a1ed3fa87305075a92db0 libstdc++-v3/ChangeLog-1999
a6f28e8fc9bb07696a9e068b439a3a87 libstdc++-v3/ChangeLog-2000
*************** ced62eb7e4ae82690abb361aefcea876 libstd
*** 78696,78740 ****
dfed1d768aff6bd27d88698c3f79aed4 libstdc++-v3/Makefile.am
cd9b45698c7eca2af0e1532a92a2b2b8 libstdc++-v3/Makefile.in
f372af73db4ac0ad88e43199e1f29e08 libstdc++-v3/README
! b2d59b23157dbffd23af3e3f953c273a libstdc++-v3/acinclude.m4
20a060d0ef805a427a0557409e785c64 libstdc++-v3/aclocal.m4
! 0602e3e6bb540f56527e9c75de05b32a libstdc++-v3/config.h.in
6fda632cdcc18185f5e0591ce3f9f326 libstdc++-v3/config/abi/compatibility.h
! 7a727dc8079da9ef828996d663d2f9c4 libstdc++-v3/config/abi/post/aarch64-linux-gnu/baseline_symbols.txt
! f5bfb76447e675a88fa1dbb27d052e72 libstdc++-v3/config/abi/post/alpha-linux-gnu/baseline_symbols.txt
! 05790affbd0bc0e66e7575fcb3a5a20a libstdc++-v3/config/abi/post/hppa-linux-gnu/baseline_symbols.txt
! 397e14cb413f9b2bdc0cc99536f864ad libstdc++-v3/config/abi/post/i386-linux-gnu/baseline_symbols.txt
! a8d1262234034cf8fc6ec6d66b910cb4 libstdc++-v3/config/abi/post/i386-solaris2.10/amd64/baseline_symbols.txt
! 4ae0dc03c06abf3f5546d635ff263e2b libstdc++-v3/config/abi/post/i386-solaris2.10/baseline_symbols.txt
! 3d268e117f851d1590e24bb5d1b9c034 libstdc++-v3/config/abi/post/i386-solaris2.11/amd64/baseline_symbols.txt
! 281406f5f02a2019551f21d2e01971b0 libstdc++-v3/config/abi/post/i386-solaris2.11/baseline_symbols.txt
! 397e14cb413f9b2bdc0cc99536f864ad libstdc++-v3/config/abi/post/i486-linux-gnu/baseline_symbols.txt
dfcfb9f942fd2f3bb708bba897cf44f7 libstdc++-v3/config/abi/post/ia64-linux-gnu/baseline_symbols.txt
8d0df175ce03291bc1974a322a1559a7 libstdc++-v3/config/abi/post/m68k-linux-gnu/baseline_symbols.txt
61308215d393f11169ace76935f2b034 libstdc++-v3/config/abi/post/mips-linux-gnu/baseline_symbols.txt
725325d7b24195d1e6374ce4e24afdb0 libstdc++-v3/config/abi/post/mips64-linux-gnu/32/baseline_symbols.txt
907face03890009654193fc67fa4e427 libstdc++-v3/config/abi/post/mips64-linux-gnu/64/baseline_symbols.txt
1a34bda2bb4c3a576335343c0a4a9377 libstdc++-v3/config/abi/post/mips64-linux-gnu/baseline_symbols.txt
! 79e4319840f33d3997ff467c694bf299 libstdc++-v3/config/abi/post/powerpc-linux-gnu/baseline_symbols.txt
! 79e4319840f33d3997ff467c694bf299 libstdc++-v3/config/abi/post/powerpc64-linux-gnu/32/baseline_symbols.txt
! e1353394a552e16f06f154deae041229 libstdc++-v3/config/abi/post/powerpc64-linux-gnu/baseline_symbols.txt
a9aac5694e8c5562c01fd055a7f55f3a libstdc++-v3/config/abi/post/riscv64-linux-gnu/baseline_symbols.txt
3ec228e0d9301df0938cba4a7fb94374 libstdc++-v3/config/abi/post/s390-linux-gnu/baseline_symbols.txt
3ec228e0d9301df0938cba4a7fb94374 libstdc++-v3/config/abi/post/s390x-linux-gnu/32/baseline_symbols.txt
! e1353394a552e16f06f154deae041229 libstdc++-v3/config/abi/post/s390x-linux-gnu/baseline_symbols.txt
cc65678819ec7ff06eaeed8b1a5455eb libstdc++-v3/config/abi/post/sparc-linux-gnu/baseline_symbols.txt
! 4380928964e361590b8c3751d00f8eb0 libstdc++-v3/config/abi/post/sparc-solaris2.10/baseline_symbols.txt
! 289166285c2a6c4a45f0b98a1b71bc74 libstdc++-v3/config/abi/post/sparc-solaris2.10/sparcv9/baseline_symbols.txt
! 63c3500b921c30b44234bd5d5294f7ce libstdc++-v3/config/abi/post/sparc-solaris2.11/baseline_symbols.txt
! ef1ea53f10bcfe80bee7d219b86cbcd3 libstdc++-v3/config/abi/post/sparc-solaris2.11/sparcv9/baseline_symbols.txt
9f08f35277da85d7af2abcc606521ea7 libstdc++-v3/config/abi/post/sparc64-linux-gnu/32/baseline_symbols.txt
1e1b81f23455d260ec278dfe7d20cdde libstdc++-v3/config/abi/post/sparc64-linux-gnu/baseline_symbols.txt
! 397e14cb413f9b2bdc0cc99536f864ad libstdc++-v3/config/abi/post/x86_64-linux-gnu/32/baseline_symbols.txt
! 22b4897d3d96b32159e51c994be69089 libstdc++-v3/config/abi/post/x86_64-linux-gnu/baseline_symbols.txt
! f1b98dfc6672b72cd4124d9a4f9cebc1 libstdc++-v3/config/abi/post/x86_64-linux-gnu/x32/baseline_symbols.txt
5c4c38aeca254313c616b84337c937c3 libstdc++-v3/config/abi/pre/float128.ver
2f5cffd20c416bb77319bb7c5371530d libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver
! 1e72c61de179da3e6d550d9ae211b4c7 libstdc++-v3/config/abi/pre/gnu.ver
b01f8da8f4373070847fe317fe8a546e libstdc++-v3/config/abi/pre/none.ver
bbbec112af792161a90fe0016f6510f1 libstdc++-v3/config/allocator/bitmap_allocator_base.h
55b281f9fbbd0c12fe5a2e3024a8571f libstdc++-v3/config/allocator/malloc_allocator_base.h
--- 79065,79109 ----
dfed1d768aff6bd27d88698c3f79aed4 libstdc++-v3/Makefile.am
cd9b45698c7eca2af0e1532a92a2b2b8 libstdc++-v3/Makefile.in
f372af73db4ac0ad88e43199e1f29e08 libstdc++-v3/README
! 2d40218a8e803b07e5136b8d2fd08138 libstdc++-v3/acinclude.m4
20a060d0ef805a427a0557409e785c64 libstdc++-v3/aclocal.m4
! 442b35c24ce843f7659c27efeef15681 libstdc++-v3/config.h.in
6fda632cdcc18185f5e0591ce3f9f326 libstdc++-v3/config/abi/compatibility.h
! aaaea64eea99c4393798e9b001a4785f libstdc++-v3/config/abi/post/aarch64-linux-gnu/baseline_symbols.txt
! 5020f43324169200833b3209328aab28 libstdc++-v3/config/abi/post/alpha-linux-gnu/baseline_symbols.txt
! 6e3e14e884cffc8e7c9af2a34c0bcaba libstdc++-v3/config/abi/post/hppa-linux-gnu/baseline_symbols.txt
! 6e4b5a3d0e11bf1937bc15d532f85b34 libstdc++-v3/config/abi/post/i386-linux-gnu/baseline_symbols.txt
! 605dc4cbc13bec5ee34801e69b774d86 libstdc++-v3/config/abi/post/i386-solaris2.10/amd64/baseline_symbols.txt
! 3dd017804979b48814893c0620555170 libstdc++-v3/config/abi/post/i386-solaris2.10/baseline_symbols.txt
! a08d324e42a885dfdfed5550fb42a2ad libstdc++-v3/config/abi/post/i386-solaris2.11/amd64/baseline_symbols.txt
! 50b1cd4db20a3ed2433a8a67ffba4ace libstdc++-v3/config/abi/post/i386-solaris2.11/baseline_symbols.txt
! 6e4b5a3d0e11bf1937bc15d532f85b34 libstdc++-v3/config/abi/post/i486-linux-gnu/baseline_symbols.txt
dfcfb9f942fd2f3bb708bba897cf44f7 libstdc++-v3/config/abi/post/ia64-linux-gnu/baseline_symbols.txt
8d0df175ce03291bc1974a322a1559a7 libstdc++-v3/config/abi/post/m68k-linux-gnu/baseline_symbols.txt
61308215d393f11169ace76935f2b034 libstdc++-v3/config/abi/post/mips-linux-gnu/baseline_symbols.txt
725325d7b24195d1e6374ce4e24afdb0 libstdc++-v3/config/abi/post/mips64-linux-gnu/32/baseline_symbols.txt
907face03890009654193fc67fa4e427 libstdc++-v3/config/abi/post/mips64-linux-gnu/64/baseline_symbols.txt
1a34bda2bb4c3a576335343c0a4a9377 libstdc++-v3/config/abi/post/mips64-linux-gnu/baseline_symbols.txt
! a73d6731a1d687404052085bbed7f808 libstdc++-v3/config/abi/post/powerpc-linux-gnu/baseline_symbols.txt
! a73d6731a1d687404052085bbed7f808 libstdc++-v3/config/abi/post/powerpc64-linux-gnu/32/baseline_symbols.txt
! 5020f43324169200833b3209328aab28 libstdc++-v3/config/abi/post/powerpc64-linux-gnu/baseline_symbols.txt
a9aac5694e8c5562c01fd055a7f55f3a libstdc++-v3/config/abi/post/riscv64-linux-gnu/baseline_symbols.txt
3ec228e0d9301df0938cba4a7fb94374 libstdc++-v3/config/abi/post/s390-linux-gnu/baseline_symbols.txt
3ec228e0d9301df0938cba4a7fb94374 libstdc++-v3/config/abi/post/s390x-linux-gnu/32/baseline_symbols.txt
! 5020f43324169200833b3209328aab28 libstdc++-v3/config/abi/post/s390x-linux-gnu/baseline_symbols.txt
cc65678819ec7ff06eaeed8b1a5455eb libstdc++-v3/config/abi/post/sparc-linux-gnu/baseline_symbols.txt
! dc19a7e4589135307caffe840085b0c2 libstdc++-v3/config/abi/post/sparc-solaris2.10/baseline_symbols.txt
! 56fee659cd613d497d9ac71d86610514 libstdc++-v3/config/abi/post/sparc-solaris2.10/sparcv9/baseline_symbols.txt
! 6e7523999a4d2fb352d064ee08b68808 libstdc++-v3/config/abi/post/sparc-solaris2.11/baseline_symbols.txt
! 62ef2dd7ce488a45587cb88629136b92 libstdc++-v3/config/abi/post/sparc-solaris2.11/sparcv9/baseline_symbols.txt
9f08f35277da85d7af2abcc606521ea7 libstdc++-v3/config/abi/post/sparc64-linux-gnu/32/baseline_symbols.txt
1e1b81f23455d260ec278dfe7d20cdde libstdc++-v3/config/abi/post/sparc64-linux-gnu/baseline_symbols.txt
! 6e4b5a3d0e11bf1937bc15d532f85b34 libstdc++-v3/config/abi/post/x86_64-linux-gnu/32/baseline_symbols.txt
! a288ff740c8b6244f5e1808c2787428e libstdc++-v3/config/abi/post/x86_64-linux-gnu/baseline_symbols.txt
! 3639ed81c7865f15cda54d5319f21e75 libstdc++-v3/config/abi/post/x86_64-linux-gnu/x32/baseline_symbols.txt
5c4c38aeca254313c616b84337c937c3 libstdc++-v3/config/abi/pre/float128.ver
2f5cffd20c416bb77319bb7c5371530d libstdc++-v3/config/abi/pre/gnu-versioned-namespace.ver
! 31fbc4ce7f565a3742a25f06afe02cb8 libstdc++-v3/config/abi/pre/gnu.ver
b01f8da8f4373070847fe317fe8a546e libstdc++-v3/config/abi/pre/none.ver
bbbec112af792161a90fe0016f6510f1 libstdc++-v3/config/allocator/bitmap_allocator_base.h
55b281f9fbbd0c12fe5a2e3024a8571f libstdc++-v3/config/allocator/malloc_allocator_base.h
*************** fe666dcb7d3f59d5bee84928182b84e4 libstd
*** 78891,78902 ****
6274544df634836bfd83ce5df142154f libstdc++-v3/config/os/vxworks/ctype_configure_char.cc
e8c064c36ffe6f7cf6de50f5997428f9 libstdc++-v3/config/os/vxworks/ctype_inline.h
7b4a49f873dffd61d3109d92fa8290d6 libstdc++-v3/config/os/vxworks/os_defines.h
! 86db52dc9f2394b05cb5fed524502473 libstdc++-v3/configure
! 3885d17dd7d6b035c825922bc5fb564a libstdc++-v3/configure.ac
dee74944513a38ef040d42eefb8abca2 libstdc++-v3/configure.host
144730fdfd14a84d91e900b5789970b8 libstdc++-v3/crossconfig.m4
! 9b7675bc42dc8990e2ce66ba8975876e libstdc++-v3/doc/Makefile.am
! 66015ce828278d34fc0bb568409a1bdf libstdc++-v3/doc/Makefile.in
3f7ff07f68cc7610addc1921bc125548 libstdc++-v3/doc/doxygen/Intro.3
3215079a853608466e10d602c96ee55e libstdc++-v3/doc/doxygen/doxygroups.cc
520db39aef0e2a59418132af88b897ed libstdc++-v3/doc/doxygen/mainpage.html
--- 79260,79271 ----
6274544df634836bfd83ce5df142154f libstdc++-v3/config/os/vxworks/ctype_configure_char.cc
e8c064c36ffe6f7cf6de50f5997428f9 libstdc++-v3/config/os/vxworks/ctype_inline.h
7b4a49f873dffd61d3109d92fa8290d6 libstdc++-v3/config/os/vxworks/os_defines.h
! 608ea05289db98e8995bbe4b2e281c5f libstdc++-v3/configure
! 486afd5bb9dc107aaab77fcb5b6ba258 libstdc++-v3/configure.ac
dee74944513a38ef040d42eefb8abca2 libstdc++-v3/configure.host
144730fdfd14a84d91e900b5789970b8 libstdc++-v3/crossconfig.m4
! d93fc4d32abab60fcb66a95a08c1f45d libstdc++-v3/doc/Makefile.am
! 3cea2fefa238da8d8cf524bf7c52f606 libstdc++-v3/doc/Makefile.in
3f7ff07f68cc7610addc1921bc125548 libstdc++-v3/doc/doxygen/Intro.3
3215079a853608466e10d602c96ee55e libstdc++-v3/doc/doxygen/doxygroups.cc
520db39aef0e2a59418132af88b897ed libstdc++-v3/doc/doxygen/mainpage.html
*************** ee599e042e0ab46c3d78dd8675b8ba7f libstd
*** 78907,78913 ****
edf4fe529876f5d89b6d9b73fe2569dc libstdc++-v3/doc/html/api.html
fd168dc2b2d0c12b1e17b40ffec96390 libstdc++-v3/doc/html/bk02.html
47886ba7da131bf3cbf81a27cada5f6f libstdc++-v3/doc/html/bk03.html
! 4105af65ab11d90999c926e6be14ec5f libstdc++-v3/doc/html/faq.html
1ae70f0bf94464b036515d333fff8ab2 libstdc++-v3/doc/html/images/confdeps.png
d7f63b43e9f4c39cf71de7585de522ee libstdc++-v3/doc/html/images/pbds_balls_and_bins.png
22eedc841676a98f8ae8b95131ac4d7e libstdc++-v3/doc/html/images/pbds_binary_priority_queue_int_push.png
--- 79276,79282 ----
edf4fe529876f5d89b6d9b73fe2569dc libstdc++-v3/doc/html/api.html
fd168dc2b2d0c12b1e17b40ffec96390 libstdc++-v3/doc/html/bk02.html
47886ba7da131bf3cbf81a27cada5f6f libstdc++-v3/doc/html/bk03.html
! 1d6878273835d3cad196580169aa5f42 libstdc++-v3/doc/html/faq.html
1ae70f0bf94464b036515d333fff8ab2 libstdc++-v3/doc/html/images/confdeps.png
d7f63b43e9f4c39cf71de7585de522ee libstdc++-v3/doc/html/images/pbds_balls_and_bins.png
22eedc841676a98f8ae8b95131ac4d7e libstdc++-v3/doc/html/images/pbds_binary_priority_queue_int_push.png
*************** d7249eb4d31bd107d0b09ea3c80cb723 libstd
*** 78988,78998 ****
33bc39e8f2d47f3d490d7ca7d4832b43 libstdc++-v3/doc/html/images/pbds_trie_node_updator_policy_cd.png
df705f3839120dcb896e9839cf3404d0 libstdc++-v3/doc/html/images/pbds_update_seq_diagram.png
2b9c9ea814853f5fd1c9da36542e0c44 libstdc++-v3/doc/html/index.html
! e0aa8760db8fa17a2ef71ec8587b099c libstdc++-v3/doc/html/manual/abi.html
4ce10e27356ac31a5b7962aecbeb3638 libstdc++-v3/doc/html/manual/algorithms.html
6edd74f143e0f774885896e693b001f1 libstdc++-v3/doc/html/manual/api.html
c238d7c6b71eaf7742a7e08d9231e804 libstdc++-v3/doc/html/manual/appendix.html
! 2e203459294270410e5c5c7c6dca5cd5 libstdc++-v3/doc/html/manual/appendix_contributing.html
0b45d6195986f5092b2354c1f678a790 libstdc++-v3/doc/html/manual/appendix_free.html
7bedd2c8f6a4683546db552dc3e8261f libstdc++-v3/doc/html/manual/appendix_gfdl.html
591d326276a88840564b33cbcbd7c4fa libstdc++-v3/doc/html/manual/appendix_gpl.html
--- 79357,79367 ----
33bc39e8f2d47f3d490d7ca7d4832b43 libstdc++-v3/doc/html/images/pbds_trie_node_updator_policy_cd.png
df705f3839120dcb896e9839cf3404d0 libstdc++-v3/doc/html/images/pbds_update_seq_diagram.png
2b9c9ea814853f5fd1c9da36542e0c44 libstdc++-v3/doc/html/index.html
! 20243e14faa1f034304c166dd000395b libstdc++-v3/doc/html/manual/abi.html
4ce10e27356ac31a5b7962aecbeb3638 libstdc++-v3/doc/html/manual/algorithms.html
6edd74f143e0f774885896e693b001f1 libstdc++-v3/doc/html/manual/api.html
c238d7c6b71eaf7742a7e08d9231e804 libstdc++-v3/doc/html/manual/appendix.html
! fd7e395b897066e7d5a445e73654946e libstdc++-v3/doc/html/manual/appendix_contributing.html
0b45d6195986f5092b2354c1f678a790 libstdc++-v3/doc/html/manual/appendix_free.html
7bedd2c8f6a4683546db552dc3e8261f libstdc++-v3/doc/html/manual/appendix_gfdl.html
591d326276a88840564b33cbcbd7c4fa libstdc++-v3/doc/html/manual/appendix_gpl.html
*************** a408b4344cc2b3b611b51146c0bab9a9 libstd
*** 79014,79020 ****
fc2f4ac9d9c05ca8c4dce6b46e259f97 libstdc++-v3/doc/html/manual/debug_mode_semantics.html
33325138d9fa5d5628cdb1dd11cdef77 libstdc++-v3/doc/html/manual/debug_mode_using.html
7bcc35e818f9360d10ecfe70e4dedcc0 libstdc++-v3/doc/html/manual/diagnostics.html
! 791871cc5df1be80a7e278273e67160e libstdc++-v3/doc/html/manual/documentation_hacking.html
c472d3d333cea10a613a5177af5b053a libstdc++-v3/doc/html/manual/dynamic_memory.html
55666dfa05ec7aae2596d6968f6fdb38 libstdc++-v3/doc/html/manual/errno.html
f5df2458b52ebaa400811787cbf348fa libstdc++-v3/doc/html/manual/ext_algorithms.html
--- 79383,79389 ----
fc2f4ac9d9c05ca8c4dce6b46e259f97 libstdc++-v3/doc/html/manual/debug_mode_semantics.html
33325138d9fa5d5628cdb1dd11cdef77 libstdc++-v3/doc/html/manual/debug_mode_using.html
7bcc35e818f9360d10ecfe70e4dedcc0 libstdc++-v3/doc/html/manual/diagnostics.html
! 055988fcbe6cfbad0ef20bd91b43fe20 libstdc++-v3/doc/html/manual/documentation_hacking.html
c472d3d333cea10a613a5177af5b053a libstdc++-v3/doc/html/manual/dynamic_memory.html
55666dfa05ec7aae2596d6968f6fdb38 libstdc++-v3/doc/html/manual/errno.html
f5df2458b52ebaa400811787cbf348fa libstdc++-v3/doc/html/manual/ext_algorithms.html
*************** cf360e652a99b60dfce0e335b47297ed libstd
*** 79034,79040 ****
708b45efad00fadde435d7e46fd7dde8 libstdc++-v3/doc/html/manual/facets.html
9b06f8b16b4ba69e1269f98bb22377f2 libstdc++-v3/doc/html/manual/fstreams.html
b404abb1e78a27e8a8980eb14ec27bab libstdc++-v3/doc/html/manual/generalized_numeric_operations.html
! e0a0d6969228dab53067aec56b5f62f9 libstdc++-v3/doc/html/manual/index.html
8687facb6d19ccc2a663efbc50e745a1 libstdc++-v3/doc/html/manual/internals.html
4f449eda01987147cfad282d538bfe3b libstdc++-v3/doc/html/manual/intro.html
46de5aefef02b8c599fc816bea53ae67 libstdc++-v3/doc/html/manual/io.html
--- 79403,79409 ----
708b45efad00fadde435d7e46fd7dde8 libstdc++-v3/doc/html/manual/facets.html
9b06f8b16b4ba69e1269f98bb22377f2 libstdc++-v3/doc/html/manual/fstreams.html
b404abb1e78a27e8a8980eb14ec27bab libstdc++-v3/doc/html/manual/generalized_numeric_operations.html
! d8b244a61f1e7a3880fd5fdd70e054e7 libstdc++-v3/doc/html/manual/index.html
8687facb6d19ccc2a663efbc50e745a1 libstdc++-v3/doc/html/manual/internals.html
4f449eda01987147cfad282d538bfe3b libstdc++-v3/doc/html/manual/intro.html
46de5aefef02b8c599fc816bea53ae67 libstdc++-v3/doc/html/manual/io.html
*************** e0a0d6969228dab53067aec56b5f62f9 libstd
*** 79043,79049 ****
ae9b2e57903953c857a0a2314010036c libstdc++-v3/doc/html/manual/license.html
69cfb7ea1d69c38e3d673ba9f4a7c3ba libstdc++-v3/doc/html/manual/localization.html
9d7282a3a92209b987a91b15973414af libstdc++-v3/doc/html/manual/make.html
! b27cc9be60d4ea8b1fc25d28594f3802 libstdc++-v3/doc/html/manual/memory.html
4970f8a0270bd70ee4f48d19c4782afc libstdc++-v3/doc/html/manual/mt_allocator.html
0ade9da6c1a80afa0f9e498caea2faf9 libstdc++-v3/doc/html/manual/mt_allocator_design.html
6cedc0933aa9ffe31dbea517db997b9e libstdc++-v3/doc/html/manual/mt_allocator_ex_multi.html
--- 79412,79418 ----
ae9b2e57903953c857a0a2314010036c libstdc++-v3/doc/html/manual/license.html
69cfb7ea1d69c38e3d673ba9f4a7c3ba libstdc++-v3/doc/html/manual/localization.html
9d7282a3a92209b987a91b15973414af libstdc++-v3/doc/html/manual/make.html
! 12bf913dfaa6bd27eea7afe4169a4f5e libstdc++-v3/doc/html/manual/memory.html
4970f8a0270bd70ee4f48d19c4782afc libstdc++-v3/doc/html/manual/mt_allocator.html
0ade9da6c1a80afa0f9e498caea2faf9 libstdc++-v3/doc/html/manual/mt_allocator_design.html
6cedc0933aa9ffe31dbea517db997b9e libstdc++-v3/doc/html/manual/mt_allocator_ex_multi.html
*************** d55e182adbf08772ec85b18d390b0dbb libstd
*** 79073,79079 ****
94a606d009c84c4160e2b0557563c305 libstdc++-v3/doc/html/manual/source_code_style.html
f875f3f4cddfe4fee6aff2308ccb4563 libstdc++-v3/doc/html/manual/source_design_notes.html
f87298c8974ee33f2519348430b786ae libstdc++-v3/doc/html/manual/source_organization.html
! 77a5d8cae2c9d9088c81724c15961637 libstdc++-v3/doc/html/manual/status.html
9e6cce6bed38f62648e12eb77363d1fc libstdc++-v3/doc/html/manual/std_contents.html
dbb5f81a9e8864374fbb835eaa4e8b0d libstdc++-v3/doc/html/manual/streambufs.html
47e6a6ef4752e7c7e3ecb2a4948a7514 libstdc++-v3/doc/html/manual/strings.html
--- 79442,79448 ----
94a606d009c84c4160e2b0557563c305 libstdc++-v3/doc/html/manual/source_code_style.html
f875f3f4cddfe4fee6aff2308ccb4563 libstdc++-v3/doc/html/manual/source_design_notes.html
f87298c8974ee33f2519348430b786ae libstdc++-v3/doc/html/manual/source_organization.html
! 9fdd78db266058bff428231e166e0611 libstdc++-v3/doc/html/manual/status.html
9e6cce6bed38f62648e12eb77363d1fc libstdc++-v3/doc/html/manual/std_contents.html
dbb5f81a9e8864374fbb835eaa4e8b0d libstdc++-v3/doc/html/manual/streambufs.html
47e6a6ef4752e7c7e3ecb2a4948a7514 libstdc++-v3/doc/html/manual/strings.html
*************** d881fcffb799c09a28d8174ccb1326a2 libstd
*** 79097,79103 ****
f5a41d4f7585b850b3182fc5f4888f93 libstdc++-v3/doc/xml/book.txml
95d1335e76860d53246f3e400231ec38 libstdc++-v3/doc/xml/chapter.txml
7f8c520dc83013026c671c5c342f73e2 libstdc++-v3/doc/xml/class.txml
! 0ec038713dd673b8c72a2c1264a9f652 libstdc++-v3/doc/xml/faq.xml
f7459abb0d4a0265176aaada5a73bd08 libstdc++-v3/doc/xml/gnu/fdl-1.3.xml
ce8b7bb016788256ca00fdec28d82bc3 libstdc++-v3/doc/xml/gnu/gpl-3.0.xml
18a6390297702ec8fd75cbcc525d2005 libstdc++-v3/doc/xml/images/confdeps.dot
--- 79466,79472 ----
f5a41d4f7585b850b3182fc5f4888f93 libstdc++-v3/doc/xml/book.txml
95d1335e76860d53246f3e400231ec38 libstdc++-v3/doc/xml/chapter.txml
7f8c520dc83013026c671c5c342f73e2 libstdc++-v3/doc/xml/class.txml
! 898d8d638c878045b8e5910dd2490fbd libstdc++-v3/doc/xml/faq.xml
f7459abb0d4a0265176aaada5a73bd08 libstdc++-v3/doc/xml/gnu/fdl-1.3.xml
ce8b7bb016788256ca00fdec28d82bc3 libstdc++-v3/doc/xml/gnu/gpl-3.0.xml
18a6390297702ec8fd75cbcc525d2005 libstdc++-v3/doc/xml/images/confdeps.dot
*************** cc132f90a00a3ca05f64b578f9e332aa libstd
*** 79277,79286 ****
f63bfdc03ba2b82c74864f02206d7c52 libstdc++-v3/doc/xml/images/pbds_tree_text_lor_find.svg
33bc39e8f2d47f3d490d7ca7d4832b43 libstdc++-v3/doc/xml/images/pbds_trie_node_updator_policy_cd.png
df705f3839120dcb896e9839cf3404d0 libstdc++-v3/doc/xml/images/pbds_update_seq_diagram.png
! 015924354a3e63c14aa1d7c0c240a20e libstdc++-v3/doc/xml/manual/abi.xml
6a68f07a8b8abd9e65846432ed52d646 libstdc++-v3/doc/xml/manual/algorithms.xml
! c6140234fa41c20336cc84667e6939ce libstdc++-v3/doc/xml/manual/allocator.xml
! b06c7d4934846623f43ca218d68492c7 libstdc++-v3/doc/xml/manual/appendix_contributing.xml
2de6516b70a1010a37be27c15ddf0a51 libstdc++-v3/doc/xml/manual/appendix_free.xml
fddfbac311009ebd3056c4edd7ee522a libstdc++-v3/doc/xml/manual/appendix_porting.xml
e0b6ea09e982758f8a79d0d165939943 libstdc++-v3/doc/xml/manual/atomics.xml
--- 79646,79655 ----
f63bfdc03ba2b82c74864f02206d7c52 libstdc++-v3/doc/xml/images/pbds_tree_text_lor_find.svg
33bc39e8f2d47f3d490d7ca7d4832b43 libstdc++-v3/doc/xml/images/pbds_trie_node_updator_policy_cd.png
df705f3839120dcb896e9839cf3404d0 libstdc++-v3/doc/xml/images/pbds_update_seq_diagram.png
! fa233be57b5f3ee6bdef62d585d5fdcc libstdc++-v3/doc/xml/manual/abi.xml
6a68f07a8b8abd9e65846432ed52d646 libstdc++-v3/doc/xml/manual/algorithms.xml
! ec23f5eff319300871b3b27bb48dc740 libstdc++-v3/doc/xml/manual/allocator.xml
! 7118d1ee7ac88107708c3feaedcf0475 libstdc++-v3/doc/xml/manual/appendix_contributing.xml
2de6516b70a1010a37be27c15ddf0a51 libstdc++-v3/doc/xml/manual/appendix_free.xml
fddfbac311009ebd3056c4edd7ee522a libstdc++-v3/doc/xml/manual/appendix_porting.xml
e0b6ea09e982758f8a79d0d165939943 libstdc++-v3/doc/xml/manual/atomics.xml
*************** e0b6ea09e982758f8a79d0d165939943 libstd
*** 79297,79303 ****
4906f9b3ace8b160c77a6f2fe898b2d7 libstdc++-v3/doc/xml/manual/debug.xml
c2b5fe8f3aba75d63e43dedc1c66c9a1 libstdc++-v3/doc/xml/manual/debug_mode.xml
f0323e43ff8fc1ca28dcdfae61b6cb19 libstdc++-v3/doc/xml/manual/diagnostics.xml
! 6c3570773aee30bdffd03aa0fc6741b5 libstdc++-v3/doc/xml/manual/documentation_hacking.xml
ad13daa09172cf901cd8d01d9e35c681 libstdc++-v3/doc/xml/manual/evolution.xml
0b02d119b1665c496d206d7b14a57999 libstdc++-v3/doc/xml/manual/extensions.xml
26083dec441281888a23365de5567180 libstdc++-v3/doc/xml/manual/internals.xml
--- 79666,79672 ----
4906f9b3ace8b160c77a6f2fe898b2d7 libstdc++-v3/doc/xml/manual/debug.xml
c2b5fe8f3aba75d63e43dedc1c66c9a1 libstdc++-v3/doc/xml/manual/debug_mode.xml
f0323e43ff8fc1ca28dcdfae61b6cb19 libstdc++-v3/doc/xml/manual/diagnostics.xml
! 8ca3e75e12c03337498efbb5caef5f62 libstdc++-v3/doc/xml/manual/documentation_hacking.xml
ad13daa09172cf901cd8d01d9e35c681 libstdc++-v3/doc/xml/manual/evolution.xml
0b02d119b1665c496d206d7b14a57999 libstdc++-v3/doc/xml/manual/extensions.xml
26083dec441281888a23365de5567180 libstdc++-v3/doc/xml/manual/internals.xml
*************** f6cecb4b0cc60cea5bb4c4699b496f74 libstd
*** 79315,79329 ****
4e49a8e041ae187579c7683d4b840fc4 libstdc++-v3/doc/xml/manual/prerequisites.xml
a8beb27d3ad616a9fb4f867d1d2091f1 libstdc++-v3/doc/xml/manual/profile_mode.xml
d006612b2e21ab181c25bc88697b4543 libstdc++-v3/doc/xml/manual/shared_ptr.xml
! 3d5f1e35d73f54bb6ba7e64b227bba00 libstdc++-v3/doc/xml/manual/spine.xml
! dbbc0a4ffa7e564eb59e5595a11a7511 libstdc++-v3/doc/xml/manual/status_cxx1998.xml
! 3859d81c49dcfa127c564d5070831837 libstdc++-v3/doc/xml/manual/status_cxx2011.xml
! 0a178147c06e9eb28044000cb25e4112 libstdc++-v3/doc/xml/manual/status_cxx2014.xml
! 1f7687370c4dd89ee1e1fdf8bccfd9dd libstdc++-v3/doc/xml/manual/status_cxx2017.xml
! fdc6f64bb20e08eb91d244e8e261bd1c libstdc++-v3/doc/xml/manual/status_cxx2020.xml
3c72998c4574690fac280c058a0db757 libstdc++-v3/doc/xml/manual/status_cxxis29124.xml
! 0328d8bf2d7935051ce9dc880ef63b6d libstdc++-v3/doc/xml/manual/status_cxxtr1.xml
! 716409ea4f3fdc47d1b88cc8ac63b392 libstdc++-v3/doc/xml/manual/status_cxxtr24733.xml
1ea4904f13ba196db9689534b653622f libstdc++-v3/doc/xml/manual/strings.xml
1e5f588c3483a25ed93d7bca5ba4fa68 libstdc++-v3/doc/xml/manual/support.xml
ba5b083d25092e77bbb681596ab0b11b libstdc++-v3/doc/xml/manual/test.xml
--- 79684,79698 ----
4e49a8e041ae187579c7683d4b840fc4 libstdc++-v3/doc/xml/manual/prerequisites.xml
a8beb27d3ad616a9fb4f867d1d2091f1 libstdc++-v3/doc/xml/manual/profile_mode.xml
d006612b2e21ab181c25bc88697b4543 libstdc++-v3/doc/xml/manual/shared_ptr.xml
! 4fa9d6b0b90d56a3b6ae65a55acee46f libstdc++-v3/doc/xml/manual/spine.xml
! 535d919775ba5f621a0697454cda99c8 libstdc++-v3/doc/xml/manual/status_cxx1998.xml
! e9364d311686c3aef8e20831ae73084e libstdc++-v3/doc/xml/manual/status_cxx2011.xml
! 46e196e15aa47e1e52dee0d1b2fee54f libstdc++-v3/doc/xml/manual/status_cxx2014.xml
! a218e75896cfcdcf4b1dcb68513eab44 libstdc++-v3/doc/xml/manual/status_cxx2017.xml
! 0b60b55bd6d639724fa2890a5f80bc11 libstdc++-v3/doc/xml/manual/status_cxx2020.xml
3c72998c4574690fac280c058a0db757 libstdc++-v3/doc/xml/manual/status_cxxis29124.xml
! 82eea38e37d35e26d98b1325caeacd38 libstdc++-v3/doc/xml/manual/status_cxxtr1.xml
! 8fea8786b026a0236a93c7f39e17f59f libstdc++-v3/doc/xml/manual/status_cxxtr24733.xml
1ea4904f13ba196db9689534b653622f libstdc++-v3/doc/xml/manual/strings.xml
1e5f588c3483a25ed93d7bca5ba4fa68 libstdc++-v3/doc/xml/manual/support.xml
ba5b083d25092e77bbb681596ab0b11b libstdc++-v3/doc/xml/manual/test.xml
*************** f50322bcc9ac2c9b71d382f81fdbd69f libstd
*** 79334,79341 ****
80254a9e37f2856af5a7fecba198327a libstdc++-v3/doc/xml/spine.xml
bd966b4a0df6f2a84f9770525581d45c libstdc++-v3/doc/xsl/customization.xsl.in
7bb72420e699e194cf6066457cb6d6a5 libstdc++-v3/fragment.am
! 48484b50f3dbcbb390ab30ecda3d53f2 libstdc++-v3/include/Makefile.am
! 6e37d333dc1a11ed82414c847385e1a5 libstdc++-v3/include/Makefile.in
1c80f026c3f03d8b12b95557de618ef4 libstdc++-v3/include/backward/auto_ptr.h
cf3b81a8b4b4437c3efd0eb851fe7193 libstdc++-v3/include/backward/backward_warning.h
122edd98cffad4f51f2e32a63720f80b libstdc++-v3/include/backward/binders.h
--- 79703,79710 ----
80254a9e37f2856af5a7fecba198327a libstdc++-v3/doc/xml/spine.xml
bd966b4a0df6f2a84f9770525581d45c libstdc++-v3/doc/xsl/customization.xsl.in
7bb72420e699e194cf6066457cb6d6a5 libstdc++-v3/fragment.am
! 815e48be84f74d1e7c79391153ab2c8c libstdc++-v3/include/Makefile.am
! d0e9c025fc578ccfcd73a1108810df97 libstdc++-v3/include/Makefile.in
1c80f026c3f03d8b12b95557de618ef4 libstdc++-v3/include/backward/auto_ptr.h
cf3b81a8b4b4437c3efd0eb851fe7193 libstdc++-v3/include/backward/backward_warning.h
122edd98cffad4f51f2e32a63720f80b libstdc++-v3/include/backward/binders.h
*************** e7811add46a2d49e8115eb22c799d036 libstd
*** 79344,79350 ****
ec90dd6e3da641dbaf974448ecee8cbc libstdc++-v3/include/backward/hash_set
a1a3eaa57175d3853264c0bb0865c4a9 libstdc++-v3/include/backward/hashtable.h
37f3332645f4ffce815bbe27cc6690e0 libstdc++-v3/include/backward/strstream
! adcddcb9cd5364abf744d7f8aa4c8516 libstdc++-v3/include/bits/algorithmfwd.h
3fe762b4659df06975c656b0e3d783d5 libstdc++-v3/include/bits/alloc_traits.h
98c4e3748425197926e0f6c2821af531 libstdc++-v3/include/bits/allocated_ptr.h
3c9f3aa3147ad5a9d06a86f367dd8860 libstdc++-v3/include/bits/allocator.h
--- 79713,79719 ----
ec90dd6e3da641dbaf974448ecee8cbc libstdc++-v3/include/backward/hash_set
a1a3eaa57175d3853264c0bb0865c4a9 libstdc++-v3/include/backward/hashtable.h
37f3332645f4ffce815bbe27cc6690e0 libstdc++-v3/include/backward/strstream
! 07ffaff03714683801c05cec0185ffe6 libstdc++-v3/include/bits/algorithmfwd.h
3fe762b4659df06975c656b0e3d783d5 libstdc++-v3/include/bits/alloc_traits.h
98c4e3748425197926e0f6c2821af531 libstdc++-v3/include/bits/allocated_ptr.h
3c9f3aa3147ad5a9d06a86f367dd8860 libstdc++-v3/include/bits/allocator.h
*************** c3326f8e1fa9d5a80edf587591008559 libstd
*** 79356,79362 ****
39cfd3a0951c5a63fc14689bc5dc22d7 libstdc++-v3/include/bits/basic_string.tcc
10a9e1a948a50cf2ef7946a010769093 libstdc++-v3/include/bits/boost_concept_check.h
90935a186da6f614cdb1d98856fad3bb libstdc++-v3/include/bits/c++0x_warning.h
! b9cb809a1c673599eb405a05b6bb9323 libstdc++-v3/include/bits/c++config
dd461c33108298290974aa7353346de1 libstdc++-v3/include/bits/char_traits.h
bc6ad2ba404ac0a6426342fced42c078 libstdc++-v3/include/bits/codecvt.h
de4b21ba4f0fae0ad1585cddefd68de6 libstdc++-v3/include/bits/concept_check.h
--- 79725,79731 ----
39cfd3a0951c5a63fc14689bc5dc22d7 libstdc++-v3/include/bits/basic_string.tcc
10a9e1a948a50cf2ef7946a010769093 libstdc++-v3/include/bits/boost_concept_check.h
90935a186da6f614cdb1d98856fad3bb libstdc++-v3/include/bits/c++0x_warning.h
! 40237c266855f1939dcf44dd0b9d64bd libstdc++-v3/include/bits/c++config
dd461c33108298290974aa7353346de1 libstdc++-v3/include/bits/char_traits.h
bc6ad2ba404ac0a6426342fced42c078 libstdc++-v3/include/bits/codecvt.h
de4b21ba4f0fae0ad1585cddefd68de6 libstdc++-v3/include/bits/concept_check.h
*************** ad01ba7b1035a93be5e17d58644ed2af libstd
*** 79369,79375 ****
f5fb19ace357d15cea210b637ae23558 libstdc++-v3/include/bits/fs_dir.h
124ac69361d852dc782040d364d62224 libstdc++-v3/include/bits/fs_fwd.h
23e69de9dd87c43d9145a2893370ba4e libstdc++-v3/include/bits/fs_ops.h
! 3f95422515061304fde4cd0e66abfc18 libstdc++-v3/include/bits/fs_path.h
f9b126b6fc8ff7f0617895e5010daa1f libstdc++-v3/include/bits/fstream.tcc
d4d40e971f1c1bca9a12118ad7910a1b libstdc++-v3/include/bits/functexcept.h
365995b5e629f2860c719fdd20a31b2b libstdc++-v3/include/bits/functional_hash.h
--- 79738,79744 ----
f5fb19ace357d15cea210b637ae23558 libstdc++-v3/include/bits/fs_dir.h
124ac69361d852dc782040d364d62224 libstdc++-v3/include/bits/fs_fwd.h
23e69de9dd87c43d9145a2893370ba4e libstdc++-v3/include/bits/fs_ops.h
! 860ca35f0aa7916ab9e98beb2b30a777 libstdc++-v3/include/bits/fs_path.h
f9b126b6fc8ff7f0617895e5010daa1f libstdc++-v3/include/bits/fstream.tcc
d4d40e971f1c1bca9a12118ad7910a1b libstdc++-v3/include/bits/functexcept.h
365995b5e629f2860c719fdd20a31b2b libstdc++-v3/include/bits/functional_hash.h
*************** d4d40e971f1c1bca9a12118ad7910a1b libstd
*** 79379,79385 ****
47225e356ae855f4eb9982b6ad305570 libstdc++-v3/include/bits/hashtable_policy.h
3fef12519174b6dc9874611953cbdcc3 libstdc++-v3/include/bits/indirect_array.h
b0b7b5cb6d19f9f714fbfcfffc0f6f45 libstdc++-v3/include/bits/invoke.h
! 58bf144047ab3074d7e119e410259eef libstdc++-v3/include/bits/ios_base.h
5ec633893c2074c4dd059c44d61ab2b6 libstdc++-v3/include/bits/istream.tcc
c274ee2a036512dd9feeff31dc21b708 libstdc++-v3/include/bits/list.tcc
35f7b9dafe4d67ed0f894fd85f823a22 libstdc++-v3/include/bits/locale_classes.h
--- 79748,79754 ----
47225e356ae855f4eb9982b6ad305570 libstdc++-v3/include/bits/hashtable_policy.h
3fef12519174b6dc9874611953cbdcc3 libstdc++-v3/include/bits/indirect_array.h
b0b7b5cb6d19f9f714fbfcfffc0f6f45 libstdc++-v3/include/bits/invoke.h
! 52166aff43f177286a5bb8df12a5f881 libstdc++-v3/include/bits/ios_base.h
5ec633893c2074c4dd059c44d61ab2b6 libstdc++-v3/include/bits/istream.tcc
c274ee2a036512dd9feeff31dc21b708 libstdc++-v3/include/bits/list.tcc
35f7b9dafe4d67ed0f894fd85f823a22 libstdc++-v3/include/bits/locale_classes.h
*************** f71f1ed35feeb6158aa62ea1131b4e33 libstd
*** 79391,79397 ****
347ef09a01c539409b03ec5a801bf964 libstdc++-v3/include/bits/locale_facets_nonio.tcc
627be1cef1c10a5b4d2f08923edfb5b1 libstdc++-v3/include/bits/localefwd.h
4f894516f50ded8ffbb63a228b6937f2 libstdc++-v3/include/bits/mask_array.h
! a4917b23b29c10cc020a5f714943801a libstdc++-v3/include/bits/memoryfwd.h
1bca2c48e539d08beb48838e8c76c24a libstdc++-v3/include/bits/move.h
850e607682df029115900c70db352cae libstdc++-v3/include/bits/node_handle.h
a0afe1c29d30ff2b895c194f384b87d2 libstdc++-v3/include/bits/ostream.tcc
--- 79760,79766 ----
347ef09a01c539409b03ec5a801bf964 libstdc++-v3/include/bits/locale_facets_nonio.tcc
627be1cef1c10a5b4d2f08923edfb5b1 libstdc++-v3/include/bits/localefwd.h
4f894516f50ded8ffbb63a228b6937f2 libstdc++-v3/include/bits/mask_array.h
! 78e925bd1e1fdc54008a15e69260831e libstdc++-v3/include/bits/memoryfwd.h
1bca2c48e539d08beb48838e8c76c24a libstdc++-v3/include/bits/move.h
850e607682df029115900c70db352cae libstdc++-v3/include/bits/node_handle.h
a0afe1c29d30ff2b895c194f384b87d2 libstdc++-v3/include/bits/ostream.tcc
*************** d7beba2aea9aaa0de3e1c6a601090ca7 libstd
*** 79401,79410 ****
0c20464790cf0fbc9380433d2d8780df libstdc++-v3/include/bits/predefined_ops.h
e665ffe71c9979a74d17d9a227fdab1c libstdc++-v3/include/bits/ptr_traits.h
2ce8c36ed537421a9a01b30a9b086fac libstdc++-v3/include/bits/quoted_string.h
! 7dcda47733a18025b5569c85fdf305aa libstdc++-v3/include/bits/random.h
! 76765b83e81ef7615d08e2e4220fc037 libstdc++-v3/include/bits/random.tcc
e042b2a4753dd515774ad1ba767c631a libstdc++-v3/include/bits/range_access.h
! 6de1e217fb67850ea7566ce54395d9b9 libstdc++-v3/include/bits/refwrap.h
a4f4ca31c38cb0321fd0530f76a0225a libstdc++-v3/include/bits/regex.h
0f32168338c6be51f76b4ba8c06fa690 libstdc++-v3/include/bits/regex.tcc
8e375b3b267c2d50279c46b2610f7350 libstdc++-v3/include/bits/regex_automaton.h
--- 79770,79779 ----
0c20464790cf0fbc9380433d2d8780df libstdc++-v3/include/bits/predefined_ops.h
e665ffe71c9979a74d17d9a227fdab1c libstdc++-v3/include/bits/ptr_traits.h
2ce8c36ed537421a9a01b30a9b086fac libstdc++-v3/include/bits/quoted_string.h
! 9601a3afc389d5cd1da9cd62884f9b5f libstdc++-v3/include/bits/random.h
! 89b9a8b18f87d4c4ac20f3f1036f8081 libstdc++-v3/include/bits/random.tcc
e042b2a4753dd515774ad1ba767c631a libstdc++-v3/include/bits/range_access.h
! bd1e26579367c59076b7424a352102a2 libstdc++-v3/include/bits/refwrap.h
a4f4ca31c38cb0321fd0530f76a0225a libstdc++-v3/include/bits/regex.h
0f32168338c6be51f76b4ba8c06fa690 libstdc++-v3/include/bits/regex.tcc
8e375b3b267c2d50279c46b2610f7350 libstdc++-v3/include/bits/regex_automaton.h
*************** a69c40dadcc9012e85653cfd6daa3e1a libstd
*** 79424,79436 ****
b4e125bf6db70cabb3ff01dd592fac0d libstdc++-v3/include/bits/specfun.h
55e377a7aaba11972e70bedb32e3b70a libstdc++-v3/include/bits/sstream.tcc
7932d189fa392fd2a620055ad890bdd1 libstdc++-v3/include/bits/std_abs.h
! 5876d0b51aad351f8767a7f5668d062f libstdc++-v3/include/bits/std_function.h
57417250dba56b74869e4c4d89ca53d0 libstdc++-v3/include/bits/std_mutex.h
! db893da6b8e50447f550508336537196 libstdc++-v3/include/bits/stl_algo.h
! cad14f08418514ec0a53e7185cf25aad libstdc++-v3/include/bits/stl_algobase.h
b5223fb7dd6dd139418da3653626b821 libstdc++-v3/include/bits/stl_bvector.h
e7eb9cdaef03a0a44d5afad557cfd6a3 libstdc++-v3/include/bits/stl_construct.h
! 59a28a98fab65ddf9f901f7073c3a03e libstdc++-v3/include/bits/stl_deque.h
fa656de911e8ee10abbe523fc2650e50 libstdc++-v3/include/bits/stl_function.h
870efdfa8ddf7c4723bda998052ce6e1 libstdc++-v3/include/bits/stl_heap.h
bdefd5fd36d2d04a495011d701bb0f13 libstdc++-v3/include/bits/stl_iterator.h
--- 79793,79805 ----
b4e125bf6db70cabb3ff01dd592fac0d libstdc++-v3/include/bits/specfun.h
55e377a7aaba11972e70bedb32e3b70a libstdc++-v3/include/bits/sstream.tcc
7932d189fa392fd2a620055ad890bdd1 libstdc++-v3/include/bits/std_abs.h
! 80a083e4294406f3ba8d9f3ea3276d7b libstdc++-v3/include/bits/std_function.h
57417250dba56b74869e4c4d89ca53d0 libstdc++-v3/include/bits/std_mutex.h
! bf1c8d2734cce266643d90df9d150e30 libstdc++-v3/include/bits/stl_algo.h
! 12015a9532bd1ad347748b2f3748bed8 libstdc++-v3/include/bits/stl_algobase.h
b5223fb7dd6dd139418da3653626b821 libstdc++-v3/include/bits/stl_bvector.h
e7eb9cdaef03a0a44d5afad557cfd6a3 libstdc++-v3/include/bits/stl_construct.h
! af137cc54635ef76d4a76b373f4647c3 libstdc++-v3/include/bits/stl_deque.h
fa656de911e8ee10abbe523fc2650e50 libstdc++-v3/include/bits/stl_function.h
870efdfa8ddf7c4723bda998052ce6e1 libstdc++-v3/include/bits/stl_heap.h
bdefd5fd36d2d04a495011d701bb0f13 libstdc++-v3/include/bits/stl_iterator.h
*************** a02d40c0185d75b6d6abf087fa276cb6 libstd
*** 79440,79446 ****
9dbb9e8e8a5c2de6e6294e19802c817e libstdc++-v3/include/bits/stl_map.h
98e4caded07777b83f75056987d54fe8 libstdc++-v3/include/bits/stl_multimap.h
089085d2c03a870ae8b491fe6b1e94d5 libstdc++-v3/include/bits/stl_multiset.h
! f3631a067197131735bb2b4dc0afb427 libstdc++-v3/include/bits/stl_numeric.h
17e15386fd23a497aa1e369bdbc2175b libstdc++-v3/include/bits/stl_pair.h
eeabd3c77395dfd7aa066eec455841ba libstdc++-v3/include/bits/stl_queue.h
549a527a0614a0ac74ba13899fee5809 libstdc++-v3/include/bits/stl_raw_storage_iter.h
--- 79809,79815 ----
9dbb9e8e8a5c2de6e6294e19802c817e libstdc++-v3/include/bits/stl_map.h
98e4caded07777b83f75056987d54fe8 libstdc++-v3/include/bits/stl_multimap.h
089085d2c03a870ae8b491fe6b1e94d5 libstdc++-v3/include/bits/stl_multiset.h
! b1e8fb24ff26162b4d76138736231f76 libstdc++-v3/include/bits/stl_numeric.h
17e15386fd23a497aa1e369bdbc2175b libstdc++-v3/include/bits/stl_pair.h
eeabd3c77395dfd7aa066eec455841ba libstdc++-v3/include/bits/stl_queue.h
549a527a0614a0ac74ba13899fee5809 libstdc++-v3/include/bits/stl_raw_storage_iter.h
*************** cc5448e17c303f1be3390cd94518dd59 libstd
*** 79449,79455 ****
0edbb9339cbc50d0c5a1b70373a59401 libstdc++-v3/include/bits/stl_stack.h
cd8f2e23dc1110f93a0d0ff326f4c8ca libstdc++-v3/include/bits/stl_tempbuf.h
85e90905fbdf3f62c7b7edbfbe0805f8 libstdc++-v3/include/bits/stl_tree.h
! 1da11d1d2938a1c6bff9d47f518bc627 libstdc++-v3/include/bits/stl_uninitialized.h
1f0977f00f361948b448c8d209ba1f18 libstdc++-v3/include/bits/stl_vector.h
71c6aa7e093756cdee9abdb30947681e libstdc++-v3/include/bits/stream_iterator.h
2a25b39b027e573f0ff51af9ff4ffbff libstdc++-v3/include/bits/streambuf.tcc
--- 79818,79824 ----
0edbb9339cbc50d0c5a1b70373a59401 libstdc++-v3/include/bits/stl_stack.h
cd8f2e23dc1110f93a0d0ff326f4c8ca libstdc++-v3/include/bits/stl_tempbuf.h
85e90905fbdf3f62c7b7edbfbe0805f8 libstdc++-v3/include/bits/stl_tree.h
! 0f6bfbf9a439578eccd34bc84603c9b5 libstdc++-v3/include/bits/stl_uninitialized.h
1f0977f00f361948b448c8d209ba1f18 libstdc++-v3/include/bits/stl_vector.h
71c6aa7e093756cdee9abdb30947681e libstdc++-v3/include/bits/stream_iterator.h
2a25b39b027e573f0ff51af9ff4ffbff libstdc++-v3/include/bits/streambuf.tcc
*************** a752945fb8e2baa429e28753092d6cbe libstd
*** 79458,79464 ****
54d6c192d7aa0b179e3c36dce066db6f libstdc++-v3/include/bits/stringfwd.h
1de8e1e61d40a4738ea48dc507475128 libstdc++-v3/include/bits/uniform_int_dist.h
e46d85421e1e7c61a598c9a33e979693 libstdc++-v3/include/bits/unique_lock.h
! af3ba229e4e2dd3d5c7d7744a414441f libstdc++-v3/include/bits/unique_ptr.h
153b61a1c1ff148569ef22d30e908109 libstdc++-v3/include/bits/unordered_map.h
b3d7e91fcdf7063c94b272097ed8f455 libstdc++-v3/include/bits/unordered_set.h
1053e71b8fd4aced4cd00e8f7c0e6347 libstdc++-v3/include/bits/uses_allocator.h
--- 79827,79833 ----
54d6c192d7aa0b179e3c36dce066db6f libstdc++-v3/include/bits/stringfwd.h
1de8e1e61d40a4738ea48dc507475128 libstdc++-v3/include/bits/uniform_int_dist.h
e46d85421e1e7c61a598c9a33e979693 libstdc++-v3/include/bits/unique_lock.h
! d428381441827a1dd2cb6c25cc66ffad libstdc++-v3/include/bits/unique_ptr.h
153b61a1c1ff148569ef22d30e908109 libstdc++-v3/include/bits/unordered_map.h
b3d7e91fcdf7063c94b272097ed8f455 libstdc++-v3/include/bits/unordered_set.h
1053e71b8fd4aced4cd00e8f7c0e6347 libstdc++-v3/include/bits/uses_allocator.h
*************** c8977ed6f0a9c5343ac42f9b337617ba libstd
*** 79521,79527 ****
54babf2e41c1d594884f9383d1604ce1 libstdc++-v3/include/c_global/ciso646
87ddee333f9d74117bf0a71a3e19b494 libstdc++-v3/include/c_global/climits
4d99161546323135c4843b1179538c41 libstdc++-v3/include/c_global/clocale
! 40a030777dfceed102e7439026fb40bb libstdc++-v3/include/c_global/cmath
f6e80a0bc54600e0272b25ab567458ba libstdc++-v3/include/c_global/csetjmp
f94d95e7db6577d2676c49613e47fa1d libstdc++-v3/include/c_global/csignal
27b1d266ef05bb83134bc0b8d59bca3f libstdc++-v3/include/c_global/cstdalign
--- 79890,79896 ----
54babf2e41c1d594884f9383d1604ce1 libstdc++-v3/include/c_global/ciso646
87ddee333f9d74117bf0a71a3e19b494 libstdc++-v3/include/c_global/climits
4d99161546323135c4843b1179538c41 libstdc++-v3/include/c_global/clocale
! f4b7216422c35b5109134da0340565c8 libstdc++-v3/include/c_global/cmath
f6e80a0bc54600e0272b25ab567458ba libstdc++-v3/include/c_global/csetjmp
f94d95e7db6577d2676c49613e47fa1d libstdc++-v3/include/c_global/csignal
27b1d266ef05bb83134bc0b8d59bca3f libstdc++-v3/include/c_global/cstdalign
*************** ec80c8c38b0d425428ab03ceacc69d2d libstd
*** 79609,79615 ****
d3e0048fa336fc22f921d98eda1a39e6 libstdc++-v3/include/experimental/filesystem
1739fbebf9279d1d42460c46db56a961 libstdc++-v3/include/experimental/forward_list
06ca02c43ec6753d62546a098ff593e1 libstdc++-v3/include/experimental/functional
! 77cc0d9c2feb0a14addc33bc64fdd3c4 libstdc++-v3/include/experimental/internet
6411c9cab64e14382d661d3a20094588 libstdc++-v3/include/experimental/io_context
5c55599616632dde0043f0abfba89d33 libstdc++-v3/include/experimental/iterator
a5cad267e51913cca6f2508336cd4e83 libstdc++-v3/include/experimental/list
--- 79978,79984 ----
d3e0048fa336fc22f921d98eda1a39e6 libstdc++-v3/include/experimental/filesystem
1739fbebf9279d1d42460c46db56a961 libstdc++-v3/include/experimental/forward_list
06ca02c43ec6753d62546a098ff593e1 libstdc++-v3/include/experimental/functional
! 4792e03d7d784c59b5839326070e1561 libstdc++-v3/include/experimental/internet
6411c9cab64e14382d661d3a20094588 libstdc++-v3/include/experimental/io_context
5c55599616632dde0043f0abfba89d33 libstdc++-v3/include/experimental/iterator
a5cad267e51913cca6f2508336cd4e83 libstdc++-v3/include/experimental/list
*************** c4de512ed3f0926bbcf78aefa61e5199 libstd
*** 80010,80017 ****
80db855b3b6cd3b08124d6c50b7290ab libstdc++-v3/include/pstl/glue_execution_defs.h
499e1c23eecafadf8ccb05202821ff30 libstdc++-v3/include/pstl/glue_memory_defs.h
9042813cc5807fd09d8adeb7165437c2 libstdc++-v3/include/pstl/glue_memory_impl.h
! 193c574e36a5e79eedefb29cdf48a6d0 libstdc++-v3/include/pstl/glue_numeric_defs.h
! 84fe54a8fc89434b1c5e1f57de79fb2f libstdc++-v3/include/pstl/glue_numeric_impl.h
382e60efffbb025ddaf0d55061a6e05d libstdc++-v3/include/pstl/memory_impl.h
6536394298c1ee0d7e0353f259ccdb7d libstdc++-v3/include/pstl/numeric_fwd.h
521ecae84d863ef1976932f714bd12d1 libstdc++-v3/include/pstl/numeric_impl.h
--- 80379,80386 ----
80db855b3b6cd3b08124d6c50b7290ab libstdc++-v3/include/pstl/glue_execution_defs.h
499e1c23eecafadf8ccb05202821ff30 libstdc++-v3/include/pstl/glue_memory_defs.h
9042813cc5807fd09d8adeb7165437c2 libstdc++-v3/include/pstl/glue_memory_impl.h
! 811aa9fb28e7a93fa1cc2402344467d9 libstdc++-v3/include/pstl/glue_numeric_defs.h
! e522c3d120d6f53a8091b101827417f6 libstdc++-v3/include/pstl/glue_numeric_impl.h
382e60efffbb025ddaf0d55061a6e05d libstdc++-v3/include/pstl/memory_impl.h
6536394298c1ee0d7e0353f259ccdb7d libstdc++-v3/include/pstl/numeric_fwd.h
521ecae84d863ef1976932f714bd12d1 libstdc++-v3/include/pstl/numeric_impl.h
*************** e82fbfc9e96c43ba5afca7b9a56b2b54 libstd
*** 80031,80044 ****
a63b95e84dd925559a78e490d3df3b7b libstdc++-v3/include/std/charconv
68cb52fefeed3034f42843be40c73806 libstdc++-v3/include/std/chrono
5b08d36e304fe972b1c0b6f10b21aed9 libstdc++-v3/include/std/codecvt
! 4861fb756f14c659c514356a99f3a245 libstdc++-v3/include/std/complex
2d58284fcbf45359e2234a5e4a3545f9 libstdc++-v3/include/std/condition_variable
f76aecdb4c2a852064fd430613c5cb3c libstdc++-v3/include/std/deque
24346e84bb941bb85aa7e67f823472ee libstdc++-v3/include/std/execution
202a966ce515c8f9413cb05321d578e7 libstdc++-v3/include/std/filesystem
a48f9c06f87761decf6a36f930f6fd51 libstdc++-v3/include/std/forward_list
1d8ae304ed722252004109e945e0e4fe libstdc++-v3/include/std/fstream
! 746b28af6e3744356c6f3e554c46572d libstdc++-v3/include/std/functional
44079449542cbf3c76831335959cd18a libstdc++-v3/include/std/future
9d530cd5fc87512b5a667be18e6c90d5 libstdc++-v3/include/std/iomanip
c2c242aec1f37408c35701d73ebc75c6 libstdc++-v3/include/std/ios
--- 80400,80413 ----
a63b95e84dd925559a78e490d3df3b7b libstdc++-v3/include/std/charconv
68cb52fefeed3034f42843be40c73806 libstdc++-v3/include/std/chrono
5b08d36e304fe972b1c0b6f10b21aed9 libstdc++-v3/include/std/codecvt
! 0f1fc10b0b7df3aab29c4049821c2f5c libstdc++-v3/include/std/complex
2d58284fcbf45359e2234a5e4a3545f9 libstdc++-v3/include/std/condition_variable
f76aecdb4c2a852064fd430613c5cb3c libstdc++-v3/include/std/deque
24346e84bb941bb85aa7e67f823472ee libstdc++-v3/include/std/execution
202a966ce515c8f9413cb05321d578e7 libstdc++-v3/include/std/filesystem
a48f9c06f87761decf6a36f930f6fd51 libstdc++-v3/include/std/forward_list
1d8ae304ed722252004109e945e0e4fe libstdc++-v3/include/std/fstream
! d9faeaecd6dd4f6b4000c4128fccca7a libstdc++-v3/include/std/functional
44079449542cbf3c76831335959cd18a libstdc++-v3/include/std/future
9d530cd5fc87512b5a667be18e6c90d5 libstdc++-v3/include/std/iomanip
c2c242aec1f37408c35701d73ebc75c6 libstdc++-v3/include/std/ios
*************** c2c242aec1f37408c35701d73ebc75c6 libstd
*** 80051,80059 ****
b0a390471b8008abda2ef17a4670c389 libstdc++-v3/include/std/locale
6d24d442604b219cfdeeedfe9da378f4 libstdc++-v3/include/std/map
f78983d4521095e63da01cf200c0ed07 libstdc++-v3/include/std/memory
! 9e91e7b2acba7cc15a400617c0391972 libstdc++-v3/include/std/memory_resource
d2333804d6e573c8ee88e7907a6a82d8 libstdc++-v3/include/std/mutex
! be2ae9725317ba3cad90289299098bab libstdc++-v3/include/std/numeric
f2c2315846427ddce9a56b94863068c5 libstdc++-v3/include/std/optional
b98b3ecbc50df6d02cf8a1bbce109e7a libstdc++-v3/include/std/ostream
39fcb44dab41f9aa0bef997a251c4e29 libstdc++-v3/include/std/queue
--- 80420,80428 ----
b0a390471b8008abda2ef17a4670c389 libstdc++-v3/include/std/locale
6d24d442604b219cfdeeedfe9da378f4 libstdc++-v3/include/std/map
f78983d4521095e63da01cf200c0ed07 libstdc++-v3/include/std/memory
! 8d8c9605102f78e36b35cf9e0feeaccf libstdc++-v3/include/std/memory_resource
d2333804d6e573c8ee88e7907a6a82d8 libstdc++-v3/include/std/mutex
! 5e6b824170af5579c7769a438dc23dbb libstdc++-v3/include/std/numeric
f2c2315846427ddce9a56b94863068c5 libstdc++-v3/include/std/optional
b98b3ecbc50df6d02cf8a1bbce109e7a libstdc++-v3/include/std/ostream
39fcb44dab41f9aa0bef997a251c4e29 libstdc++-v3/include/std/queue
*************** b98b3ecbc50df6d02cf8a1bbce109e7a libstd
*** 80062,80068 ****
1881f33afe93fb9e6b2ba0178e030e58 libstdc++-v3/include/std/regex
b7b9d90e5a96c10fd75ca50e673f2722 libstdc++-v3/include/std/scoped_allocator
509a8a66f470404780b6c1d30223667e libstdc++-v3/include/std/set
! 7a70f23a3d1aa0e9250beca241cfa491 libstdc++-v3/include/std/shared_mutex
04f9fa1a05b7bed8f797f7bec7555a03 libstdc++-v3/include/std/sstream
cce28f8b60e9ed2e900998b12565d2a2 libstdc++-v3/include/std/stack
99f3ce6793ba199a59c4930a534845d0 libstdc++-v3/include/std/stdexcept
--- 80431,80437 ----
1881f33afe93fb9e6b2ba0178e030e58 libstdc++-v3/include/std/regex
b7b9d90e5a96c10fd75ca50e673f2722 libstdc++-v3/include/std/scoped_allocator
509a8a66f470404780b6c1d30223667e libstdc++-v3/include/std/set
! d2713d144e81ba31dce999c1c529a674 libstdc++-v3/include/std/shared_mutex
04f9fa1a05b7bed8f797f7bec7555a03 libstdc++-v3/include/std/sstream
cce28f8b60e9ed2e900998b12565d2a2 libstdc++-v3/include/std/stack
99f3ce6793ba199a59c4930a534845d0 libstdc++-v3/include/std/stdexcept
*************** e3152b05234bb0b1b3ebe01a9b381b88 libstd
*** 80072,80078 ****
fa4ccc1ecd9a3eee444ae02c5fa8c921 libstdc++-v3/include/std/system_error
f1f381bc4a10d4580c3976338bb5ffee libstdc++-v3/include/std/thread
f1adc9844c843c09d864da9535c571e5 libstdc++-v3/include/std/tuple
! 23ca38e54ec7cd1b60f51e47ecab31dd libstdc++-v3/include/std/type_traits
67eaa5c4cdcdaa1de1c2652350ab1b7e libstdc++-v3/include/std/typeindex
6619c56f7566124bd6fece25a47e7a15 libstdc++-v3/include/std/unordered_map
978751cff467ba2c2f5c762a9254abaa libstdc++-v3/include/std/unordered_set
--- 80441,80447 ----
fa4ccc1ecd9a3eee444ae02c5fa8c921 libstdc++-v3/include/std/system_error
f1f381bc4a10d4580c3976338bb5ffee libstdc++-v3/include/std/thread
f1adc9844c843c09d864da9535c571e5 libstdc++-v3/include/std/tuple
! 8e0c96f14d566bd3d495a35693b9568b libstdc++-v3/include/std/type_traits
67eaa5c4cdcdaa1de1c2652350ab1b7e libstdc++-v3/include/std/typeindex
6619c56f7566124bd6fece25a47e7a15 libstdc++-v3/include/std/unordered_map
978751cff467ba2c2f5c762a9254abaa libstdc++-v3/include/std/unordered_set
*************** f1adc9844c843c09d864da9535c571e5 libstd
*** 80080,80086 ****
65f2b095c7f7d08145ac17fe0b04f88b libstdc++-v3/include/std/valarray
8e06a67b5758018be282b1ba145f1c26 libstdc++-v3/include/std/variant
624a3173e77ca9b51ae9ddb764e71af3 libstdc++-v3/include/std/vector
! e101a9880eb914bfe10bdca8456e82ad libstdc++-v3/include/std/version
8356854073cfb6742cd411edadb59a90 libstdc++-v3/include/tr1/array
e824ab79488bb70e859dd27c9fcc9d07 libstdc++-v3/include/tr1/bessel_function.tcc
72cfb57c55ba2dfc7175f9c1734f9980 libstdc++-v3/include/tr1/beta_function.tcc
--- 80449,80455 ----
65f2b095c7f7d08145ac17fe0b04f88b libstdc++-v3/include/std/valarray
8e06a67b5758018be282b1ba145f1c26 libstdc++-v3/include/std/variant
624a3173e77ca9b51ae9ddb764e71af3 libstdc++-v3/include/std/vector
! 5ec3321f7230a5d93d618cd819f74905 libstdc++-v3/include/std/version
8356854073cfb6742cd411edadb59a90 libstdc++-v3/include/tr1/array
e824ab79488bb70e859dd27c9fcc9d07 libstdc++-v3/include/tr1/bessel_function.tcc
72cfb57c55ba2dfc7175f9c1734f9980 libstdc++-v3/include/tr1/beta_function.tcc
*************** f168f26650ada6685f41eac0bdbbcf53 libstd
*** 80145,80152 ****
599d3be23e6a02235e4b18ac06a05c96 libstdc++-v3/include/tr1/wctype.h
64235cbd20d2f37dead284c1e1435703 libstdc++-v3/include/tr2/bool_set
af5f7fe59221263c7a4474d3a54bcf86 libstdc++-v3/include/tr2/bool_set.tcc
! db228adb8f1c0916ab377a75951eeed8 libstdc++-v3/include/tr2/dynamic_bitset
! 7f9ee2384e7712ddf08cd2936c4f6f51 libstdc++-v3/include/tr2/dynamic_bitset.tcc
901a73bc94b0e3a6bebe72a24788814f libstdc++-v3/include/tr2/ratio
d4508ff93e006ae962b6d53fc1c6f551 libstdc++-v3/include/tr2/type_traits
e3f65be86f108bbcebb50013dfce68f0 libstdc++-v3/libsupc++/Makefile.am
--- 80514,80521 ----
599d3be23e6a02235e4b18ac06a05c96 libstdc++-v3/include/tr1/wctype.h
64235cbd20d2f37dead284c1e1435703 libstdc++-v3/include/tr2/bool_set
af5f7fe59221263c7a4474d3a54bcf86 libstdc++-v3/include/tr2/bool_set.tcc
! f443fdcac0b391cd70b003558c04415c libstdc++-v3/include/tr2/dynamic_bitset
! 677e0aa0c56338f039b62ab64caba644 libstdc++-v3/include/tr2/dynamic_bitset.tcc
901a73bc94b0e3a6bebe72a24788814f libstdc++-v3/include/tr2/ratio
d4508ff93e006ae962b6d53fc1c6f551 libstdc++-v3/include/tr2/type_traits
e3f65be86f108bbcebb50013dfce68f0 libstdc++-v3/libsupc++/Makefile.am
*************** f88246646f5c57c98394af3aadc2cc4e libstd
*** 80187,80194 ****
f8c2dfa3714258350cb6d9dcb2c41c13 libstdc++-v3/libsupc++/eh_globals.cc
aa62fb12940347e03565d69fbbd0c632 libstdc++-v3/libsupc++/eh_personality.cc
e19a61eb0ece23eb5aa96496b13cf4e2 libstdc++-v3/libsupc++/eh_ptr.cc
! 86c6c8a3d15f814895868e3bc1a0d921 libstdc++-v3/libsupc++/eh_term_handler.cc
! d3391ce2a74a84362da371152d85478a libstdc++-v3/libsupc++/eh_terminate.cc
fae5716ddd5b8d6d272692ff58cbd6f5 libstdc++-v3/libsupc++/eh_throw.cc
91491f94ad6acf74fb19126794e79913 libstdc++-v3/libsupc++/eh_tm.cc
6ccc667ab93d145cc21623c21470ebf8 libstdc++-v3/libsupc++/eh_type.cc
--- 80556,80564 ----
f8c2dfa3714258350cb6d9dcb2c41c13 libstdc++-v3/libsupc++/eh_globals.cc
aa62fb12940347e03565d69fbbd0c632 libstdc++-v3/libsupc++/eh_personality.cc
e19a61eb0ece23eb5aa96496b13cf4e2 libstdc++-v3/libsupc++/eh_ptr.cc
! b6915b3060615343228eb73353b333d5 libstdc++-v3/libsupc++/eh_term_handler.cc
! b84e23f69f4b8a70ba6f3ea8e7cac5cd libstdc++-v3/libsupc++/eh_term_handler.h
! b928fefe8880b6e1026e760817472380 libstdc++-v3/libsupc++/eh_terminate.cc
fae5716ddd5b8d6d272692ff58cbd6f5 libstdc++-v3/libsupc++/eh_throw.cc
91491f94ad6acf74fb19126794e79913 libstdc++-v3/libsupc++/eh_tm.cc
6ccc667ab93d145cc21623c21470ebf8 libstdc++-v3/libsupc++/eh_type.cc
*************** b42d11f3b0b1a65afa3a8b369b106d7b libstd
*** 80210,80216 ****
17825152951cdb4819a509976d4e450c libstdc++-v3/libsupc++/new
49305094837a54498c42b41b7b480705 libstdc++-v3/libsupc++/new_handler.cc
3a1dd06da4785d3d26e0bbd099746fa5 libstdc++-v3/libsupc++/new_op.cc
! 9600f167d8f402f0ae5be4fd15128326 libstdc++-v3/libsupc++/new_opa.cc
524961cd3553c71f0366c17495387353 libstdc++-v3/libsupc++/new_opant.cc
aa440e7d61e1b63a9f064c020ec915dc libstdc++-v3/libsupc++/new_opnt.cc
3e5d98f263353a9df7643aecde6877cf libstdc++-v3/libsupc++/new_opv.cc
--- 80580,80586 ----
17825152951cdb4819a509976d4e450c libstdc++-v3/libsupc++/new
49305094837a54498c42b41b7b480705 libstdc++-v3/libsupc++/new_handler.cc
3a1dd06da4785d3d26e0bbd099746fa5 libstdc++-v3/libsupc++/new_op.cc
! 8741677c99fcca0289dc9da0073a95a6 libstdc++-v3/libsupc++/new_opa.cc
524961cd3553c71f0366c17495387353 libstdc++-v3/libsupc++/new_opant.cc
aa440e7d61e1b63a9f064c020ec915dc libstdc++-v3/libsupc++/new_opnt.cc
3e5d98f263353a9df7643aecde6877cf libstdc++-v3/libsupc++/new_opv.cc
*************** c5aa239d148e0ec8118110bbf0dc9c50 libstd
*** 80245,80251 ****
68b329da9893e34099c7d8ad5cb9c940 libstdc++-v3/python/libstdcxx/__init__.py
c091eab0af8aaea90c5da6e2b3bbd282 libstdc++-v3/python/libstdcxx/v6/__init__.py
e3aa328f1b3fe7054d20a1b4ac69c1e5 libstdc++-v3/python/libstdcxx/v6/printers.py
! a7aba966efaf327f1bef8b800e9d054e libstdc++-v3/python/libstdcxx/v6/xmethods.py
cdac7363b91e7d57b85f7b560f62f033 libstdc++-v3/scripts/check_compile
135cc633b60b1fe91bcc3ea62a5ff845 libstdc++-v3/scripts/check_performance
c8baf1949b54838161dbcca0103641f4 libstdc++-v3/scripts/create_testsuite_files
--- 80615,80621 ----
68b329da9893e34099c7d8ad5cb9c940 libstdc++-v3/python/libstdcxx/__init__.py
c091eab0af8aaea90c5da6e2b3bbd282 libstdc++-v3/python/libstdcxx/v6/__init__.py
e3aa328f1b3fe7054d20a1b4ac69c1e5 libstdc++-v3/python/libstdcxx/v6/printers.py
! 7f88188428746f393aecb88137f09de3 libstdc++-v3/python/libstdcxx/v6/xmethods.py
cdac7363b91e7d57b85f7b560f62f033 libstdc++-v3/scripts/check_compile
135cc633b60b1fe91bcc3ea62a5ff845 libstdc++-v3/scripts/check_performance
c8baf1949b54838161dbcca0103641f4 libstdc++-v3/scripts/create_testsuite_files
*************** b60703370d8a9146b05f4d1cbe07fd75 libstd
*** 80286,80292 ****
e4f3b15a48efef3d7980d3417e67768e libstdc++-v3/src/c++11/cxx11-shim_facets.cc
63490935c15daee9f5abf955508ba110 libstdc++-v3/src/c++11/cxx11-stdexcept.cc
d628780879d81c06b38972c4e1fef06c libstdc++-v3/src/c++11/cxx11-wlocale-inst.cc
! b81c3e756368b097eb11c6060bc35d45 libstdc++-v3/src/c++11/debug.cc
3dc7ef08fca5552802fe27e16693ca60 libstdc++-v3/src/c++11/ext11-inst.cc
5aea38bc338b1cba873a9b4905ec9302 libstdc++-v3/src/c++11/fstream-inst.cc
d1a4b03efa880910d0fe3c80c93852d7 libstdc++-v3/src/c++11/functexcept.cc
--- 80656,80662 ----
e4f3b15a48efef3d7980d3417e67768e libstdc++-v3/src/c++11/cxx11-shim_facets.cc
63490935c15daee9f5abf955508ba110 libstdc++-v3/src/c++11/cxx11-stdexcept.cc
d628780879d81c06b38972c4e1fef06c libstdc++-v3/src/c++11/cxx11-wlocale-inst.cc
! a8d585182791b6f20538c2782b802609 libstdc++-v3/src/c++11/debug.cc
3dc7ef08fca5552802fe27e16693ca60 libstdc++-v3/src/c++11/ext11-inst.cc
5aea38bc338b1cba873a9b4905ec9302 libstdc++-v3/src/c++11/fstream-inst.cc
d1a4b03efa880910d0fe3c80c93852d7 libstdc++-v3/src/c++11/functexcept.cc
*************** cdb42d548fb68dcc8d8b2b19f4e3b838 libstd
*** 80326,80337 ****
973bdc15344c7c47dac0825e5dd3ae14 libstdc++-v3/src/c++17/cow-fs_path.cc
9dd26b0a968f9d1f3ad03241a9479a36 libstdc++-v3/src/c++17/cow-string-inst.cc
21e22ff1ddec6a91c7b379d6f6398649 libstdc++-v3/src/c++17/default_resource.h
! 44311054522bc1fcc8f8c2d6d245fb1e libstdc++-v3/src/c++17/fs_dir.cc
! 6012582d6d236fb87a1db9800075149c libstdc++-v3/src/c++17/fs_ops.cc
! 37d4ba4018059e2b568837efcc446d79 libstdc++-v3/src/c++17/fs_path.cc
! c2553aa3ff07335e6cf5ffcee00fe81f libstdc++-v3/src/c++17/memory_resource.cc
1af5792e5d30c803b2b43f569aa2009b libstdc++-v3/src/c++17/ostream-inst.cc
! 40f1c35dfa9dde3a48f23c6fd45542b7 libstdc++-v3/src/c++17/string-inst.cc
8d282274e0b6d23e9542665403044445 libstdc++-v3/src/c++98/Makefile.am
a2fd7de992c4399521b32730e2b35e41 libstdc++-v3/src/c++98/Makefile.in
1d9f314d0aed319a9768431520e7a60a libstdc++-v3/src/c++98/allocator-inst.cc
--- 80696,80707 ----
973bdc15344c7c47dac0825e5dd3ae14 libstdc++-v3/src/c++17/cow-fs_path.cc
9dd26b0a968f9d1f3ad03241a9479a36 libstdc++-v3/src/c++17/cow-string-inst.cc
21e22ff1ddec6a91c7b379d6f6398649 libstdc++-v3/src/c++17/default_resource.h
! f9225d1d0650af954dadbf3297b37d6a libstdc++-v3/src/c++17/fs_dir.cc
! 5ee09a391ca0d195f10304f3b764a79e libstdc++-v3/src/c++17/fs_ops.cc
! 59d48310e4eb8e1170ffe35366a091ad libstdc++-v3/src/c++17/fs_path.cc
! 7df4e01e883db4c5dff71d6a45a8fc24 libstdc++-v3/src/c++17/memory_resource.cc
1af5792e5d30c803b2b43f569aa2009b libstdc++-v3/src/c++17/ostream-inst.cc
! 03c3e39c0074fb9169a185b2a6545476 libstdc++-v3/src/c++17/string-inst.cc
8d282274e0b6d23e9542665403044445 libstdc++-v3/src/c++98/Makefile.am
a2fd7de992c4399521b32730e2b35e41 libstdc++-v3/src/c++98/Makefile.in
1d9f314d0aed319a9768431520e7a60a libstdc++-v3/src/c++98/allocator-inst.cc
*************** f099e5c78b8b9d2b79df90e10a5e0dbb libstd
*** 80361,80367 ****
9a1670bed5bdb2bcd17f410769049793 libstdc++-v3/src/c++98/list_associated.cc
ec57cc82f1490fdbcc54b37211117a4a libstdc++-v3/src/c++98/locale.cc
08fd80e15b044fb9f75c025d6f6f75e2 libstdc++-v3/src/c++98/locale_facets.cc
! 48af7854421487e127c560ae5c7a6c0e libstdc++-v3/src/c++98/locale_init.cc
325cfd90dc0043f14fee45dac9cc7f4b libstdc++-v3/src/c++98/localename.cc
7501f233715233f4d555620bea71991f libstdc++-v3/src/c++98/math_stubs_float.cc
cc447a83a1e35f414f0211548055b1af libstdc++-v3/src/c++98/math_stubs_long_double.cc
--- 80731,80737 ----
9a1670bed5bdb2bcd17f410769049793 libstdc++-v3/src/c++98/list_associated.cc
ec57cc82f1490fdbcc54b37211117a4a libstdc++-v3/src/c++98/locale.cc
08fd80e15b044fb9f75c025d6f6f75e2 libstdc++-v3/src/c++98/locale_facets.cc
! 4eb4a337f80a8dc59376067c737fd0fd libstdc++-v3/src/c++98/locale_init.cc
325cfd90dc0043f14fee45dac9cc7f4b libstdc++-v3/src/c++98/localename.cc
7501f233715233f4d555620bea71991f libstdc++-v3/src/c++98/math_stubs_float.cc
cc447a83a1e35f414f0211548055b1af libstdc++-v3/src/c++98/math_stubs_long_double.cc
*************** ac77507691a841d710049cb24b2ed527 libstd
*** 80380,80388 ****
53935e3b007cf8063263b6152a8c77c9 libstdc++-v3/src/filesystem/cow-ops.cc
9c44300a7935727646b1219e128ac526 libstdc++-v3/src/filesystem/cow-path.cc
76ee6c2fd20867443ece5c2d4d96592b libstdc++-v3/src/filesystem/dir-common.h
! dcad43451e6bcc72bad1f84e4dc8a1fa libstdc++-v3/src/filesystem/dir.cc
! 43686f627198cf8f07f20bb6fd3956a6 libstdc++-v3/src/filesystem/ops-common.h
! 2f3d78abd4cdfffc6f390a21857c654d libstdc++-v3/src/filesystem/ops.cc
8061bbd7c2c95ce6c0a1e524ec6cf1f1 libstdc++-v3/src/filesystem/path.cc
d49521ccf869845cbde641d81c74b920 libstdc++-v3/src/shared/hashtable-aux.cc
e9b48a79435ee0015728938dfbe34881 libstdc++-v3/testsuite/17_intro/freestanding.cc
--- 80750,80758 ----
53935e3b007cf8063263b6152a8c77c9 libstdc++-v3/src/filesystem/cow-ops.cc
9c44300a7935727646b1219e128ac526 libstdc++-v3/src/filesystem/cow-path.cc
76ee6c2fd20867443ece5c2d4d96592b libstdc++-v3/src/filesystem/dir-common.h
! 8a8c5048db6c6875388e2242e3928474 libstdc++-v3/src/filesystem/dir.cc
! c826c6f6afdd752be89fb2cb09226fc2 libstdc++-v3/src/filesystem/ops-common.h
! ce07726060ebf2ef01a5812f7b121667 libstdc++-v3/src/filesystem/ops.cc
8061bbd7c2c95ce6c0a1e524ec6cf1f1 libstdc++-v3/src/filesystem/path.cc
d49521ccf869845cbde641d81c74b920 libstdc++-v3/src/shared/hashtable-aux.cc
e9b48a79435ee0015728938dfbe34881 libstdc++-v3/testsuite/17_intro/freestanding.cc
*************** b0ca459b19eb56402e8822ca0dfde465 libstd
*** 80393,80399 ****
00689a459e3db4b995fb8217024d1798 libstdc++-v3/testsuite/17_intro/headers/c++1998/all_no_exceptions.cc
be8caaa58c03de9d9889e157a7a73149 libstdc++-v3/testsuite/17_intro/headers/c++1998/all_no_rtti.cc
32aa77c24d114aa66d53ae9a74289275 libstdc++-v3/testsuite/17_intro/headers/c++1998/all_pedantic_errors.cc
! ef6315c5db03663c3dda103e6d9a1a6e libstdc++-v3/testsuite/17_intro/headers/c++1998/charset.cc
cb8af63bc4021e369097278b1388f8b5 libstdc++-v3/testsuite/17_intro/headers/c++1998/complex.cc
189493a986a35cda1ee1b088846d327c libstdc++-v3/testsuite/17_intro/headers/c++1998/operator_names.cc
3368e2ec8895e24b31bbfd0c87e0abcb libstdc++-v3/testsuite/17_intro/headers/c++1998/stdc++.cc
--- 80763,80769 ----
00689a459e3db4b995fb8217024d1798 libstdc++-v3/testsuite/17_intro/headers/c++1998/all_no_exceptions.cc
be8caaa58c03de9d9889e157a7a73149 libstdc++-v3/testsuite/17_intro/headers/c++1998/all_no_rtti.cc
32aa77c24d114aa66d53ae9a74289275 libstdc++-v3/testsuite/17_intro/headers/c++1998/all_pedantic_errors.cc
! b8a53b2b8da32d102d69cbedea3d2216 libstdc++-v3/testsuite/17_intro/headers/c++1998/charset.cc
cb8af63bc4021e369097278b1388f8b5 libstdc++-v3/testsuite/17_intro/headers/c++1998/complex.cc
189493a986a35cda1ee1b088846d327c libstdc++-v3/testsuite/17_intro/headers/c++1998/operator_names.cc
3368e2ec8895e24b31bbfd0c87e0abcb libstdc++-v3/testsuite/17_intro/headers/c++1998/stdc++.cc
*************** ba21d20428d0d1984ce40d06da169548 libstd
*** 80405,80411 ****
2cfd499fd77551bec96c7281ce76dab7 libstdc++-v3/testsuite/17_intro/headers/c++2011/all_no_exceptions.cc
a4685c2b5bbe26019571f5071db5003c libstdc++-v3/testsuite/17_intro/headers/c++2011/all_no_rtti.cc
b62b712f00c395de4a5dc42f9daf4619 libstdc++-v3/testsuite/17_intro/headers/c++2011/all_pedantic_errors.cc
! ef6315c5db03663c3dda103e6d9a1a6e libstdc++-v3/testsuite/17_intro/headers/c++2011/charset.cc
16479a37506a26218204ee6beef103d9 libstdc++-v3/testsuite/17_intro/headers/c++2011/linkage.cc
c9df10ffbee966605e6dc4a93e6338de libstdc++-v3/testsuite/17_intro/headers/c++2011/operator_names.cc
13bdd89f1562c9bf326360392bbb872c libstdc++-v3/testsuite/17_intro/headers/c++2011/parallel_mode.cc
--- 80775,80781 ----
2cfd499fd77551bec96c7281ce76dab7 libstdc++-v3/testsuite/17_intro/headers/c++2011/all_no_exceptions.cc
a4685c2b5bbe26019571f5071db5003c libstdc++-v3/testsuite/17_intro/headers/c++2011/all_no_rtti.cc
b62b712f00c395de4a5dc42f9daf4619 libstdc++-v3/testsuite/17_intro/headers/c++2011/all_pedantic_errors.cc
! b8a53b2b8da32d102d69cbedea3d2216 libstdc++-v3/testsuite/17_intro/headers/c++2011/charset.cc
16479a37506a26218204ee6beef103d9 libstdc++-v3/testsuite/17_intro/headers/c++2011/linkage.cc
c9df10ffbee966605e6dc4a93e6338de libstdc++-v3/testsuite/17_intro/headers/c++2011/operator_names.cc
13bdd89f1562c9bf326360392bbb872c libstdc++-v3/testsuite/17_intro/headers/c++2011/parallel_mode.cc
*************** df1228f7215643eb4f3971d902b047f2 libstd
*** 80415,80421 ****
708ee0c4e455030fd008bedc242e4f07 libstdc++-v3/testsuite/17_intro/headers/c++2014/all_no_exceptions.cc
5e9a997546a64c5199f49ab142a92505 libstdc++-v3/testsuite/17_intro/headers/c++2014/all_no_rtti.cc
4de6d01cea7405cac003bddb5955e74d libstdc++-v3/testsuite/17_intro/headers/c++2014/all_pedantic_errors.cc
! ef6315c5db03663c3dda103e6d9a1a6e libstdc++-v3/testsuite/17_intro/headers/c++2014/charset.cc
994cd9e76bf90d04ecc991bcccd96cd6 libstdc++-v3/testsuite/17_intro/headers/c++2014/operator_names.cc
87c7f43af9b660f407070623c8749b5e libstdc++-v3/testsuite/17_intro/headers/c++2014/parallel_mode.cc
0b8b3a2b1715d531ec072970e3d535e1 libstdc++-v3/testsuite/17_intro/headers/c++2014/stdc++.cc
--- 80785,80791 ----
708ee0c4e455030fd008bedc242e4f07 libstdc++-v3/testsuite/17_intro/headers/c++2014/all_no_exceptions.cc
5e9a997546a64c5199f49ab142a92505 libstdc++-v3/testsuite/17_intro/headers/c++2014/all_no_rtti.cc
4de6d01cea7405cac003bddb5955e74d libstdc++-v3/testsuite/17_intro/headers/c++2014/all_pedantic_errors.cc
! b8a53b2b8da32d102d69cbedea3d2216 libstdc++-v3/testsuite/17_intro/headers/c++2014/charset.cc
994cd9e76bf90d04ecc991bcccd96cd6 libstdc++-v3/testsuite/17_intro/headers/c++2014/operator_names.cc
87c7f43af9b660f407070623c8749b5e libstdc++-v3/testsuite/17_intro/headers/c++2014/parallel_mode.cc
0b8b3a2b1715d531ec072970e3d535e1 libstdc++-v3/testsuite/17_intro/headers/c++2014/stdc++.cc
*************** a55e3d52e908e716d58e753ea5b17945 libstd
*** 80424,80430 ****
9c3d6b2f414f82bc82bb3d968c202f4f libstdc++-v3/testsuite/17_intro/headers/c++2017/all_no_exceptions.cc
2ada393d8fc6dac293d432f678e37c43 libstdc++-v3/testsuite/17_intro/headers/c++2017/all_no_rtti.cc
a535132edf5dd9de05acb7cb47f79ed5 libstdc++-v3/testsuite/17_intro/headers/c++2017/all_pedantic_errors.cc
! ef6315c5db03663c3dda103e6d9a1a6e libstdc++-v3/testsuite/17_intro/headers/c++2017/charset.cc
b926ec774212c7e516469521b7c9a315 libstdc++-v3/testsuite/17_intro/headers/c++2017/operator_names.cc
1552db45ee00b6cddab87e2a77a0e303 libstdc++-v3/testsuite/17_intro/headers/c++2017/parallel_mode.cc
3fff818cd4f6cc5bc8787e17c0e10f4b libstdc++-v3/testsuite/17_intro/headers/c++2017/stdc++.cc
--- 80794,80800 ----
9c3d6b2f414f82bc82bb3d968c202f4f libstdc++-v3/testsuite/17_intro/headers/c++2017/all_no_exceptions.cc
2ada393d8fc6dac293d432f678e37c43 libstdc++-v3/testsuite/17_intro/headers/c++2017/all_no_rtti.cc
a535132edf5dd9de05acb7cb47f79ed5 libstdc++-v3/testsuite/17_intro/headers/c++2017/all_pedantic_errors.cc
! b8a53b2b8da32d102d69cbedea3d2216 libstdc++-v3/testsuite/17_intro/headers/c++2017/charset.cc
b926ec774212c7e516469521b7c9a315 libstdc++-v3/testsuite/17_intro/headers/c++2017/operator_names.cc
1552db45ee00b6cddab87e2a77a0e303 libstdc++-v3/testsuite/17_intro/headers/c++2017/parallel_mode.cc
3fff818cd4f6cc5bc8787e17c0e10f4b libstdc++-v3/testsuite/17_intro/headers/c++2017/stdc++.cc
*************** e3f8eafa410d3179ba137cbd8d52eba1 libstd
*** 80433,80443 ****
06b4c7064b790b687cf98ae4b6cf30f4 libstdc++-v3/testsuite/17_intro/headers/c++2020/all_no_exceptions.cc
ce527f97b65d4acd78962b47a5857a4a libstdc++-v3/testsuite/17_intro/headers/c++2020/all_no_rtti.cc
40a4bfef466dde302d82ffbf0aafe667 libstdc++-v3/testsuite/17_intro/headers/c++2020/all_pedantic_errors.cc
! ef6315c5db03663c3dda103e6d9a1a6e libstdc++-v3/testsuite/17_intro/headers/c++2020/charset.cc
e3ed3e41d5f226929e61703c27f693c5 libstdc++-v3/testsuite/17_intro/headers/c++2020/operator_names.cc
6a82d8566c6680259cdb820ea85115d2 libstdc++-v3/testsuite/17_intro/headers/c++2020/stdc++.cc
1acef44ca839d7e2dfea0ab04ee4e360 libstdc++-v3/testsuite/17_intro/headers/c++2020/stdc++_multiple_inclusion.cc
! b10da0ada82b1fb18021c69d2f19742e libstdc++-v3/testsuite/17_intro/names.cc
3152ffd9fa3e4f32132af4217744b741 libstdc++-v3/testsuite/17_intro/shared_with_static_deps.cc
5d70096baecf4449bb06506ff42b42a3 libstdc++-v3/testsuite/17_intro/static.cc
ae7c07c2da8f2b7bcb60cf84d2ebc4b3 libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc
--- 80803,80813 ----
06b4c7064b790b687cf98ae4b6cf30f4 libstdc++-v3/testsuite/17_intro/headers/c++2020/all_no_exceptions.cc
ce527f97b65d4acd78962b47a5857a4a libstdc++-v3/testsuite/17_intro/headers/c++2020/all_no_rtti.cc
40a4bfef466dde302d82ffbf0aafe667 libstdc++-v3/testsuite/17_intro/headers/c++2020/all_pedantic_errors.cc
! b8a53b2b8da32d102d69cbedea3d2216 libstdc++-v3/testsuite/17_intro/headers/c++2020/charset.cc
e3ed3e41d5f226929e61703c27f693c5 libstdc++-v3/testsuite/17_intro/headers/c++2020/operator_names.cc
6a82d8566c6680259cdb820ea85115d2 libstdc++-v3/testsuite/17_intro/headers/c++2020/stdc++.cc
1acef44ca839d7e2dfea0ab04ee4e360 libstdc++-v3/testsuite/17_intro/headers/c++2020/stdc++_multiple_inclusion.cc
! ceab911f8e198c0b93402433e028191d libstdc++-v3/testsuite/17_intro/names.cc
3152ffd9fa3e4f32132af4217744b741 libstdc++-v3/testsuite/17_intro/shared_with_static_deps.cc
5d70096baecf4449bb06506ff42b42a3 libstdc++-v3/testsuite/17_intro/static.cc
ae7c07c2da8f2b7bcb60cf84d2ebc4b3 libstdc++-v3/testsuite/17_intro/tag_type_explicit_ctor.cc
*************** f1c6ac1bad988ccd25f6d4f2a50fb4a7 libstd
*** 80560,80565 ****
--- 80930,80937 ----
d179fda5a417e8aa4304b8440f6d6e31 libstdc++-v3/testsuite/18_support/numeric_limits/traps.cc
080df4efaac422ccd30682f20eeceda1 libstdc++-v3/testsuite/18_support/pthread_guard.cc
b74bbd344a41e4d24f6dba8fa2865d33 libstdc++-v3/testsuite/18_support/quick_exit/quick_exit.cc
+ cb19b463a5f7176a93989a509b76a5ee libstdc++-v3/testsuite/18_support/set_terminate.cc
+ 25ba4c5e27878a241d8e9a663b218fd5 libstdc++-v3/testsuite/18_support/set_unexpected.cc
f4c7e2ec98b0513fa60a918351886c40 libstdc++-v3/testsuite/18_support/terminate_handler.cc
53f8544514cf89eee48967d0405a51ec libstdc++-v3/testsuite/18_support/type_info/52562.cc
906adc39b36cccbbff919b63e511e9af libstdc++-v3/testsuite/18_support/type_info/fundamental.cc
*************** b4572a3dea7c692b615cb5e0ea9a85ef libstd
*** 80835,80840 ****
--- 81207,81213 ----
0109b00b0987ad872de0343634bf8aae libstdc++-v3/testsuite/20_util/function/77322.cc
0758349dd8a59e86424606de1502f331 libstdc++-v3/testsuite/20_util/function/8.cc
37a9c2f578ee907b6b1a7acefd5ca929 libstdc++-v3/testsuite/20_util/function/9.cc
+ b3d185762c2d0c396d9bbf7ac3d721b7 libstdc++-v3/testsuite/20_util/function/91456.cc
e46ffbee3f41a37702c41f2ebca8f035 libstdc++-v3/testsuite/20_util/function/assign/move.cc
9f2e22ac70e44dc01e018cfa27560de2 libstdc++-v3/testsuite/20_util/function/assign/move_target.cc
479f858b3933cad61df02bb2b614b65c libstdc++-v3/testsuite/20_util/function/cmp/cmp_neg.cc
*************** fe80d13906335a4a376251c8737dd128 libstd
*** 80853,80859 ****
373773252af538febb66e81fe1e7751a libstdc++-v3/testsuite/20_util/function/null_pointer_comparisons.cc
83ce65f876e52735db301ec751569022 libstdc++-v3/testsuite/20_util/function/requirements/explicit_instantiation.cc
655cf2ea5bbb8d8c0bc8c85afa418186 libstdc++-v3/testsuite/20_util/function_objects/83607.cc
! 1b1d914a5bb1e55887b39ad866cabe06 libstdc++-v3/testsuite/20_util/function_objects/bind_front/1.cc
4162f45c9ea1d1152cc5208a5f6e05ef libstdc++-v3/testsuite/20_util/function_objects/binders/1.cc
609c52c1060d5048c2c456f2c355339d libstdc++-v3/testsuite/20_util/function_objects/binders/3113.cc
67ea82776af66aa7c4b5afe452f890b1 libstdc++-v3/testsuite/20_util/function_objects/comparisons.cc
--- 81226,81233 ----
373773252af538febb66e81fe1e7751a libstdc++-v3/testsuite/20_util/function/null_pointer_comparisons.cc
83ce65f876e52735db301ec751569022 libstdc++-v3/testsuite/20_util/function/requirements/explicit_instantiation.cc
655cf2ea5bbb8d8c0bc8c85afa418186 libstdc++-v3/testsuite/20_util/function_objects/83607.cc
! ea3e58e2aabec0b9c060c0d4a821c8df libstdc++-v3/testsuite/20_util/function_objects/bind_front/1.cc
! 7827680793191bca9cfac69dec60b4da libstdc++-v3/testsuite/20_util/function_objects/bind_front/2.cc
4162f45c9ea1d1152cc5208a5f6e05ef libstdc++-v3/testsuite/20_util/function_objects/binders/1.cc
609c52c1060d5048c2c456f2c355339d libstdc++-v3/testsuite/20_util/function_objects/binders/3113.cc
67ea82776af66aa7c4b5afe452f890b1 libstdc++-v3/testsuite/20_util/function_objects/comparisons.cc
*************** fe80d13906335a4a376251c8737dd128 libstd
*** 80861,80867 ****
6089937752fa08405fe44e3f50c3df18 libstdc++-v3/testsuite/20_util/function_objects/comparisons_void.cc
59fb2c50e4387e59249311b67b9ea51c libstdc++-v3/testsuite/20_util/function_objects/constexpr.cc
792cb2bfafdcd52d83c4e83f43ae2969 libstdc++-v3/testsuite/20_util/function_objects/dr660.cc
! f448a80e703c8bf91eec784645c28d61 libstdc++-v3/testsuite/20_util/function_objects/invoke/1.cc
e0a7ff2697cee950cd4f16aa6041eb33 libstdc++-v3/testsuite/20_util/function_objects/invoke/59768.cc
e56bcbbaeefdf20e12ed30ad01f50cb1 libstdc++-v3/testsuite/20_util/function_objects/invoke/ref_ext.cc
713a7549388fc488a4a3098ecc5c3f2d libstdc++-v3/testsuite/20_util/function_objects/mem_fn/55463.cc
--- 81235,81242 ----
6089937752fa08405fe44e3f50c3df18 libstdc++-v3/testsuite/20_util/function_objects/comparisons_void.cc
59fb2c50e4387e59249311b67b9ea51c libstdc++-v3/testsuite/20_util/function_objects/constexpr.cc
792cb2bfafdcd52d83c4e83f43ae2969 libstdc++-v3/testsuite/20_util/function_objects/dr660.cc
! e3bbe73f3d2a650d7d108e54824ac3a4 libstdc++-v3/testsuite/20_util/function_objects/invoke/1.cc
! 5716d03ae6db1473a46ff17b81ca33f4 libstdc++-v3/testsuite/20_util/function_objects/invoke/3.cc
e0a7ff2697cee950cd4f16aa6041eb33 libstdc++-v3/testsuite/20_util/function_objects/invoke/59768.cc
e56bcbbaeefdf20e12ed30ad01f50cb1 libstdc++-v3/testsuite/20_util/function_objects/invoke/ref_ext.cc
713a7549388fc488a4a3098ecc5c3f2d libstdc++-v3/testsuite/20_util/function_objects/mem_fn/55463.cc
*************** d32debafcd0ac9b1044984678dfb86a6 libstd
*** 81004,81009 ****
--- 81379,81385 ----
62f5ab1e648c3b821ed133ea62d5082f libstdc++-v3/testsuite/20_util/is_integral/requirements/typedefs.cc
a77eddbcdeb3bf81f0617b62b3238756 libstdc++-v3/testsuite/20_util/is_integral/value.cc
70c2591f92ce83a23fb2a0481afddb98 libstdc++-v3/testsuite/20_util/is_invocable/83395.cc
+ 9ede60a63093976a3ac485a6ca68dd49 libstdc++-v3/testsuite/20_util/is_invocable/91456.cc
f8d2bfff8a982bf04ea18b3a199e1e3f libstdc++-v3/testsuite/20_util/is_invocable/requirements/explicit_instantiation.cc
3e1337fad7b76fb3116506404139b830 libstdc++-v3/testsuite/20_util/is_invocable/requirements/explicit_instantiation_ext.cc
ae5f137d9c641acb5ccc1013a6ae80f8 libstdc++-v3/testsuite/20_util/is_invocable/requirements/typedefs.cc
*************** eabbd40d37a11f7efe76de9b5258c0fc libstd
*** 81057,81063 ****
e39909063441ccd5da10824bf69d1e69 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/requirements/explicit_instantiation_ext.cc
48f13eb3633a7d93f899088a5b0ac018 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/requirements/typedefs.cc
ce42a963cdd7072977adce26ead73298 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/requirements/typedefs_ext.cc
! 1f724371745af7bb0860811a9a17b129 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/value.cc
7f8be3703309fcb16042b557c951f8f1 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/value_ext.cc
10eefc62e4ac2403136ee7ae07ecbbd5 libstdc++-v3/testsuite/20_util/is_nothrow_move_assignable/requirements/explicit_instantiation.cc
a2248e6657e7c07f92364cae7e0aa586 libstdc++-v3/testsuite/20_util/is_nothrow_move_assignable/requirements/typedefs.cc
--- 81433,81439 ----
e39909063441ccd5da10824bf69d1e69 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/requirements/explicit_instantiation_ext.cc
48f13eb3633a7d93f899088a5b0ac018 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/requirements/typedefs.cc
ce42a963cdd7072977adce26ead73298 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/requirements/typedefs_ext.cc
! 40f2e37ff950367d6035121e36b61c86 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/value.cc
7f8be3703309fcb16042b557c951f8f1 libstdc++-v3/testsuite/20_util/is_nothrow_invocable/value_ext.cc
10eefc62e4ac2403136ee7ae07ecbbd5 libstdc++-v3/testsuite/20_util/is_nothrow_move_assignable/requirements/explicit_instantiation.cc
a2248e6657e7c07f92364cae7e0aa586 libstdc++-v3/testsuite/20_util/is_nothrow_move_assignable/requirements/typedefs.cc
*************** b623f090f447900e4e448950ce0ab77a libstd
*** 81183,81188 ****
--- 81559,81565 ----
900694c63ae9f946160ab22ad0cfcc59 libstdc++-v3/testsuite/20_util/memory_resource/1.cc
ea1569f22452ebf174a243272f8761d3 libstdc++-v3/testsuite/20_util/memory_resource/2.cc
011535ea65fe4acefcd54bb58fca218e libstdc++-v3/testsuite/20_util/monotonic_buffer_resource/1.cc
+ 4829daa7e9cd22ef9a4ba54cf04d6084 libstdc++-v3/testsuite/20_util/monotonic_buffer_resource/93208.cc
b42ca12f0907d7142d67bf065c310236 libstdc++-v3/testsuite/20_util/monotonic_buffer_resource/allocate.cc
7e03214e07eee7ea3ef018577a8e8494 libstdc++-v3/testsuite/20_util/monotonic_buffer_resource/deallocate.cc
d67a9a7b842464965f09fb010c8847cc libstdc++-v3/testsuite/20_util/monotonic_buffer_resource/release.cc
*************** d868626e33bdfcfa676957d2ec1a414f libstd
*** 81483,81500 ****
7d5ae9d4e9816ea70d21f1ea7bdfcfe1 libstdc++-v3/testsuite/20_util/specialized_algorithms/pstl/uninitialized_construct.cc
37320bdcf7e7cd6fac5c10e3d2a5faa8 libstdc++-v3/testsuite/20_util/specialized_algorithms/pstl/uninitialized_copy_move.cc
ac45025630049aab48b86635fe951b1f libstdc++-v3/testsuite/20_util/specialized_algorithms/pstl/uninitialized_fill_destroy.cc
! 434c7fca165e1885ca720c1142b8025f libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/1.cc
360a0bf40c45c669b5245c9040a3ce13 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/58982.cc
b04bec6f015ac29e9f5ff7cbe78c996b libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/64476.cc
61acfb18667a91a163130c7d2defd23f libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590-cxx11.cc
90f00903a6476eda90093b1cc8b671ce libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc
0cc08c819d4efb40e76acc284be53253 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/move_iterators/1.cc
fc86cf35e77db5499bc0114f260636ad libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/58982.cc
a23a1774386d48be204d4c075825e9ac libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/move_iterators/1.cc
a1922244babc47837534fb2b909aa466 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill/32158.cc
7f37336585d7259dc61cadef748ac194 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill/58982.cc
4bd848223a1efe80672984e6f6db12cf libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/16505.cc
8c6685f1e486b0d1b2fe60bab3783933 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/58982.cc
df9cb374f7036a0dfafd0d07d609b643 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/dr1339.cc
022f73f2383f7421f1c18682885a06ee libstdc++-v3/testsuite/20_util/steady_clock/constexpr_data.cc
d30cf9f2ef95d98262ffe4c699a1bb57 libstdc++-v3/testsuite/20_util/synchronized_pool_resource/allocate.cc
--- 81860,81881 ----
7d5ae9d4e9816ea70d21f1ea7bdfcfe1 libstdc++-v3/testsuite/20_util/specialized_algorithms/pstl/uninitialized_construct.cc
37320bdcf7e7cd6fac5c10e3d2a5faa8 libstdc++-v3/testsuite/20_util/specialized_algorithms/pstl/uninitialized_copy_move.cc
ac45025630049aab48b86635fe951b1f libstdc++-v3/testsuite/20_util/specialized_algorithms/pstl/uninitialized_fill_destroy.cc
! 3633fe1d5e2d8c86ded40aa976146582 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/1.cc
360a0bf40c45c669b5245c9040a3ce13 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/58982.cc
b04bec6f015ac29e9f5ff7cbe78c996b libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/64476.cc
61acfb18667a91a163130c7d2defd23f libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590-cxx11.cc
90f00903a6476eda90093b1cc8b671ce libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/808590.cc
+ 9e677429c4d25aa98ab458de7183ea9a libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/89164.cc
0cc08c819d4efb40e76acc284be53253 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy/move_iterators/1.cc
fc86cf35e77db5499bc0114f260636ad libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/58982.cc
+ aaabba48ddb78dd9c7be42d20a54ccc7 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/89164.cc
a23a1774386d48be204d4c075825e9ac libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/move_iterators/1.cc
a1922244babc47837534fb2b909aa466 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill/32158.cc
7f37336585d7259dc61cadef748ac194 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill/58982.cc
+ 9f8372520072a6e82abfa9a402dd4e98 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill/89164.cc
4bd848223a1efe80672984e6f6db12cf libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/16505.cc
8c6685f1e486b0d1b2fe60bab3783933 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/58982.cc
+ 576de8a4581859e138c0df15f970a2c1 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/89164.cc
df9cb374f7036a0dfafd0d07d609b643 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/dr1339.cc
022f73f2383f7421f1c18682885a06ee libstdc++-v3/testsuite/20_util/steady_clock/constexpr_data.cc
d30cf9f2ef95d98262ffe4c699a1bb57 libstdc++-v3/testsuite/20_util/synchronized_pool_resource/allocate.cc
*************** cd94f1a52cb6c2392d19116ef68ec1e2 libstd
*** 81642,81647 ****
--- 82023,82029 ----
2b1afddd884ea81eb33855621f6baef6 libstdc++-v3/testsuite/20_util/unique_ptr/hash/1.cc
f342f67e461fdfecfcf2699a25fe62ad libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/43183.cc
02cce06cc2338a8ce1a1d8e75b7c786f libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/48398.cc
+ 652a945e3e33dd9445a13cebd0009ed8 libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/93562.cc
cdab5e3664ccd5407fa1df48cda78375 libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/cv_qual.cc
4823a4418620b004eb342f2b9c58a31a libstdc++-v3/testsuite/20_util/unique_ptr/modifiers/reset_neg.cc
4e2de09ee77cf1b8507aa7cdf10ee3e7 libstdc++-v3/testsuite/20_util/unique_ptr/requirements/explicit_instantiation/explicit_instantiation.cc
*************** e14c315910dd69bd73b13fc5c7fcbd3a libstd
*** 82855,82865 ****
c0efa34281c3817dd017e12f99d9329c libstdc++-v3/testsuite/23_containers/deque/range_access.cc
6f05fecc94690fe3369a8b408944ba0b libstdc++-v3/testsuite/23_containers/deque/requirements/citerators.cc
8b384ee530369e1823cf257266d16d75 libstdc++-v3/testsuite/23_containers/deque/requirements/do_the_right_thing.cc
! 8f835d0cc14ae89570fbc0c81d78dffe libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/assign_neg.cc
6f65bc76a167dd70e6d739b200f5b1ab libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/constructor.cc
! 23450a3a9321a3765981289102e5186a libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/constructor_1_neg.cc
! 6ffb84cda4f9d6dc95b266fb3d601a45 libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/constructor_2_neg.cc
! 76c4fddc6d6c3fc3664525dbfe1df3bb libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/insert_neg.cc
2dc162efbb6ae410fba2dc25ba5f06b9 libstdc++-v3/testsuite/23_containers/deque/requirements/exception/basic.cc
d50eb53de1642c3e01726a56f046f1ef libstdc++-v3/testsuite/23_containers/deque/requirements/exception/generation_prohibited.cc
7abb0b1cd9daf50b6dbefe5c6003db39 libstdc++-v3/testsuite/23_containers/deque/requirements/exception/propagation_consistent.cc
--- 83237,83247 ----
c0efa34281c3817dd017e12f99d9329c libstdc++-v3/testsuite/23_containers/deque/range_access.cc
6f05fecc94690fe3369a8b408944ba0b libstdc++-v3/testsuite/23_containers/deque/requirements/citerators.cc
8b384ee530369e1823cf257266d16d75 libstdc++-v3/testsuite/23_containers/deque/requirements/do_the_right_thing.cc
! c8f67ae8882ab94d05bea524fca8e88a libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/assign_neg.cc
6f65bc76a167dd70e6d739b200f5b1ab libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/constructor.cc
! 43cadc28b8e287c4d93c7cf8a9db9095 libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/constructor_1_neg.cc
! 3065b0df3a199f9ae0a5422bfa97674f libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/constructor_2_neg.cc
! de98705f419884a708ddcb5e6b7926ce libstdc++-v3/testsuite/23_containers/deque/requirements/dr438/insert_neg.cc
2dc162efbb6ae410fba2dc25ba5f06b9 libstdc++-v3/testsuite/23_containers/deque/requirements/exception/basic.cc
d50eb53de1642c3e01726a56f046f1ef libstdc++-v3/testsuite/23_containers/deque/requirements/exception/generation_prohibited.cc
7abb0b1cd9daf50b6dbefe5c6003db39 libstdc++-v3/testsuite/23_containers/deque/requirements/exception/propagation_consistent.cc
*************** c08521b0c9f983283924134a2d84099e libstd
*** 82871,82876 ****
--- 83253,83259 ----
144289405c494fbacd003524098ba04e libstdc++-v3/testsuite/23_containers/deque/requirements/partial_specialization/1.cc
ad41e1466339051bcfaf9b907ef875a9 libstdc++-v3/testsuite/23_containers/deque/requirements/typedefs.cc
94df16587d4c8239e5b00aa107fcbdd4 libstdc++-v3/testsuite/23_containers/deque/types/1.cc
+ 9a9586408c20c0b2e27943bf5d65cf61 libstdc++-v3/testsuite/23_containers/deque/types/92267.cc
34e37fc2b9948e48731f3fc9ce42ddc8 libstdc++-v3/testsuite/23_containers/deque/types/pmr_typedefs.cc
2ce4486cda413ad1719d852e65a675ff libstdc++-v3/testsuite/23_containers/deque/types/pmr_typedefs_debug.cc
a351adaaa2aa7deb1e33f4fca24668d0 libstdc++-v3/testsuite/23_containers/forward_list/48101-2_neg.cc
*************** d2378b7a97e77bcc8a53835680b25f35 libstd
*** 83109,83119 ****
7e708981502e01000af37da27c868381 libstdc++-v3/testsuite/23_containers/list/range_access.cc
d6fc4811d02b3e088f3d99ed25fa003e libstdc++-v3/testsuite/23_containers/list/requirements/citerators.cc
6283af1e5e69268fe0f7e0f358e0b99c libstdc++-v3/testsuite/23_containers/list/requirements/do_the_right_thing.cc
! b63f884856bfe20ed77bd81e51aec541 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/assign_neg.cc
3d2ce3b533115d8e32a4b0754708eca3 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/constructor.cc
! 8b83610e57ce07551049e36b85b26506 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/constructor_1_neg.cc
! 28d4e26f4e46ecc4677efabdc5b8d945 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/constructor_2_neg.cc
! 8121dcaae02a67acedd5b73254ed51f9 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/insert_neg.cc
cddc8ebf68801830271a9ac495d13b0b libstdc++-v3/testsuite/23_containers/list/requirements/exception/basic.cc
5d21f0713cfcbaedc8b25f5095364ce9 libstdc++-v3/testsuite/23_containers/list/requirements/exception/generation_prohibited.cc
bfbf41917afddf8e7e733583994fe44e libstdc++-v3/testsuite/23_containers/list/requirements/exception/propagation_consistent.cc
--- 83492,83502 ----
7e708981502e01000af37da27c868381 libstdc++-v3/testsuite/23_containers/list/range_access.cc
d6fc4811d02b3e088f3d99ed25fa003e libstdc++-v3/testsuite/23_containers/list/requirements/citerators.cc
6283af1e5e69268fe0f7e0f358e0b99c libstdc++-v3/testsuite/23_containers/list/requirements/do_the_right_thing.cc
! 369dafb895d383ff8efeedf227cf1376 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/assign_neg.cc
3d2ce3b533115d8e32a4b0754708eca3 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/constructor.cc
! f84e590d5daf6e7da45cb80095e0eb21 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/constructor_1_neg.cc
! db387874b16e064af28bc8d4bf49d5f9 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/constructor_2_neg.cc
! 89def9bd79717f9202e6f494335d9699 libstdc++-v3/testsuite/23_containers/list/requirements/dr438/insert_neg.cc
cddc8ebf68801830271a9ac495d13b0b libstdc++-v3/testsuite/23_containers/list/requirements/exception/basic.cc
5d21f0713cfcbaedc8b25f5095364ce9 libstdc++-v3/testsuite/23_containers/list/requirements/exception/generation_prohibited.cc
bfbf41917afddf8e7e733583994fe44e libstdc++-v3/testsuite/23_containers/list/requirements/exception/propagation_consistent.cc
*************** fdf68709d646551f0edeab8108cb941d libstd
*** 83558,83564 ****
c6b13542ed1701cb95624b06bab17179 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/53339.cc
273b201e760d41873032bdb86be01686 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/citerators.cc
4810a885e633cce9f3b452989586e438 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/cliterators.cc
! 42e10dd26913e808974bad12649c3a3e libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_container.cc
1acd33ad65681f64bf51c66065265b57 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_mode.cc
0d0c0e2fd1a1c7afd7577415bfc71cb4 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/exception/basic.cc
b67073b1d18fbfba537a038d9d53d465 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/exception/generation_prohibited.cc
--- 83941,83947 ----
c6b13542ed1701cb95624b06bab17179 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/53339.cc
273b201e760d41873032bdb86be01686 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/citerators.cc
4810a885e633cce9f3b452989586e438 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/cliterators.cc
! f1da446854aa450a1f57328594dc36a1 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_container.cc
1acd33ad65681f64bf51c66065265b57 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/debug_mode.cc
0d0c0e2fd1a1c7afd7577415bfc71cb4 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/exception/basic.cc
b67073b1d18fbfba537a038d9d53d465 libstdc++-v3/testsuite/23_containers/unordered_map/requirements/exception/generation_prohibited.cc
*************** a581c301a90cc1b8a100ac4f5736f52f libstd
*** 83746,83752 ****
7b09154a05fe6222e87173a6dead7b2d libstdc++-v3/testsuite/23_containers/unordered_set/85965.cc
2e4170496e1e0a7e9c0c2bf9e3a55789 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/copy.cc
a78ae206fb82a2a89506c611bc9972e9 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/copy_assign.cc
! 025824ca5bbd7c6320560ed437349172 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/ext_ptr.cc
a6fc8006b400a778b851f9fb96abd081 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/minimal.cc
25a7d270e0f0f8061a7b239340ad4749 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/move.cc
3d362f85422cfda700550c1249ab4d89 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/move_assign.cc
--- 84129,84135 ----
7b09154a05fe6222e87173a6dead7b2d libstdc++-v3/testsuite/23_containers/unordered_set/85965.cc
2e4170496e1e0a7e9c0c2bf9e3a55789 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/copy.cc
a78ae206fb82a2a89506c611bc9972e9 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/copy_assign.cc
! 773aec3017e92a11b90ff429bb2fe7a4 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/ext_ptr.cc
a6fc8006b400a778b851f9fb96abd081 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/minimal.cc
25a7d270e0f0f8061a7b239340ad4749 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/move.cc
3d362f85422cfda700550c1249ab4d89 libstdc++-v3/testsuite/23_containers/unordered_set/allocator/move_assign.cc
*************** cb7932d8c2420b3d7087ee4b8d353e1d libstd
*** 83921,83926 ****
--- 84304,84311 ----
63f124b6cfa6b691fac8e5cd28592ee7 libstdc++-v3/testsuite/23_containers/vector/cons/6513.cc
f2ad0afad74789c6fed8e6d6d4588ff5 libstdc++-v3/testsuite/23_containers/vector/cons/86292.cc
f6442b52d08d8d26ef1ea6d34aeef79e libstdc++-v3/testsuite/23_containers/vector/cons/87809.cc
+ 53ec406f28247028f51e535e3c149462 libstdc++-v3/testsuite/23_containers/vector/cons/89164.cc
+ a995f6ccef34e3fb27b9d769f4c8f24d libstdc++-v3/testsuite/23_containers/vector/cons/89164_c++17.cc
84c90c81e71fd3b15f7576319e837448 libstdc++-v3/testsuite/23_containers/vector/cons/clear_allocator.cc
80b03c034add6856b2978cc5c8dde6bd libstdc++-v3/testsuite/23_containers/vector/cons/cons_size.cc
06b5a60ede775b041361daf03188d386 libstdc++-v3/testsuite/23_containers/vector/cons/deduction.cc
*************** f52b0bea9f603c6f6edc8c2556862be4 libstd
*** 84011,84021 ****
bc0616bb286b6aa7e2953f8b879f6c8b libstdc++-v3/testsuite/23_containers/vector/range_access.cc
67109ed7fb0e14043026aa43a5fc1deb libstdc++-v3/testsuite/23_containers/vector/requirements/citerators.cc
8d273507069681e4d3cfa0e24b250e2b libstdc++-v3/testsuite/23_containers/vector/requirements/do_the_right_thing.cc
! eaba74ac97e6c5222e6fa836feb57ba1 libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/assign_neg.cc
d100b99769ea9edd4c0a3a3fd1aa3ede libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/constructor.cc
! 12cdf7c49c376a0bd32af05716d0444d libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/constructor_1_neg.cc
! c1eec9e0f1b7166b6f0a483fc57568a8 libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/constructor_2_neg.cc
! df109a45947cd4c1a6a190e609ec1fb2 libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/insert_neg.cc
779850e561444e42fb46698cb57e0031 libstdc++-v3/testsuite/23_containers/vector/requirements/exception/basic.cc
8a3b19ae9af7295473b9ad1a40e8e59e libstdc++-v3/testsuite/23_containers/vector/requirements/exception/generation_prohibited.cc
80b580ea434fa79ab938fe407e1acd24 libstdc++-v3/testsuite/23_containers/vector/requirements/exception/propagation_consistent.cc
--- 84396,84406 ----
bc0616bb286b6aa7e2953f8b879f6c8b libstdc++-v3/testsuite/23_containers/vector/range_access.cc
67109ed7fb0e14043026aa43a5fc1deb libstdc++-v3/testsuite/23_containers/vector/requirements/citerators.cc
8d273507069681e4d3cfa0e24b250e2b libstdc++-v3/testsuite/23_containers/vector/requirements/do_the_right_thing.cc
! 5a244592fa439ed047a2738b649a68ad libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/assign_neg.cc
d100b99769ea9edd4c0a3a3fd1aa3ede libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/constructor.cc
! 9f0039841e10ff46509a40c5d5627811 libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/constructor_1_neg.cc
! c252e02def68804ab2ba46831a83ba74 libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/constructor_2_neg.cc
! 440d3fe3b2528e232cb10982b7e47288 libstdc++-v3/testsuite/23_containers/vector/requirements/dr438/insert_neg.cc
779850e561444e42fb46698cb57e0031 libstdc++-v3/testsuite/23_containers/vector/requirements/exception/basic.cc
8a3b19ae9af7295473b9ad1a40e8e59e libstdc++-v3/testsuite/23_containers/vector/requirements/exception/generation_prohibited.cc
80b580ea434fa79ab938fe407e1acd24 libstdc++-v3/testsuite/23_containers/vector/requirements/exception/propagation_consistent.cc
*************** b9880944c2d685dc9b91825d98372be4 libstd
*** 84256,84261 ****
--- 84641,84648 ----
347caf4120c897c264071a3f77bdd49f libstdc++-v3/testsuite/25_algorithms/find_if_not/requirements/explicit_instantiation/pod.cc
a55eb584c9200b32538e2145c05abd9a libstdc++-v3/testsuite/25_algorithms/find_if_not/vectorbool.cc
e1ff08d6f860650baa378a5ee8ce3714 libstdc++-v3/testsuite/25_algorithms/for_each/1.cc
+ 961242f27d7ffe9c72808f0d8aee5df2 libstdc++-v3/testsuite/25_algorithms/for_each/for_each_n.cc
+ fad2a3b6ab1d7f3986f9833c2b32d476 libstdc++-v3/testsuite/25_algorithms/for_each/for_each_n_debug.cc
050557010f8b4950bb8ff0969f9ac2bc libstdc++-v3/testsuite/25_algorithms/for_each/requirements/explicit_instantiation/2.cc
6a413277bfa9dbd1d7bd3c4af9e56a68 libstdc++-v3/testsuite/25_algorithms/for_each/requirements/explicit_instantiation/pod.cc
b7a5b631a156cbe148ced043fba3b4d3 libstdc++-v3/testsuite/25_algorithms/generate/requirements/explicit_instantiation/2.cc
*************** e4e4819f322a09c16bc6ced8ab8f19ab libstd
*** 84696,84701 ****
--- 85083,85089 ----
aea7e4679fe6504205b79370fe66eeb6 libstdc++-v3/testsuite/26_numerics/complex/literals/values.cc
6f047f42df943b41ba171433d0f4c807 libstdc++-v3/testsuite/26_numerics/complex/operators/more_constexpr.cc
906619ecf0877a7ff5302dd409c34714 libstdc++-v3/testsuite/26_numerics/complex/pow.cc
+ ad998807698b684ffaf4910021533db7 libstdc++-v3/testsuite/26_numerics/complex/proj.cc
c3ae14f68b0a7fabff2e897062c53f59 libstdc++-v3/testsuite/26_numerics/complex/requirements/constexpr_functions.cc
bf1343e6dcd353d37390997a0de8e1ed libstdc++-v3/testsuite/26_numerics/complex/requirements/more_constexpr.cc
ef3c1be87613289079633fdfafeb651c libstdc++-v3/testsuite/26_numerics/complex/value_operations/1.cc
*************** cbf6ff43e61c99e5a6dcc56cd4511960 libstd
*** 84708,84713 ****
--- 85096,85102 ----
eaa0a1a04a61f2081a741a598eaab59e libstdc++-v3/testsuite/26_numerics/endian/2.cc
0c06aef107859980f09b0ae1f47685f1 libstdc++-v3/testsuite/26_numerics/endian/3.cc
cf108086d33eec89096345c3bfcf5089 libstdc++-v3/testsuite/26_numerics/endian/4.cc
+ 980a8d6e736c43536fe5c02521613130 libstdc++-v3/testsuite/26_numerics/exclusive_scan/1.cc
2c63db07de996c8934d1a40dfbdbbe79 libstdc++-v3/testsuite/26_numerics/gcd/1.cc
63969dc273bd319c90844bf46d356c4f libstdc++-v3/testsuite/26_numerics/gcd/gcd_neg.cc
f547d9a9ff639c05aa4ccfec557779b3 libstdc++-v3/testsuite/26_numerics/headers/ccomplex/std_c++0x_neg.cc
*************** e3335fc99819ea3d758072e163163ea4 libstd
*** 84769,84774 ****
--- 85158,85164 ----
761c7751ab23dab94aa8f8a6b5ff27a8 libstdc++-v3/testsuite/26_numerics/headers/random/types_std_c++0x.cc
d400eefdb61255164a8286205141d151 libstdc++-v3/testsuite/26_numerics/headers/valarray/synopsis.cc
d7245923821ce399a0f0834592c9b453 libstdc++-v3/testsuite/26_numerics/headers/valarray/types_std.cc
+ 10ceeb9fd3110a8bb1044642f0dc703f libstdc++-v3/testsuite/26_numerics/inclusive_scan/1.cc
3aeb27c6bef4172e16e52e5744699429 libstdc++-v3/testsuite/26_numerics/inner_product/1.cc
2f0bcf2b62cd4af708f23efc54495edd libstdc++-v3/testsuite/26_numerics/inner_product/lwg2055.cc
cdb662025e2eb4a21f9f835ef47ff536 libstdc++-v3/testsuite/26_numerics/inner_product/requirements/explicit_instantiation/2.cc
*************** dff1dc8addf390dc989367bbe873578b libstd
*** 84988,84994 ****
99a096156afad85deb0de7b7c9c98433 libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/operators/values.cc
7ec7ffd9a621ef7b033b72d24ec70481 libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/requirements/explicit_instantiation/1.cc
e29347d9b926e85f61dcf10a0fcf5dc3 libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc
! aaf9d3b019467c788c2c04e9210c8706 libstdc++-v3/testsuite/26_numerics/random/pr60037-neg.cc
514c931524173d52147a744c1a57ee89 libstdc++-v3/testsuite/26_numerics/random/random_device/85494.cc
34abe834479107130d20403dd0a0a30f libstdc++-v3/testsuite/26_numerics/random/random_device/cons/default.cc
0204570051e43eefd41e8489804d941d libstdc++-v3/testsuite/26_numerics/random/random_device/cons/token.cc
--- 85378,85384 ----
99a096156afad85deb0de7b7c9c98433 libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/operators/values.cc
7ec7ffd9a621ef7b033b72d24ec70481 libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/requirements/explicit_instantiation/1.cc
e29347d9b926e85f61dcf10a0fcf5dc3 libstdc++-v3/testsuite/26_numerics/random/poisson_distribution/requirements/typedefs.cc
! e65779d70ce8b3532f49d991bcd2f8a0 libstdc++-v3/testsuite/26_numerics/random/pr60037-neg.cc
514c931524173d52147a744c1a57ee89 libstdc++-v3/testsuite/26_numerics/random/random_device/85494.cc
34abe834479107130d20403dd0a0a30f libstdc++-v3/testsuite/26_numerics/random/random_device/cons/default.cc
0204570051e43eefd41e8489804d941d libstdc++-v3/testsuite/26_numerics/random/random_device/cons/token.cc
*************** d60e1ac682cb461b077b2c65569ce28b libstd
*** 85062,85071 ****
--- 85452,85466 ----
99f6f25f905871bda000c50123132568 libstdc++-v3/testsuite/26_numerics/random/weibull_distribution/operators/serialize.cc
6398e43f3e04a4bd54d00591cf43ec2e libstdc++-v3/testsuite/26_numerics/random/weibull_distribution/requirements/explicit_instantiation/1.cc
d4ba4b8775d80f67c1d9081513fe0a63 libstdc++-v3/testsuite/26_numerics/random/weibull_distribution/requirements/typedefs.cc
+ e3030088e45081f457ea78cbf5edbcd4 libstdc++-v3/testsuite/26_numerics/reduce/1.cc
+ 805405231bca44805fe9e2e473130647 libstdc++-v3/testsuite/26_numerics/reduce/2.cc
536c83acd464c44227e84ed3845f9a8d libstdc++-v3/testsuite/26_numerics/slice/1.cc
2ca22959caa6b57422957322a0fd270f libstdc++-v3/testsuite/26_numerics/slice_array/array_assignment.cc
782936d7433625674da221747313e2ea libstdc++-v3/testsuite/26_numerics/slice_array/requirements/explicit_instantiation.cc
2f9c3f6bcac7165b98cebe6b8fc757c2 libstdc++-v3/testsuite/26_numerics/slice_array/requirements/typedefs.cc
+ b52bc3f1320025b79e45216a824e3876 libstdc++-v3/testsuite/26_numerics/transform_exclusive_scan/1.cc
+ 42034ef601770d6067b85fe4ddd9d663 libstdc++-v3/testsuite/26_numerics/transform_inclusive_scan/1.cc
+ c18937e375f08daa771eb9839b9aee62 libstdc++-v3/testsuite/26_numerics/transform_reduce/1.cc
bff2289be906d937be2005cb7fd98afe libstdc++-v3/testsuite/26_numerics/valarray/27867.cc
65d53f2d5f09d90390048764a3381a3e libstdc++-v3/testsuite/26_numerics/valarray/28277.cc
ce6811bb22379494a10f1f7d4d4b000e libstdc++-v3/testsuite/26_numerics/valarray/30416.cc
*************** f22b4ab71f29d68dbcda730171c952cf libstd
*** 85856,85871 ****
c7877ee0b9748bedb3f01b1cba32ac04 libstdc++-v3/testsuite/27_io/filesystem/file_status/1.cc
cbef87296e4389dadc6a213c0d455129 libstdc++-v3/testsuite/27_io/filesystem/filesystem_error/cons.cc
eff26d4b635cd75899b17a4f154bc55d libstdc++-v3/testsuite/27_io/filesystem/filesystem_error/copy.cc
! 235df56a9d8fcf6aadf7321f1cfe2586 libstdc++-v3/testsuite/27_io/filesystem/iterators/91067.cc
4d8d56108a486100c75e7a332fcf4565 libstdc++-v3/testsuite/27_io/filesystem/iterators/caching.cc
af9455c6379de221d047366d4442f1e9 libstdc++-v3/testsuite/27_io/filesystem/iterators/directory_iterator.cc
64d16ac86811b57a5e79fdd13590e6b4 libstdc++-v3/testsuite/27_io/filesystem/iterators/pop.cc
3b6075916ca6e6896527a1bad34f7ca4 libstdc++-v3/testsuite/27_io/filesystem/iterators/recursion_pending.cc
00cb0aa01b3824351005c3a92127faf2 libstdc++-v3/testsuite/27_io/filesystem/iterators/recursive_directory_iterator.cc
3181124f76230a9e2c775540aa6fc459 libstdc++-v3/testsuite/27_io/filesystem/operations/absolute.cc
! 52e9a6f0108eac656fd1f4752ff0263f libstdc++-v3/testsuite/27_io/filesystem/operations/all.cc
dad76e629e8094f265a9225228c3ff17 libstdc++-v3/testsuite/27_io/filesystem/operations/canonical.cc
! 5213bfc3da08d5f75b9c1ab30063b0ee libstdc++-v3/testsuite/27_io/filesystem/operations/copy.cc
97660b02e6ae488f2cd1282d374807b9 libstdc++-v3/testsuite/27_io/filesystem/operations/copy_file.cc
57312fa642928f87de2f61c9861c449c libstdc++-v3/testsuite/27_io/filesystem/operations/create_directories.cc
3a1c28e30b8f41de4a519a6b9b33d545 libstdc++-v3/testsuite/27_io/filesystem/operations/create_directory.cc
--- 86251,86266 ----
c7877ee0b9748bedb3f01b1cba32ac04 libstdc++-v3/testsuite/27_io/filesystem/file_status/1.cc
cbef87296e4389dadc6a213c0d455129 libstdc++-v3/testsuite/27_io/filesystem/filesystem_error/cons.cc
eff26d4b635cd75899b17a4f154bc55d libstdc++-v3/testsuite/27_io/filesystem/filesystem_error/copy.cc
! a64e5a6a67af266d16ce88f0548abdd2 libstdc++-v3/testsuite/27_io/filesystem/iterators/91067.cc
4d8d56108a486100c75e7a332fcf4565 libstdc++-v3/testsuite/27_io/filesystem/iterators/caching.cc
af9455c6379de221d047366d4442f1e9 libstdc++-v3/testsuite/27_io/filesystem/iterators/directory_iterator.cc
64d16ac86811b57a5e79fdd13590e6b4 libstdc++-v3/testsuite/27_io/filesystem/iterators/pop.cc
3b6075916ca6e6896527a1bad34f7ca4 libstdc++-v3/testsuite/27_io/filesystem/iterators/recursion_pending.cc
00cb0aa01b3824351005c3a92127faf2 libstdc++-v3/testsuite/27_io/filesystem/iterators/recursive_directory_iterator.cc
3181124f76230a9e2c775540aa6fc459 libstdc++-v3/testsuite/27_io/filesystem/operations/absolute.cc
! fd0c60e7f32afa28aaa100803f4de0d2 libstdc++-v3/testsuite/27_io/filesystem/operations/all.cc
dad76e629e8094f265a9225228c3ff17 libstdc++-v3/testsuite/27_io/filesystem/operations/canonical.cc
! cb00f573c7a47ee58a71cdd93f3cd388 libstdc++-v3/testsuite/27_io/filesystem/operations/copy.cc
97660b02e6ae488f2cd1282d374807b9 libstdc++-v3/testsuite/27_io/filesystem/operations/copy_file.cc
57312fa642928f87de2f61c9861c449c libstdc++-v3/testsuite/27_io/filesystem/operations/create_directories.cc
3a1c28e30b8f41de4a519a6b9b33d545 libstdc++-v3/testsuite/27_io/filesystem/operations/create_directory.cc
*************** dad76e629e8094f265a9225228c3ff17 libstd
*** 85873,85879 ****
195a3b80f65841299cf2c1bccee868b4 libstdc++-v3/testsuite/27_io/filesystem/operations/current_path.cc
9cfc433f846c4185ec98cfd208076135 libstdc++-v3/testsuite/27_io/filesystem/operations/equivalent.cc
34d3c456587d4b34c295ab342590caf8 libstdc++-v3/testsuite/27_io/filesystem/operations/exists.cc
! 32f8da1b885b340f55ec87213a3490ac libstdc++-v3/testsuite/27_io/filesystem/operations/file_size.cc
816d12e6fc24ffa87418f2d8bda80d26 libstdc++-v3/testsuite/27_io/filesystem/operations/is_empty.cc
a509ba4328519d124aa7f1441964aa80 libstdc++-v3/testsuite/27_io/filesystem/operations/last_write_time.cc
dfc1c8b93b41bf9cacb15c205226ea51 libstdc++-v3/testsuite/27_io/filesystem/operations/permissions.cc
--- 86268,86274 ----
195a3b80f65841299cf2c1bccee868b4 libstdc++-v3/testsuite/27_io/filesystem/operations/current_path.cc
9cfc433f846c4185ec98cfd208076135 libstdc++-v3/testsuite/27_io/filesystem/operations/equivalent.cc
34d3c456587d4b34c295ab342590caf8 libstdc++-v3/testsuite/27_io/filesystem/operations/exists.cc
! ece5b61c05bad63616f3c1a208dd21ea libstdc++-v3/testsuite/27_io/filesystem/operations/file_size.cc
816d12e6fc24ffa87418f2d8bda80d26 libstdc++-v3/testsuite/27_io/filesystem/operations/is_empty.cc
a509ba4328519d124aa7f1441964aa80 libstdc++-v3/testsuite/27_io/filesystem/operations/last_write_time.cc
dfc1c8b93b41bf9cacb15c205226ea51 libstdc++-v3/testsuite/27_io/filesystem/operations/permissions.cc
*************** e43c40074f8ee450ee1a39e8e510a27f libstd
*** 85881,85887 ****
17c0a3bd8b8a48449ce26c73bb3b8e20 libstdc++-v3/testsuite/27_io/filesystem/operations/read_symlink.cc
1502ae9ef398b90cb2353d212fae9aaf libstdc++-v3/testsuite/27_io/filesystem/operations/relative.cc
9fcae74991887b3ac9f17466452df98f libstdc++-v3/testsuite/27_io/filesystem/operations/remove.cc
! 55022dc925095d58b14d22c67a5ab35c libstdc++-v3/testsuite/27_io/filesystem/operations/remove_all.cc
781edf8b8f5d71f6c73c6d8b99ac9631 libstdc++-v3/testsuite/27_io/filesystem/operations/resize_file.cc
ceeedb00a04716967fb9702dad6de91c libstdc++-v3/testsuite/27_io/filesystem/operations/space.cc
2d84a5fe364e0d14deceacb4fad058f1 libstdc++-v3/testsuite/27_io/filesystem/operations/status.cc
--- 86276,86282 ----
17c0a3bd8b8a48449ce26c73bb3b8e20 libstdc++-v3/testsuite/27_io/filesystem/operations/read_symlink.cc
1502ae9ef398b90cb2353d212fae9aaf libstdc++-v3/testsuite/27_io/filesystem/operations/relative.cc
9fcae74991887b3ac9f17466452df98f libstdc++-v3/testsuite/27_io/filesystem/operations/remove.cc
! f38e80e62f548689138b1602c7802eae libstdc++-v3/testsuite/27_io/filesystem/operations/remove_all.cc
781edf8b8f5d71f6c73c6d8b99ac9631 libstdc++-v3/testsuite/27_io/filesystem/operations/resize_file.cc
ceeedb00a04716967fb9702dad6de91c libstdc++-v3/testsuite/27_io/filesystem/operations/space.cc
2d84a5fe364e0d14deceacb4fad058f1 libstdc++-v3/testsuite/27_io/filesystem/operations/status.cc
*************** c95af3a83f36f41cd3abd01b88396667 libstd
*** 85896,85903 ****
0196b4dec478bf9926b4a54013fe6ede libstdc++-v3/testsuite/27_io/filesystem/path/compare/lwg2936.cc
3753e76644147c7e72b5458e04587185 libstdc++-v3/testsuite/27_io/filesystem/path/compare/path.cc
bc9f5c7f9be56e3e6b62143566bbd82c libstdc++-v3/testsuite/27_io/filesystem/path/compare/strings.cc
! 5f1d0ba745cb9cf11b5a2f40021b5f79 libstdc++-v3/testsuite/27_io/filesystem/path/concat/path.cc
! c5054b020983fbc74c2935073aa5a722 libstdc++-v3/testsuite/27_io/filesystem/path/concat/strings.cc
cf4da13811559cff87d3248ab22e8c4f libstdc++-v3/testsuite/27_io/filesystem/path/construct/80762.cc
63b49d2b56ac69ca112e63acac76bc2f libstdc++-v3/testsuite/27_io/filesystem/path/construct/90281.cc
333bfb426a30c5534864bc79da8d12b3 libstdc++-v3/testsuite/27_io/filesystem/path/construct/90634.cc
--- 86291,86299 ----
0196b4dec478bf9926b4a54013fe6ede libstdc++-v3/testsuite/27_io/filesystem/path/compare/lwg2936.cc
3753e76644147c7e72b5458e04587185 libstdc++-v3/testsuite/27_io/filesystem/path/compare/path.cc
bc9f5c7f9be56e3e6b62143566bbd82c libstdc++-v3/testsuite/27_io/filesystem/path/compare/strings.cc
! 5ef1e89bad52959d4c9e37fd95e3dc82 libstdc++-v3/testsuite/27_io/filesystem/path/concat/92853.cc
! 35cfe6b39e538402ef5c71e1b39d97ef libstdc++-v3/testsuite/27_io/filesystem/path/concat/path.cc
! 6e899878c7bfb27f9440331d3e8073af libstdc++-v3/testsuite/27_io/filesystem/path/concat/strings.cc
cf4da13811559cff87d3248ab22e8c4f libstdc++-v3/testsuite/27_io/filesystem/path/construct/80762.cc
63b49d2b56ac69ca112e63acac76bc2f libstdc++-v3/testsuite/27_io/filesystem/path/construct/90281.cc
333bfb426a30c5534864bc79da8d12b3 libstdc++-v3/testsuite/27_io/filesystem/path/construct/90634.cc
*************** c6a39b4349bcda208aba4964fd6607ce libstd
*** 86570,86575 ****
--- 86966,86972 ----
caa873c44c0d4568e348f2e4bc121e91 libstdc++-v3/testsuite/30_threads/shared_mutex/try_lock/1.cc
2ae509df39a10a102bdfc8f1baa15884 libstdc++-v3/testsuite/30_threads/shared_mutex/try_lock/2.cc
2c4bab892054122039a5a0d79e26e77b libstdc++-v3/testsuite/30_threads/shared_mutex/unlock/1.cc
+ 9f9deaeeafc35ae4a0ded4bc99d859ca libstdc++-v3/testsuite/30_threads/shared_timed_mutex/94069.cc
36d6a1facee3a1555d426a21cebf0a6e libstdc++-v3/testsuite/30_threads/shared_timed_mutex/cons/1.cc
82247cb2f72ef91d3e36f3ccea8b2235 libstdc++-v3/testsuite/30_threads/shared_timed_mutex/cons/assign_neg.cc
1c6d7815815100662e48a4019b4175a3 libstdc++-v3/testsuite/30_threads/shared_timed_mutex/cons/copy_neg.cc
*************** a54a77da1721096ac0268733de1ed8f8 libstd
*** 86854,86860 ****
03ec1e990d0bba3ac2b29c9b807e6b97 libstdc++-v3/testsuite/experimental/filesystem/iterators/recursive_directory_iterator.cc
19c5b0c2a3474325d0362fd341bf452e libstdc++-v3/testsuite/experimental/filesystem/operations/absolute.cc
c34645f173cd9ba72067a61855dce0a7 libstdc++-v3/testsuite/experimental/filesystem/operations/canonical.cc
! f9e9655faaffef0b683897e2b6f791d2 libstdc++-v3/testsuite/experimental/filesystem/operations/copy.cc
3ef03acbb3e8a82fffe5836d29ca3ca3 libstdc++-v3/testsuite/experimental/filesystem/operations/copy_file.cc
cc2c5051f0747bc4afb8a77fbb796c10 libstdc++-v3/testsuite/experimental/filesystem/operations/create_directories.cc
b1676f1f0ccefc9239c6aac1d14d5dd7 libstdc++-v3/testsuite/experimental/filesystem/operations/create_directory.cc
--- 87251,87257 ----
03ec1e990d0bba3ac2b29c9b807e6b97 libstdc++-v3/testsuite/experimental/filesystem/iterators/recursive_directory_iterator.cc
19c5b0c2a3474325d0362fd341bf452e libstdc++-v3/testsuite/experimental/filesystem/operations/absolute.cc
c34645f173cd9ba72067a61855dce0a7 libstdc++-v3/testsuite/experimental/filesystem/operations/canonical.cc
! f3ddff81c43ac49c4cefc5b21cb588f0 libstdc++-v3/testsuite/experimental/filesystem/operations/copy.cc
3ef03acbb3e8a82fffe5836d29ca3ca3 libstdc++-v3/testsuite/experimental/filesystem/operations/copy_file.cc
cc2c5051f0747bc4afb8a77fbb796c10 libstdc++-v3/testsuite/experimental/filesystem/operations/create_directories.cc
b1676f1f0ccefc9239c6aac1d14d5dd7 libstdc++-v3/testsuite/experimental/filesystem/operations/create_directory.cc
*************** b1676f1f0ccefc9239c6aac1d14d5dd7 libstd
*** 86862,86874 ****
03c8a94a2ce11846e7fe971dc29b2ac7 libstdc++-v3/testsuite/experimental/filesystem/operations/current_path.cc
f0bb18699a6eba56ebd284d28c06c79b libstdc++-v3/testsuite/experimental/filesystem/operations/equivalent.cc
64a1af9938c238068f034955a7c5c05d libstdc++-v3/testsuite/experimental/filesystem/operations/exists.cc
! eb780b091f0f104c660daac980814e58 libstdc++-v3/testsuite/experimental/filesystem/operations/file_size.cc
89af849b00f6a3ea41c972a060f07bed libstdc++-v3/testsuite/experimental/filesystem/operations/is_empty.cc
327904ea213d06c57f5cbdf4331c2d17 libstdc++-v3/testsuite/experimental/filesystem/operations/last_write_time.cc
59cfc520beb22e5ef24b442f367dd245 libstdc++-v3/testsuite/experimental/filesystem/operations/permissions.cc
71ea860899af497e82283cacca3c5543 libstdc++-v3/testsuite/experimental/filesystem/operations/read_symlink.cc
510a44598120bd5904ec2aca5bb464bb libstdc++-v3/testsuite/experimental/filesystem/operations/remove.cc
! 46855aca552f6f0b1a5c872ee3618151 libstdc++-v3/testsuite/experimental/filesystem/operations/remove_all.cc
4e076a3d3faa0551039764a597049e57 libstdc++-v3/testsuite/experimental/filesystem/operations/space.cc
6e78422ad5a55959f711c5c206dca334 libstdc++-v3/testsuite/experimental/filesystem/operations/status.cc
905231703cd72bfff70dede2a593f5e2 libstdc++-v3/testsuite/experimental/filesystem/operations/temp_directory_path.cc
--- 87259,87271 ----
03c8a94a2ce11846e7fe971dc29b2ac7 libstdc++-v3/testsuite/experimental/filesystem/operations/current_path.cc
f0bb18699a6eba56ebd284d28c06c79b libstdc++-v3/testsuite/experimental/filesystem/operations/equivalent.cc
64a1af9938c238068f034955a7c5c05d libstdc++-v3/testsuite/experimental/filesystem/operations/exists.cc
! cbf7880b6fd08bb4f4b9315efcbc2c0e libstdc++-v3/testsuite/experimental/filesystem/operations/file_size.cc
89af849b00f6a3ea41c972a060f07bed libstdc++-v3/testsuite/experimental/filesystem/operations/is_empty.cc
327904ea213d06c57f5cbdf4331c2d17 libstdc++-v3/testsuite/experimental/filesystem/operations/last_write_time.cc
59cfc520beb22e5ef24b442f367dd245 libstdc++-v3/testsuite/experimental/filesystem/operations/permissions.cc
71ea860899af497e82283cacca3c5543 libstdc++-v3/testsuite/experimental/filesystem/operations/read_symlink.cc
510a44598120bd5904ec2aca5bb464bb libstdc++-v3/testsuite/experimental/filesystem/operations/remove.cc
! 8be3812f0b8306af12ec173f9ebde8ab libstdc++-v3/testsuite/experimental/filesystem/operations/remove_all.cc
4e076a3d3faa0551039764a597049e57 libstdc++-v3/testsuite/experimental/filesystem/operations/space.cc
6e78422ad5a55959f711c5c206dca334 libstdc++-v3/testsuite/experimental/filesystem/operations/status.cc
905231703cd72bfff70dede2a593f5e2 libstdc++-v3/testsuite/experimental/filesystem/operations/temp_directory_path.cc
*************** b152cffb3fae54fccd04f7aef3c92a43 libstd
*** 86967,86973 ****
648a8ea821d33e1675f302758e56dffa libstdc++-v3/testsuite/experimental/memory_resource/new_delete_resource.cc
ddec0c7d2d5aa1c859bfe857d6c377d9 libstdc++-v3/testsuite/experimental/memory_resource/null_memory_resource.cc
9ec32bf93e5e67bfef61a292df35feec libstdc++-v3/testsuite/experimental/memory_resource/resource_adaptor.cc
! 42c952b32fb145b5e4dc6a4efee7891f libstdc++-v3/testsuite/experimental/names.cc
32adc522f4269bae829ef5c9ddc957ae libstdc++-v3/testsuite/experimental/net/buffer/arithmetic.cc
3e6ce04cb2ddc4d42fbfc3443f332af6 libstdc++-v3/testsuite/experimental/net/buffer/const.cc
a9c910688383d40b47c34e07454d3af0 libstdc++-v3/testsuite/experimental/net/buffer/creation.cc
--- 87364,87370 ----
648a8ea821d33e1675f302758e56dffa libstdc++-v3/testsuite/experimental/memory_resource/new_delete_resource.cc
ddec0c7d2d5aa1c859bfe857d6c377d9 libstdc++-v3/testsuite/experimental/memory_resource/null_memory_resource.cc
9ec32bf93e5e67bfef61a292df35feec libstdc++-v3/testsuite/experimental/memory_resource/resource_adaptor.cc
! 8fd5a0e922d44f66dcf28bcce9705e21 libstdc++-v3/testsuite/experimental/names.cc
32adc522f4269bae829ef5c9ddc957ae libstdc++-v3/testsuite/experimental/net/buffer/arithmetic.cc
3e6ce04cb2ddc4d42fbfc3443f332af6 libstdc++-v3/testsuite/experimental/net/buffer/const.cc
a9c910688383d40b47c34e07454d3af0 libstdc++-v3/testsuite/experimental/net/buffer/creation.cc
*************** ed46bdd93d198fcd4752fb7970a35ab9 libstd
*** 87170,87176 ****
17535ffeba51abad153e7b0939987a5b libstdc++-v3/testsuite/ext/bitmap_allocator/check_new.cc
71efe24f8f1189145f017e2acaea65a9 libstdc++-v3/testsuite/ext/bitmap_allocator/overaligned.cc
7957a4ad39807ef679314afe83f49eed libstdc++-v3/testsuite/ext/bitmap_allocator/variadic_construct.cc
! 87c8da63ad1e51a0f767666354e4d9f9 libstdc++-v3/testsuite/ext/char8_t/atomic-1.cc
d02d9e0110417648b8c0fef7f72d7b30 libstdc++-v3/testsuite/ext/codecvt/1.cc
6d14e5b1733b9f805af97e7b7988d0e4 libstdc++-v3/testsuite/ext/codecvt/char-1.cc
c65033f08f201683eae9c1b34e1cba1e libstdc++-v3/testsuite/ext/codecvt/char-2.cc
--- 87567,87573 ----
17535ffeba51abad153e7b0939987a5b libstdc++-v3/testsuite/ext/bitmap_allocator/check_new.cc
71efe24f8f1189145f017e2acaea65a9 libstdc++-v3/testsuite/ext/bitmap_allocator/overaligned.cc
7957a4ad39807ef679314afe83f49eed libstdc++-v3/testsuite/ext/bitmap_allocator/variadic_construct.cc
! 846dc8224edb857bb6953efa8b4cdb2d libstdc++-v3/testsuite/ext/char8_t/atomic-1.cc
d02d9e0110417648b8c0fef7f72d7b30 libstdc++-v3/testsuite/ext/codecvt/1.cc
6d14e5b1733b9f805af97e7b7988d0e4 libstdc++-v3/testsuite/ext/codecvt/char-1.cc
c65033f08f201683eae9c1b34e1cba1e libstdc++-v3/testsuite/ext/codecvt/char-2.cc
*************** c6eee4d95fb8fcc1b2db5c9d694159ab libstd
*** 87529,87535 ****
baab890c84819e856948838512a7bbf1 libstdc++-v3/testsuite/libstdc++-prettyprinters/48362.cc
9681187a7801bc76b42070af623f4ad2 libstdc++-v3/testsuite/libstdc++-prettyprinters/59161.cc
a2901a4320a2e11fc634c70ceeb100f0 libstdc++-v3/testsuite/libstdc++-prettyprinters/80276.cc
! 03cfbfc34b8447d94d3b6d3f0b759603 libstdc++-v3/testsuite/libstdc++-prettyprinters/compat.cc
4bbeb98daab4b184cf810f8e927f3e7d libstdc++-v3/testsuite/libstdc++-prettyprinters/cxx11.cc
2ffc6e33f500652eee6cb30df4f95c96 libstdc++-v3/testsuite/libstdc++-prettyprinters/cxx17.cc
99a17df5377354c15f46c73049564905 libstdc++-v3/testsuite/libstdc++-prettyprinters/debug.cc
--- 87926,87932 ----
baab890c84819e856948838512a7bbf1 libstdc++-v3/testsuite/libstdc++-prettyprinters/48362.cc
9681187a7801bc76b42070af623f4ad2 libstdc++-v3/testsuite/libstdc++-prettyprinters/59161.cc
a2901a4320a2e11fc634c70ceeb100f0 libstdc++-v3/testsuite/libstdc++-prettyprinters/80276.cc
! 272108e124ca1f021ceaf7ad77a79281 libstdc++-v3/testsuite/libstdc++-prettyprinters/compat.cc
4bbeb98daab4b184cf810f8e927f3e7d libstdc++-v3/testsuite/libstdc++-prettyprinters/cxx11.cc
2ffc6e33f500652eee6cb30df4f95c96 libstdc++-v3/testsuite/libstdc++-prettyprinters/cxx17.cc
99a17df5377354c15f46c73049564905 libstdc++-v3/testsuite/libstdc++-prettyprinters/debug.cc
*************** ab19ad81e8ec8dacc60f724660172545 libstd
*** 88327,88334 ****
--- 88724,88736 ----
b5491fa6799592e74401e73a8101aef7 libstdc++-v3/testsuite/tr2/direct_bases/requirements/explicit_instantiation.cc
315350f91e31a8e1afc303b3f5b6fe0b libstdc++-v3/testsuite/tr2/direct_bases/requirements/typedefs.cc
70a5458c1b15cdd3b16a8438b94a6ed8 libstdc++-v3/testsuite/tr2/direct_bases/value.cc
+ f627b801f76df3b9b3617855769dd497 libstdc++-v3/testsuite/tr2/dynamic_bitset/cmp.cc
+ 55b17815da3734a92aabf30752f4c282 libstdc++-v3/testsuite/tr2/dynamic_bitset/cons.cc
+ 6671d3e9585abbb1e56141510a0fc388 libstdc++-v3/testsuite/tr2/dynamic_bitset/copy.cc
+ 16179fe5ad0342cfee85f57bae428e2e libstdc++-v3/testsuite/tr2/dynamic_bitset/move.cc
8fb8f2d196c9a2e517c977f6444cc968 libstdc++-v3/testsuite/tr2/dynamic_bitset/pr58729.cc
fd0a6f6de9fac47eaa6ac70c73f20fa9 libstdc++-v3/testsuite/tr2/dynamic_bitset/pr87784.cc
+ f6df263b2b53ef17d5d912257af81895 libstdc++-v3/testsuite/tr2/dynamic_bitset/pr92059.cc
e44ec1f29f89d413079589c9c469651e libstdc++-v3/testsuite/tr2/headers/all.cc
3ffeba405b6f18376ea1a9e9e3f4ddd8 libstdc++-v3/testsuite/tr2/headers/using_namespace_std_tr2.cc
435f5acb2ddabc2bf909b19349fe26bc libstdc++-v3/testsuite/util/common_type/assoc/common_type.hpp
*************** b5759a1f69aa73c131c920c1d35788eb libstd
*** 88422,88432 ****
ded08332055566a6a059af888d235e33 libstdc++-v3/testsuite/util/statistic/sample_mean.hpp
1b3a0ef7a20ba6a838c235e904e1237e libstdc++-v3/testsuite/util/statistic/sample_mean_confidence_checker.hpp
288fb9042be3b33077331e78aa153123 libstdc++-v3/testsuite/util/statistic/sample_variance.hpp
! 4cae4bcaccc3feb2f4090d3ee1dbeffb libstdc++-v3/testsuite/util/testsuite_abi.cc
86b7d15140154957ba48eb0d9cc1b873 libstdc++-v3/testsuite/util/testsuite_abi.h
b23a956d9a00583971e3e3bf5d51e367 libstdc++-v3/testsuite/util/testsuite_abi_check.cc
f5a78f8128c93d96257ff88d5738114b libstdc++-v3/testsuite/util/testsuite_allocator.cc
! 3b2d4df257f4f7f697208e1b5ff9d788 libstdc++-v3/testsuite/util/testsuite_allocator.h
01d8d7110680d49c852cc0487a979c1a libstdc++-v3/testsuite/util/testsuite_api.h
e2ed2610a0c7e50e154cb3df5e3fa3ce libstdc++-v3/testsuite/util/testsuite_character.cc
4c916d132216fa27ea8931faf429fb63 libstdc++-v3/testsuite/util/testsuite_character.h
--- 88824,88834 ----
ded08332055566a6a059af888d235e33 libstdc++-v3/testsuite/util/statistic/sample_mean.hpp
1b3a0ef7a20ba6a838c235e904e1237e libstdc++-v3/testsuite/util/statistic/sample_mean_confidence_checker.hpp
288fb9042be3b33077331e78aa153123 libstdc++-v3/testsuite/util/statistic/sample_variance.hpp
! 2be70e0406e322db1a3eda72d8adc5b7 libstdc++-v3/testsuite/util/testsuite_abi.cc
86b7d15140154957ba48eb0d9cc1b873 libstdc++-v3/testsuite/util/testsuite_abi.h
b23a956d9a00583971e3e3bf5d51e367 libstdc++-v3/testsuite/util/testsuite_abi_check.cc
f5a78f8128c93d96257ff88d5738114b libstdc++-v3/testsuite/util/testsuite_allocator.cc
! c2ccacbde246fa74b22628d26584fa04 libstdc++-v3/testsuite/util/testsuite_allocator.h
01d8d7110680d49c852cc0487a979c1a libstdc++-v3/testsuite/util/testsuite_api.h
e2ed2610a0c7e50e154cb3df5e3fa3ce libstdc++-v3/testsuite/util/testsuite_character.cc
4c916d132216fa27ea8931faf429fb63 libstdc++-v3/testsuite/util/testsuite_character.h
*************** bbc922e8eb583558c65fd40cbae1250f libstd
*** 88441,88447 ****
721b82d1c0c8e1e97d967764ed54d336 libstdc++-v3/testsuite/util/testsuite_hooks.cc
0163ca9796e23a0e4c412229ab121aaa libstdc++-v3/testsuite/util/testsuite_hooks.h
a738a2fb3dad147443f05f69f26732de libstdc++-v3/testsuite/util/testsuite_io.h
! ffe7425199ccc4dc7535c67ca63db80f libstdc++-v3/testsuite/util/testsuite_iterators.h
c0f9a9bdae34b75dcbf3e373042f35ff libstdc++-v3/testsuite/util/testsuite_new_operators.h
938deaf341cccdc8df24516f6de96269 libstdc++-v3/testsuite/util/testsuite_performance.h
793e9bc55786b84f93db18953ee9a7f5 libstdc++-v3/testsuite/util/testsuite_random.h
--- 88843,88849 ----
721b82d1c0c8e1e97d967764ed54d336 libstdc++-v3/testsuite/util/testsuite_hooks.cc
0163ca9796e23a0e4c412229ab121aaa libstdc++-v3/testsuite/util/testsuite_hooks.h
a738a2fb3dad147443f05f69f26732de libstdc++-v3/testsuite/util/testsuite_io.h
! 9e2939e6cc8d50c0f28fd0dbe29fecb7 libstdc++-v3/testsuite/util/testsuite_iterators.h
c0f9a9bdae34b75dcbf3e373042f35ff libstdc++-v3/testsuite/util/testsuite_new_operators.h
938deaf341cccdc8df24516f6de96269 libstdc++-v3/testsuite/util/testsuite_performance.h
793e9bc55786b84f93db18953ee9a7f5 libstdc++-v3/testsuite/util/testsuite_random.h
*************** e6293fd7591a55b3e443423d4ab263aa libstd
*** 88453,88459 ****
aee4f8b71130a80ebdfc21168f4a9d09 libstdc++-v3/testsuite/util/thread/all.h
b950d655469c477755252b1e18009596 libtool-ldflags
47ecfe321fad45e79df28e3545dec650 libtool.m4
! 4daa2b5aa39b4075f3f0b9179e6afde5 libvtv/ChangeLog
3925e26bd0380754b9ba82cad98854b9 libvtv/Makefile.am
f0dcdf677be6f1ef329ff74d740ea4eb libvtv/Makefile.in
3b765c4f4a0a0f606db1472bce2b8d29 libvtv/acinclude.m4
--- 88855,88861 ----
aee4f8b71130a80ebdfc21168f4a9d09 libstdc++-v3/testsuite/util/thread/all.h
b950d655469c477755252b1e18009596 libtool-ldflags
47ecfe321fad45e79df28e3545dec650 libtool.m4
! c16341e8103af8254c6bcbad50c86b38 libvtv/ChangeLog
3925e26bd0380754b9ba82cad98854b9 libvtv/Makefile.am
f0dcdf677be6f1ef329ff74d740ea4eb libvtv/Makefile.in
3b765c4f4a0a0f606db1472bce2b8d29 libvtv/acinclude.m4
*************** a317e957f6643aa8ccea2dc901b5cdb4 libvtv
*** 88536,88542 ****
e9f5d4b7990250a14c410038615b7897 libvtv/vtv_utils.h
247597a3fcc5b5aa8bd923351c59d853 ltgcc.m4
87f3355387aff1fb857503a8aa3a0900 ltmain.sh
! f74a7b8ef31c9384e4472bd2a108ea70 lto-plugin/ChangeLog
1d51b0f01f4db0f88d302ab0d691514e lto-plugin/Makefile.am
80423554a39cbd842c3d9464b3723033 lto-plugin/Makefile.in
e60b1443b7156a65450aa31b80bb99fe lto-plugin/aclocal.m4
--- 88938,88944 ----
e9f5d4b7990250a14c410038615b7897 libvtv/vtv_utils.h
247597a3fcc5b5aa8bd923351c59d853 ltgcc.m4
87f3355387aff1fb857503a8aa3a0900 ltmain.sh
! f59907839a3101c6b9907fc724cdda63 lto-plugin/ChangeLog
1d51b0f01f4db0f88d302ab0d691514e lto-plugin/Makefile.am
80423554a39cbd842c3d9464b3723033 lto-plugin/Makefile.in
e60b1443b7156a65450aa31b80bb99fe lto-plugin/aclocal.m4
*************** dee72a6a60e99528b0d17bf3ff9a1e15 ltopti
*** 88548,88559 ****
bc2f6032c98896249eadb56177c7d357 ltsugar.m4
c30cd33c496505f13d9fbdb6970c7c33 ltversion.m4
293853a13b7e218e3a4342cf85fbbf25 lt~obsolete.m4
! 4a490ae05b4044db453dd44aec2b6411 maintainer-scripts/ChangeLog
33c7bc2d2c55956dfac85a05d8a80eff maintainer-scripts/README
e70ffb6559f8817db41ee1e69bc60287 maintainer-scripts/branch_changer.py
1c3f2c7d87d076b4209a2a03844292e5 maintainer-scripts/bugzilla-close-candidate.py
c5ab0e8e81e81d0d367d5ee595214eb5 maintainer-scripts/crontab
! dfd420d29ffb93df9ba459391b6fb2f6 maintainer-scripts/gcc_release
4b085aa82b5f2fe789828063eed76560 maintainer-scripts/generate_libstdcxx_web_docs
33d97164a8610c7abf67eff7d28f47ff maintainer-scripts/maintainer-addresses
9277094fc32569de284ee22055219dbd maintainer-scripts/update_version_svn
--- 88950,88961 ----
bc2f6032c98896249eadb56177c7d357 ltsugar.m4
c30cd33c496505f13d9fbdb6970c7c33 ltversion.m4
293853a13b7e218e3a4342cf85fbbf25 lt~obsolete.m4
! 008c087d32c7a31acb531dc556f64ec6 maintainer-scripts/ChangeLog
33c7bc2d2c55956dfac85a05d8a80eff maintainer-scripts/README
e70ffb6559f8817db41ee1e69bc60287 maintainer-scripts/branch_changer.py
1c3f2c7d87d076b4209a2a03844292e5 maintainer-scripts/bugzilla-close-candidate.py
c5ab0e8e81e81d0d367d5ee595214eb5 maintainer-scripts/crontab
! 620ae3c62e6c74ccb247213dc969810e maintainer-scripts/gcc_release
4b085aa82b5f2fe789828063eed76560 maintainer-scripts/generate_libstdcxx_web_docs
33d97164a8610c7abf67eff7d28f47ff maintainer-scripts/maintainer-addresses
9277094fc32569de284ee22055219dbd maintainer-scripts/update_version_svn
*************** cf2baa0854f564a7785307e79f155efc symlin
*** 88568,88574 ****
40bb1f4ce4a60a36d1ec50d66aeed4d1 test-driver
cb06c1be6a41d68b0a65e0c1a91752bc ylwrap
03bf3ba8089f4bf475ef4035cf316a47 zlib/CMakeLists.txt
! fd6f154ab5e0aa5414ea57920a1e44a4 zlib/ChangeLog
969dcade0d3b806b7eaf5f16573a528d zlib/ChangeLog.gcj
0e9a37be8e3b85cc0ccf60504064c297 zlib/ChangeLog.jit
b7a1991f01daea3efe108a215c5514a5 zlib/FAQ
--- 88970,88976 ----
40bb1f4ce4a60a36d1ec50d66aeed4d1 test-driver
cb06c1be6a41d68b0a65e0c1a91752bc ylwrap
03bf3ba8089f4bf475ef4035cf316a47 zlib/CMakeLists.txt
! c8b4d7fe4fa0b5836971dc592bc92cde zlib/ChangeLog
969dcade0d3b806b7eaf5f16573a528d zlib/ChangeLog.gcj
0e9a37be8e3b85cc0ccf60504064c297 zlib/ChangeLog.jit
b7a1991f01daea3efe108a215c5514a5 zlib/FAQ
diff -Nrcpad gcc-9.2.0/NEWS gcc-9.3.0/NEWS
*** gcc-9.2.0/NEWS Mon Aug 12 07:41:01 2019
--- gcc-9.3.0/NEWS Thu Mar 12 11:08:55 2020
*************** see ONEWS.
*** 8,28 ****
http://gcc.gnu.org/gcc-9/index.html
GCC 9 Release Series
! Aug 12, 2019
The [1]GNU project and the GCC developers are pleased to announce the
! release of GCC 9.2.
This release is a bug-fix release, containing fixes for regressions in
! GCC 9.1 relative to previous releases of GCC.
Release History
GCC 9.2
! Aug 12, 2019 ([2]changes, [3]documentation)
GCC 9.1
! May 3, 2019 ([4]changes, [5]documentation)
References and Acknowledgements
--- 8,31 ----
http://gcc.gnu.org/gcc-9/index.html
GCC 9 Release Series
! Mar 12, 2020
The [1]GNU project and the GCC developers are pleased to announce the
! release of GCC 9.3.
This release is a bug-fix release, containing fixes for regressions in
! GCC 9.2 relative to previous releases of GCC.
Release History
+ GCC 9.3
+ Mar 12, 2020 ([2]changes, [3]documentation)
+
GCC 9.2
! Aug 12, 2019 ([4]changes, [5]documentation)
GCC 9.1
! May 3, 2019 ([6]changes, [7]documentation)
References and Acknowledgements
*************** References and Acknowledgements
*** 30,94 ****
supports several other languages aside from C, it now stands for the
GNU Compiler Collection.
! A list of [6]successful builds is updated as new information becomes
available.
The GCC developers would like to thank the numerous people that have
contributed new features, improvements, bug fixes, and other changes as
! well as test results to GCC. This [7]amazing group of volunteers is
what makes GCC successful.
! For additional information about GCC please refer to the [8]GCC project
! web site or contact the [9]GCC development mailing list.
! To obtain GCC please use [10]our mirror sites or [11]our SVN server.
For questions related to the use of GCC, please consult these web
! pages and the [12]GCC manuals. If that fails, the
! [13]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [14]gcc@gcc.gnu.org. All of [15]our lists have public
archives.
! Copyright (C) [16]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [17]maintained by the GCC team. Last modified
! 2019-08-12[18].
References
1. http://www.gnu.org/
2. http://gcc.gnu.org/gcc-9/changes.html
! 3. http://gcc.gnu.org/onlinedocs/9.2.0/
4. http://gcc.gnu.org/gcc-9/changes.html
! 5. http://gcc.gnu.org/onlinedocs/9.1.0/
! 6. http://gcc.gnu.org/gcc-9/buildstat.html
! 7. http://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Contributors.html
! 8. http://gcc.gnu.org/index.html
! 9. mailto:gcc@gcc.gnu.org
! 10. http://gcc.gnu.org/mirrors.html
! 11. http://gcc.gnu.org/svn.html
! 12. https://gcc.gnu.org/onlinedocs/
! 13. mailto:gcc-help@gcc.gnu.org
! 14. mailto:gcc@gcc.gnu.org
! 15. https://gcc.gnu.org/lists.html
! 16. https://www.fsf.org/
! 17. https://gcc.gnu.org/about.html
! 18. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-9/changes.html
GCC 9 Release Series
Changes, New Features, and Fixes
This page is a "brief" summary of some of the huge number of
! improvements in GCC 9.
Caveats
! * On Arm targets (arm*-*-*), [1]a bug in the implementation of the
procedure call standard (AAPCS) in the GCC 6, 7 and 8 releases has
been fixed: a structure containing a bit-field based on a 64-bit
integral type and where no other element in a structure required
--- 33,101 ----
supports several other languages aside from C, it now stands for the
GNU Compiler Collection.
! A list of [8]successful builds is updated as new information becomes
available.
The GCC developers would like to thank the numerous people that have
contributed new features, improvements, bug fixes, and other changes as
! well as test results to GCC. This [9]amazing group of volunteers is
what makes GCC successful.
! For additional information about GCC please refer to the [10]GCC
! project web site or contact the [11]GCC development mailing list.
! To obtain GCC please use [12]our mirror sites or [13]our version
! control system.
For questions related to the use of GCC, please consult these web
! pages and the [14]GCC manuals. If that fails, the
! [15]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [16]gcc@gcc.gnu.org. All of [17]our lists have public
archives.
! Copyright (C) [18]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [19]maintained by the GCC team. Last modified
! 2020-03-12[20].
References
1. http://www.gnu.org/
2. http://gcc.gnu.org/gcc-9/changes.html
! 3. http://gcc.gnu.org/onlinedocs/9.3.0/
4. http://gcc.gnu.org/gcc-9/changes.html
! 5. http://gcc.gnu.org/onlinedocs/9.2.0/
! 6. http://gcc.gnu.org/gcc-9/changes.html
! 7. http://gcc.gnu.org/onlinedocs/9.1.0/
! 8. http://gcc.gnu.org/gcc-9/buildstat.html
! 9. http://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Contributors.html
! 10. http://gcc.gnu.org/index.html
! 11. mailto:gcc@gcc.gnu.org
! 12. http://gcc.gnu.org/mirrors.html
! 13. http://gcc.gnu.org/git.html
! 14. https://gcc.gnu.org/onlinedocs/
! 15. mailto:gcc-help@gcc.gnu.org
! 16. mailto:gcc@gcc.gnu.org
! 17. https://gcc.gnu.org/lists.html
! 18. https://www.fsf.org/
! 19. https://gcc.gnu.org/about.html
! 20. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-9/changes.html
GCC 9 Release Series
Changes, New Features, and Fixes
This page is a "brief" summary of some of the huge number of
! improvements in GCC 9. You may also want to check out our [1]Porting to
! GCC 9 page and the [2]full GCC documentation.
Caveats
! * On Arm targets (arm*-*-*), [3]a bug in the implementation of the
procedure call standard (AAPCS) in the GCC 6, 7 and 8 releases has
been fixed: a structure containing a bit-field based on a 64-bit
integral type and where no other element in a structure required
*************** Caveats
*** 103,122 ****
The following ports for individual systems on particular
architectures have been obsoleted:
+ Solaris 10 (*-*-solaris2.10). Details can be found in the
! [2]announcement.
+ Cell Broadband Engine SPU (spu*-*-*). Details can be found in
! the [3]announcement.
* A change to the C++ std::rotate algorithm in GCC 9.1.0 can cause
ABI incompatibilities with object files compiled with other
versions of GCC. If the std::rotate algorithm is called with an
empty range then it might cause a divide-by-zero error (as a SIGFPE
signal) and crash. The change has been reverted for GCC 9.2.0 and
! future releases. For more details see [4]Bug 90920. The problem can
be avoided by recompiling any objects that might call std::rotate
with an empty range, so that the GCC 9.1.0 definition of
std::rotate is not used.
! * The automatic template instantiation at link time ([5]-frepo) has
been deprecated and will be removed in a future release.
General Improvements
--- 110,135 ----
The following ports for individual systems on particular
architectures have been obsoleted:
+ Solaris 10 (*-*-solaris2.10). Details can be found in the
! [4]announcement.
+ Cell Broadband Engine SPU (spu*-*-*). Details can be found in
! the [5]announcement.
* A change to the C++ std::rotate algorithm in GCC 9.1.0 can cause
ABI incompatibilities with object files compiled with other
versions of GCC. If the std::rotate algorithm is called with an
empty range then it might cause a divide-by-zero error (as a SIGFPE
signal) and crash. The change has been reverted for GCC 9.2.0 and
! future releases. For more details see [6]Bug 90920. The problem can
be avoided by recompiling any objects that might call std::rotate
with an empty range, so that the GCC 9.1.0 definition of
std::rotate is not used.
! * The automatic template instantiation at link time ([7]-frepo) has
been deprecated and will be removed in a future release.
+ * The --with-default-libstdcxx-abi=gcc4-compatible configure option
+ is broken in the 9.1 and 9.2 releases, producing a shared library
+ with missing symbols (see [8]Bug 90361). As a workaround, configure
+ without that option and build GCC as normal, then edit the
+ installed headers to define the
+ _GLIBCXX_USE_CXX11_ABI macro to 0.
General Improvements
*************** General Improvements
*** 125,142 ****
* All command line options that take a byte-size argument accept
64-bit integers as well as standard SI and IEC suffixes such as kb
and KiB, MB and MiB, or GB and GiB denoting the corresponding
! multiples of bytes. See [6]Invoking GCC for more.
! * A new option, [7]-flive-patching=[inline-only-static|inline-clone],
! has been introduced to provide a safe compilation for
! live-patching. At the same time, provides multiple-level control on
! the enabled IPA optimizations. See the user guide for more details
! about the option.
* A new option, --completion, has been added to provide more fine
option completion in a shell. It is intended to be used by
Bash-completion.
* GCC's diagnostics now print source code with a left margin showing
line numbers, configurable with
! [8]-fno-diagnostics-show-line-numbers.
GCC's diagnostics can also now label regions of the source code to
show pertinent information, such as the types within an expression.
$ g++ t.cc
--- 138,156 ----
* All command line options that take a byte-size argument accept
64-bit integers as well as standard SI and IEC suffixes such as kb
and KiB, MB and MiB, or GB and GiB denoting the corresponding
! multiples of bytes. See [9]Invoking GCC for more.
! * A new option,
! [10]-flive-patching=[inline-only-static|inline-clone], has been
! introduced to provide a safe compilation for live-patching. At the
! same time, provides multiple-level control on the enabled IPA
! optimizations. See the user guide for more details about the
! option.
* A new option, --completion, has been added to provide more fine
option completion in a shell. It is intended to be used by
Bash-completion.
* GCC's diagnostics now print source code with a left margin showing
line numbers, configurable with
! [11]-fno-diagnostics-show-line-numbers.
GCC's diagnostics can also now label regions of the source code to
show pertinent information, such as the types within an expression.
$ g++ t.cc
*************** e>' and 'boxed_value')
*** 152,172 ****
| |
| boxed_value<[...]>
! These labels can be disabled via [9]-fno-diagnostics-show-labels.
! * A new option [10]-fdiagnostics-format=json has been introduced for
emitting diagnostics in a machine-readable format.
! * The alignment-related options [11]-falign-functions,
! [12]-falign-labels, [13]-falign-loops, and [14]-falign-jumps
received support for a secondary alignment (e.g.
-falign-loops=n:m:n2:m2).
! * New pair of profiling options ([15]-fprofile-filter-files and
! [16]-fprofile-exclude-files) has been added. The options help to
filter which source files are instrumented.
* AddressSanitizer generates more compact redzones for automatic
variables. That helps to reduce memory footprint of a sanitized
binary.
* Numerous improvements have been made to the output of
! [17]-fopt-info.
Messages are now prefixed with optimized, missed, or note, rather
than the old behavior of all being prefixed with note.
The output from -fopt-info can now contain information on inlining
--- 166,186 ----
| |
| boxed_value<[...]>
! These labels can be disabled via [12]-fno-diagnostics-show-labels.
! * A new option [13]-fdiagnostics-format=json has been introduced for
emitting diagnostics in a machine-readable format.
! * The alignment-related options [14]-falign-functions,
! [15]-falign-labels, [16]-falign-loops, and [17]-falign-jumps
received support for a secondary alignment (e.g.
-falign-loops=n:m:n2:m2).
! * New pair of profiling options ([18]-fprofile-filter-files and
! [19]-fprofile-exclude-files) has been added. The options help to
filter which source files are instrumented.
* AddressSanitizer generates more compact redzones for automatic
variables. That helps to reduce memory footprint of a sanitized
binary.
* Numerous improvements have been made to the output of
! [20]-fopt-info.
Messages are now prefixed with optimized, missed, or note, rather
than the old behavior of all being prefixed with note.
The output from -fopt-info can now contain information on inlining
*************** mory");
*** 202,228 ****
The old behavior can be obtained via a new -internals suboption of
-fopt-info.
! * A new option, [18]-fsave-optimization-record has been added, which
writes a SRCFILE.opt-record.json.gz file describing the
optimization decisions made by GCC. This is similar to the output
of -fopt-info, but with additional metadata such as the inlining
chain, and profile information (if available).
* Inter-procedural propagation of stack alignment can now be
! controlled by [19]-fipa-stack-alignment.
* Propagation of addressability, readonly and writeonly flags on
static variables can now be controlled by
! [20]-fipa-reference-addressable.
The following built-in functions have been introduced.
! * [21]__builtin_expect_with_probability to provide branch prediction
probability hints to the optimizer.
! * [22]__builtin_has_attribute determines whether a function, type, or
variable has been declared with some attribute.
! * [23]__builtin_speculation_safe_value can be used to help mitigate
against unsafe speculative execution.
The following attributes have been introduced.
! * The [24]copy function attribute has been added. The attribute can
also be applied to type definitions and to variable declarations.
A large number of improvements to code generation have been made,
--- 216,242 ----
The old behavior can be obtained via a new -internals suboption of
-fopt-info.
! * A new option, [21]-fsave-optimization-record has been added, which
writes a SRCFILE.opt-record.json.gz file describing the
optimization decisions made by GCC. This is similar to the output
of -fopt-info, but with additional metadata such as the inlining
chain, and profile information (if available).
* Inter-procedural propagation of stack alignment can now be
! controlled by [22]-fipa-stack-alignment.
* Propagation of addressability, readonly and writeonly flags on
static variables can now be controlled by
! [23]-fipa-reference-addressable.
The following built-in functions have been introduced.
! * [24]__builtin_expect_with_probability to provide branch prediction
probability hints to the optimizer.
! * [25]__builtin_has_attribute determines whether a function, type, or
variable has been declared with some attribute.
! * [26]__builtin_speculation_safe_value can be used to help mitigate
against unsafe speculative execution.
The following attributes have been introduced.
! * The [27]copy function attribute has been added. The attribute can
also be applied to type definitions and to variable declarations.
A large number of improvements to code generation have been made,
*************** mory");
*** 230,236 ****
* Switch expansion has been improved by using a different strategy
(jump table, bit test, decision tree) for a subset of switch cases.
* A linear function expression defined as a switch statement can be
! transformed by [25]-ftree-switch-conversion. For example:
int
foo (int how)
--- 244,250 ----
* Switch expansion has been improved by using a different strategy
(jump table, bit test, decision tree) for a subset of switch cases.
* A linear function expression defined as a switch statement can be
! transformed by [28]-ftree-switch-conversion. For example:
int
foo (int how)
*************** foo (int how)
*** 257,265 ****
+ Improved scalability for very large translation units
(especially when link-time optimizing large programs).
* Profile driven optimization improvements:
! + [26]-fprofile-use now enables [27]-fversion-loops-for-strides,
! [28]-floop-interchange, [29]-floop-unroll-and-jam,
! [30]-ftree-loop-distribution.
+ Streaming of counter histograms was removed. This reduces the
size of profile files. Histogram is computed on the fly with
link-time optimization. Parameter hot-bb-count-ws-permille was
--- 271,279 ----
+ Improved scalability for very large translation units
(especially when link-time optimizing large programs).
* Profile driven optimization improvements:
! + [29]-fprofile-use now enables [30]-fversion-loops-for-strides,
! [31]-floop-interchange, [32]-floop-unroll-and-jam,
! [33]-ftree-loop-distribution.
+ Streaming of counter histograms was removed. This reduces the
size of profile files. Histogram is computed on the fly with
link-time optimization. Parameter hot-bb-count-ws-permille was
*************** foo (int how)
*** 287,331 ****
The following improvements to the gcov command-line utility have been
made.
! * The gcov tool received a new option [31]--use-hotness-colors (-q)
that can provide perf-like coloring of hot functions.
* The gcov tool has changed its intermediate format to a new JSON
format.
New Languages and Language specific improvements
! [32]OpenACC support in C, C++, and Fortran continues to be maintained
and improved. Most of the OpenACC 2.5 specification is implemented. See
! the [33]implementation status section on the OpenACC wiki page for
further information.
C family
! * Version 5.0 of the [34]OpenMP specification is now partially
supported in the C and C++ compilers. For details which features of
OpenMP 5.0 are and which are not supported in the GCC 9 release see
! [35]this mail.
* New extensions:
! + [36]__builtin_convertvector built-in for vector conversions
has been added.
* New warnings:
! + [37]-Waddress-of-packed-member, enabled by default, warns
about an unaligned pointer value from the address of a packed
member of a struct or union.
* Enhancements to existing warnings:
! + [38]-Warray-bounds detects more instances of out-of-bounds
indices.
! + [39]-Wattribute-alias also detects attribute mismatches
between alias declarations and their targets, in addition to
mismatches between their types.
! + [40]-Wformat-overflow and [41]-Wformat-truncation have been
extended to all formatted input/output functions (where
applicable) and enhanced to detect a subset of instances of
reading past the end of unterminated constant character arrays
in %s directives.
! + [42]-Wmissing-attributes detects instances of missing function
attributes on declarations of aliases and weak references.
! + [43]-Wstringop-truncation also detects a subset of instances
of reading past the end of unterminated constant character
arrays,
* If a macro is used with the wrong argument count, the C and C++
--- 301,345 ----
The following improvements to the gcov command-line utility have been
made.
! * The gcov tool received a new option [34]--use-hotness-colors (-q)
that can provide perf-like coloring of hot functions.
* The gcov tool has changed its intermediate format to a new JSON
format.
New Languages and Language specific improvements
! [35]OpenACC support in C, C++, and Fortran continues to be maintained
and improved. Most of the OpenACC 2.5 specification is implemented. See
! the [36]implementation status section on the OpenACC wiki page for
further information.
C family
! * Version 5.0 of the [37]OpenMP specification is now partially
supported in the C and C++ compilers. For details which features of
OpenMP 5.0 are and which are not supported in the GCC 9 release see
! [38]this mail.
* New extensions:
! + [39]__builtin_convertvector built-in for vector conversions
has been added.
* New warnings:
! + [40]-Waddress-of-packed-member, enabled by default, warns
about an unaligned pointer value from the address of a packed
member of a struct or union.
* Enhancements to existing warnings:
! + [41]-Warray-bounds detects more instances of out-of-bounds
indices.
! + [42]-Wattribute-alias also detects attribute mismatches
between alias declarations and their targets, in addition to
mismatches between their types.
! + [43]-Wformat-overflow and [44]-Wformat-truncation have been
extended to all formatted input/output functions (where
applicable) and enhanced to detect a subset of instances of
reading past the end of unterminated constant character arrays
in %s directives.
! + [45]-Wmissing-attributes detects instances of missing function
attributes on declarations of aliases and weak references.
! + [46]-Wstringop-truncation also detects a subset of instances
of reading past the end of unterminated constant character
arrays,
* If a macro is used with the wrong argument count, the C and C++
*************** New Languages and Language specific impr
*** 346,352 ****
added in C2X (such warnings are also enabled by use of -Wpedantic
if not using -std=c2x or -std=gnu2x).
* New warnings:
! + [44]-Wabsolute-value warns for calls to standard functions
that compute the absolute value of an argument when a more
appropriate standard function is available. For example,
calling abs(3.14) triggers the warning because the appropriate
--- 360,366 ----
added in C2X (such warnings are also enabled by use of -Wpedantic
if not using -std=c2x or -std=gnu2x).
* New warnings:
! + [47]-Wabsolute-value warns for calls to standard functions
that compute the absolute value of an argument when a more
appropriate standard function is available. For example,
calling abs(3.14) triggers the warning because the appropriate
*************** New Languages and Language specific impr
*** 359,377 ****
C++
* New warnings:
! + [45]-Wdeprecated-copy, implied by -Wextra, warns about the
C++11 deprecation of implicitly declared copy constructor and
assignment operator if one of them is user-provided.
-Wdeprecated-copy-dtor also warns if the destructor is
user-provided, as specified in C++11.
! + [46]-Winit-list-lifetime, on by default, warns about uses of
std::initializer_list that are likely to result in a dangling
pointer, such as returning or assigning from a temporary list.
! + [47]-Wredundant-move, implied by -Wextra, warns about
redundant calls to std::move.
! + [48]-Wpessimizing-move, implied by -Wall, warns when a call to
std::move prevents copy elision.
! + [49]-Wclass-conversion, on by default, warns when a conversion
function will never be called due to the type it converts to.
* The C++ front end has experimental support for some of the upcoming
C++2a draft features with the -std=c++2a or -std=gnu++2a flags,
--- 373,391 ----
C++
* New warnings:
! + [48]-Wdeprecated-copy, implied by -Wextra, warns about the
C++11 deprecation of implicitly declared copy constructor and
assignment operator if one of them is user-provided.
-Wdeprecated-copy-dtor also warns if the destructor is
user-provided, as specified in C++11.
! + [49]-Winit-list-lifetime, on by default, warns about uses of
std::initializer_list that are likely to result in a dangling
pointer, such as returning or assigning from a temporary list.
! + [50]-Wredundant-move, implied by -Wextra, warns about
redundant calls to std::move.
! + [51]-Wpessimizing-move, implied by -Wall, warns when a call to
std::move prevents copy elision.
! + [52]-Wclass-conversion, on by default, warns when a conversion
function will never be called due to the type it converts to.
* The C++ front end has experimental support for some of the upcoming
C++2a draft features with the -std=c++2a or -std=gnu++2a flags,
*************** New Languages and Language specific impr
*** 382,388 ****
attributes, class types in non-type template parameters, allowing
virtual function calls in constant expressions, explicit(bool),
std::is_constant_evaluated, nested inline namespaces, etc. For a
! full list of new features, see [50]the C++ status page.
* The C++ front end now preserves source locations for literals,
id-expression, and mem-initializer for longer. For example it is
now able to pin-point the pertinent locations for bad
--- 396,402 ----
attributes, class types in non-type template parameters, allowing
virtual function calls in constant expressions, explicit(bool),
std::is_constant_evaluated, nested inline namespaces, etc. For a
! full list of new features, see [53]the C++ status page.
* The C++ front end now preserves source locations for literals,
id-expression, and mem-initializer for longer. For example it is
now able to pin-point the pertinent locations for bad
*************** d*, int)'
*** 442,448 ****
3 | void callee (int, void *, int)
| ^~~~~~
! * The C++ front end's implementation of [51]-Wformat now shows
precise locations within string literals, and underlines the
pertinent arguments at bogus call sites (the C front end has been
doing this since GCC 7). For example:
--- 456,462 ----
3 | void callee (int, void *, int)
| ^~~~~~
! * The C++ front end's implementation of [54]-Wformat now shows
precise locations within string literals, and underlines the
pertinent arguments at bogus call sites (the C front end has been
doing this since GCC 7). For example:
*************** _SIZE'?
*** 528,534 ****
* Improved support for C++17, including:
+ The C++17 implementation is no longer experimental.
! + Parallel algorithms and (requires [52]Thread
Building Blocks 2018 or newer).
+ .
+ Using the types and functions in does not require
--- 542,548 ----
* Improved support for C++17, including:
+ The C++17 implementation is no longer experimental.
! + Parallel algorithms and (requires [55]Thread
Building Blocks 2018 or newer).
+ .
+ Using the types and functions in does not require
*************** _SIZE'?
*** 583,602 ****
specific way, one needs to explicitly check for NaN's before
calling MAX or MIN, e.g. by using the IEEE_IS_NAN function from the
intrinsic module IEEE_ARITHMETIC.
! * A new command-line option [53]-fdec-include, set also by the
! [54]-fdec option, has been added to increase compatibility with
legacy code. With this option, an INCLUDE directive is also parsed
as a statement, which allows the directive to be spread across
multiple source lines with line continuations.
! * A new [55]BUILTIN directive, has been added. The purpose of the
directive is to provide an API between the GCC compiler and the GNU
C Library which would define vector implementations of math
routines.
libgccjit
* The libgccjit API gained a new entry point:
! [56]gcc_jit_context_add_driver_option.
New Targets and Target Specific Improvements
--- 597,621 ----
specific way, one needs to explicitly check for NaN's before
calling MAX or MIN, e.g. by using the IEEE_IS_NAN function from the
intrinsic module IEEE_ARITHMETIC.
! * A new command-line option [56]-fdec-include, set also by the
! [57]-fdec option, has been added to increase compatibility with
legacy code. With this option, an INCLUDE directive is also parsed
as a statement, which allows the directive to be spread across
multiple source lines with line continuations.
! * A new [58]BUILTIN directive, has been added. The purpose of the
directive is to provide an API between the GCC compiler and the GNU
C Library which would define vector implementations of math
routines.
+ Go
+
+ * GCC 9 provides a complete implementation of the Go 1.12.2 user
+ packages.
+
libgccjit
* The libgccjit API gained a new entry point:
! [59]gcc_jit_context_add_driver_option.
New Targets and Target Specific Improvements
*************** New Targets and Target Specific Improvem
*** 637,643 ****
* Support has been added for the Arm Neoverse E1 processor
(-mcpu=neoverse-e1).
* The AArch64 port now has support for stack clash protection using
! the [57]-fstack-clash-protection option. The probing interval/guard
size can be set by using --param
stack-clash-protection-guard-size=12|16. The value of this
parameter must be in bytes represented as a power of two. The two
--- 656,662 ----
* Support has been added for the Arm Neoverse E1 processor
(-mcpu=neoverse-e1).
* The AArch64 port now has support for stack clash protection using
! the [60]-fstack-clash-protection option. The probing interval/guard
size can be set by using --param
stack-clash-protection-guard-size=12|16. The value of this
parameter must be in bytes represented as a power of two. The two
*************** New Targets and Target Specific Improvem
*** 650,656 ****
option can now be used to enable the return address signing as well
as the new Branch Target Identification feature of Armv8.5-A
architecture. For more information on the arguments accepted by
! this option, please refer to [58]AArch64-Options.
* The following optional extensions to Armv8.5-A architecture are now
supported and only affect the assembler.
+ Random Number Generation instructions through the
--- 669,675 ----
option can now be used to enable the return address signing as well
as the new Branch Target Identification feature of Armv8.5-A
architecture. For more information on the arguments accepted by
! this option, please refer to [61]AArch64-Options.
* The following optional extensions to Armv8.5-A architecture are now
supported and only affect the assembler.
+ Random Number Generation instructions through the
*************** New Targets and Target Specific Improvem
*** 696,701 ****
--- 715,726 ----
* Support of Intel MPX (Memory Protection Extensions) has been
removed.
+ * New ISA extension support for Intel PTWRITE was added to GCC.
+ PTWRITE intrinsics are available via the -mptwrite compiler switch.
+ * GCC now supports the Intel CPU named Cascade Lake with AVX512
+ extensions through -march=cascadelake. The switch enables the
+ following ISA extensions: AVX512F, AVX512VL, AVX512CD, AVX512BW,
+ AVX512DQ, AVX512VNNI.
OpenRISC
*************** Operating Systems
*** 747,753 ****
Windows
! * A C++ Microsoft ABI bitfield layout bug, [59]PR87137 has been
fixed. A non-field declaration could cause the current bitfield
allocation unit to be completed, incorrectly placing a following
bitfield into a new allocation unit. The Microsoft ABI is selected
--- 772,778 ----
Windows
! * A C++ Microsoft ABI bitfield layout bug, [62]PR87137 has been
fixed. A non-field declaration could cause the current bitfield
allocation unit to be completed, incorrectly placing a following
bitfield into a new allocation unit. The Microsoft ABI is selected
*************** Improvements for plugin authors
*** 763,770 ****
* GCC's diagnostic subsystem now has a way to logically group
together related diagnostics, auto_diagnostic_group. Such
diagnostics will be nested by the output of
! [60]-fdiagnostics-format=json.
! * GCC now has a set of [61]user experience guidelines for GCC, with
information and advice on implementing new diagnostics.
Other significant improvements
--- 788,795 ----
* GCC's diagnostic subsystem now has a way to logically group
together related diagnostics, auto_diagnostic_group. Such
diagnostics will be nested by the output of
! [63]-fdiagnostics-format=json.
! * GCC now has a set of [64]user experience guidelines for GCC, with
information and advice on implementing new diagnostics.
Other significant improvements
*************** Other significant improvements
*** 774,900 ****
GCC 9.1
! This is the [62]list of problem reports (PRs) from GCC's bug tracking
system that are known to be fixed in the 9.1 release. This list might
not be complete (that is, it is possible that some PRs that have been
fixed are not listed here).
GCC 9.2
! This is the [63]list of problem reports (PRs) from GCC's bug tracking
system that are known to be fixed in the 9.2 release. This list might
not be complete (that is, it is possible that some PRs that have been
fixed are not listed here).
For questions related to the use of GCC, please consult these web
! pages and the [64]GCC manuals. If that fails, the
! [65]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [66]gcc@gcc.gnu.org. All of [67]our lists have public
archives.
! Copyright (C) [68]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [69]maintained by the GCC team. Last modified
! 2019-08-12[70].
References
! 1. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88469
! 2. https://gcc.gnu.org/ml/gcc/2018-10/msg00139.html
! 3. https://gcc.gnu.org/ml/gcc/2019-04/msg00023.html
! 4. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90920
! 5. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-frepo
! 6. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Invoking-GCC.html#Invoking-GCC
! 7. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-flive-patching
! 8. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Diagnostic-Message-Formatting-Options.html#index-fno-diagnostics-show-line-numbers
! 9. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Diagnostic-Message-Formatting-Options.html#index-fno-diagnostics-show-labels
! 10. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-format
! 11. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-falign-functions
! 12. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-falign-labels
! 13. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-falign-loops
! 14. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-falign-jumps
! 15. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Instrumentation-Options.html#index-fprofile-filter-files
! 16. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Instrumentation-Options.html#index-fprofile-exclude-files
! 17. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Developer-Options.html#index-fopt-info
! 18. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Developer-Options.html#index-fsave-optimization-record
! 19. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-fipa-stack-alignment
! 20. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-fipa-reference-addressable
! 21. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Other-Builtins.html#index-_005f_005fbuiltin_005fexpect_005fwith_005fprobability
! 22. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Other-Builtins.html#index-_005f_005fbuiltin_005fhas_005fattribute-1
! 23. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Other-Builtins.html#index-_005f_005fbuiltin_005fspeculation_005fsafe_005fvalue-1
! 24. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Common-Function-Attributes.html#index-copy-function-attribute
! 25. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-ftree-switch-conversion
! 26. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-fprofile-use
! 27. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-fversion-loops-for-strides
! 28. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-floop-interchange
! 29. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-floop-unroll-and-jam
! 30. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-ftree-loop-distribution
! 31. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Invoking-Gcov.html#Invoking-Gcov
! 32. https://www.openacc.org/
! 33. https://gcc.gnu.org/wiki/OpenACC#status-9
! 34. https://www.openmp.org/specifications/
! 35. https://gcc.gnu.org/ml/gcc-patches/2018-11/msg00628.html
! 36. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Vector-Extensions.html#index-_005f_005fbuiltin_005fconvertvector
! 37. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Waddress-of-packed-member
! 38. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Warray-bounds
! 39. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wattribute-alias
! 40. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wformat-overflow
! 41. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wformat-truncation
! 42. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wmissing-attributes
! 43. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wstringop-truncation
! 44. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wabsolute-value
! 45. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Wdeprecated-copy
! 46. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Winit-list-lifetime
! 47. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Wredundant-move
! 48. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Wpessimizing-move
! 49. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Wclass-conversion
! 50. http://gcc.gnu.org/projects/cxx-status.html#cxx2a
! 51. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wformat
! 52. https://www.threadingbuildingblocks.org/
! 53. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gfortran/Fortran-Dialect-Options.html#index-fdec-include
! 54. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gfortran/Fortran-Dialect-Options.html#index-fdec
! 55. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gfortran/BUILTIN-directive.html#BUILTIN-directive
! 56. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/jit/topics/contexts.html#gcc_jit_context_add_driver_option
! 57. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Instrumentation-Options.html#index-fstack-protector
! 58. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/AArch64-Options.html#AArch64-Options
! 59. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87137
! 60. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-format
! 61. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gccint/User-Experience-Guidelines.html
! 62. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=9.0
! 63. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=9.2
! 64. https://gcc.gnu.org/onlinedocs/
! 65. mailto:gcc-help@gcc.gnu.org
! 66. mailto:gcc@gcc.gnu.org
! 67. https://gcc.gnu.org/lists.html
! 68. https://www.fsf.org/
! 69. https://gcc.gnu.org/about.html
! 70. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-8/index.html
GCC 8 Release Series
! Feb 22, 2019
The [1]GNU project and the GCC developers are pleased to announce the
! release of GCC 8.3.
This release is a bug-fix release, containing fixes for regressions in
! GCC 8.2 relative to previous releases of GCC.
Release History
GCC 8.3
! Feb 22, 2019 ([2]changes, [3]documentation)
GCC 8.2
! Jul 14, 2018 ([4]changes, [5]documentation)
GCC 8.1
! May 2, 2018 ([6]changes, [7]documentation)
References and Acknowledgements
--- 799,939 ----
GCC 9.1
! This is the [65]list of problem reports (PRs) from GCC's bug tracking
system that are known to be fixed in the 9.1 release. This list might
not be complete (that is, it is possible that some PRs that have been
fixed are not listed here).
GCC 9.2
! This is the [66]list of problem reports (PRs) from GCC's bug tracking
system that are known to be fixed in the 9.2 release. This list might
not be complete (that is, it is possible that some PRs that have been
fixed are not listed here).
+ GCC 9.3
+
+ This is the [67]list of problem reports (PRs) from GCC's bug tracking
+ system that are known to be fixed in the 9.3 release. This list might
+ not be complete (that is, it is possible that some PRs that have been
+ fixed are not listed here).
+
For questions related to the use of GCC, please consult these web
! pages and the [68]GCC manuals. If that fails, the
! [69]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [70]gcc@gcc.gnu.org. All of [71]our lists have public
archives.
! Copyright (C) [72]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [73]maintained by the GCC team. Last modified
! 2020-03-12[74].
References
! 1. http://gcc.gnu.org/gcc-9/porting_to.html
! 2. http://gcc.gnu.org/onlinedocs/index.html#current
! 3. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=88469
! 4. https://gcc.gnu.org/ml/gcc/2018-10/msg00139.html
! 5. https://gcc.gnu.org/ml/gcc/2019-04/msg00023.html
! 6. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=90920
! 7. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-frepo
! 8. https://gcc.gnu.org/PR90361
! 9. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Invoking-GCC.html#Invoking-GCC
! 10. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-flive-patching
! 11. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Diagnostic-Message-Formatting-Options.html#index-fno-diagnostics-show-line-numbers
! 12. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Diagnostic-Message-Formatting-Options.html#index-fno-diagnostics-show-labels
! 13. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-format
! 14. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-falign-functions
! 15. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-falign-labels
! 16. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-falign-loops
! 17. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-falign-jumps
! 18. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Instrumentation-Options.html#index-fprofile-filter-files
! 19. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Instrumentation-Options.html#index-fprofile-exclude-files
! 20. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Developer-Options.html#index-fopt-info
! 21. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Developer-Options.html#index-fsave-optimization-record
! 22. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-fipa-stack-alignment
! 23. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-fipa-reference-addressable
! 24. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Other-Builtins.html#index-_005f_005fbuiltin_005fexpect_005fwith_005fprobability
! 25. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Other-Builtins.html#index-_005f_005fbuiltin_005fhas_005fattribute-1
! 26. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Other-Builtins.html#index-_005f_005fbuiltin_005fspeculation_005fsafe_005fvalue-1
! 27. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Common-Function-Attributes.html#index-copy-function-attribute
! 28. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-ftree-switch-conversion
! 29. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-fprofile-use
! 30. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-fversion-loops-for-strides
! 31. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-floop-interchange
! 32. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-floop-unroll-and-jam
! 33. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Optimize-Options.html#index-ftree-loop-distribution
! 34. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Invoking-Gcov.html#Invoking-Gcov
! 35. https://www.openacc.org/
! 36. https://gcc.gnu.org/wiki/OpenACC#status-9
! 37. https://www.openmp.org/specifications/
! 38. https://gcc.gnu.org/ml/gcc-patches/2018-11/msg00628.html
! 39. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Vector-Extensions.html#index-_005f_005fbuiltin_005fconvertvector
! 40. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Waddress-of-packed-member
! 41. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Warray-bounds
! 42. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wattribute-alias
! 43. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wformat-overflow
! 44. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wformat-truncation
! 45. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wmissing-attributes
! 46. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wstringop-truncation
! 47. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wabsolute-value
! 48. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Wdeprecated-copy
! 49. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Winit-list-lifetime
! 50. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Wredundant-move
! 51. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Wpessimizing-move
! 52. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/C_002b_002b-Dialect-Options.html#index-Wclass-conversion
! 53. http://gcc.gnu.org/projects/cxx-status.html#cxx2a
! 54. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Warning-Options.html#index-Wformat
! 55. https://github.com/intel/tbb
! 56. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gfortran/Fortran-Dialect-Options.html#index-fdec-include
! 57. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gfortran/Fortran-Dialect-Options.html#index-fdec
! 58. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gfortran/BUILTIN-directive.html#BUILTIN-directive
! 59. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/jit/topics/contexts.html#gcc_jit_context_add_driver_option
! 60. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Instrumentation-Options.html#index-fstack-protector
! 61. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/AArch64-Options.html#AArch64-Options
! 62. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87137
! 63. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gcc/Diagnostic-Message-Formatting-Options.html#index-fdiagnostics-format
! 64. https://gcc.gnu.org/onlinedocs/gcc-9.1.0/gccint/User-Experience-Guidelines.html
! 65. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=9.0
! 66. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=9.2
! 67. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=9.3
! 68. https://gcc.gnu.org/onlinedocs/
! 69. mailto:gcc-help@gcc.gnu.org
! 70. mailto:gcc@gcc.gnu.org
! 71. https://gcc.gnu.org/lists.html
! 72. https://www.fsf.org/
! 73. https://gcc.gnu.org/about.html
! 74. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-8/index.html
GCC 8 Release Series
! Mar 4, 2020
The [1]GNU project and the GCC developers are pleased to announce the
! release of GCC 8.4.
This release is a bug-fix release, containing fixes for regressions in
! GCC 8.3 relative to previous releases of GCC.
Release History
+ GCC 8.4
+ Mar 4, 2020 ([2]changes, [3]documentation)
+
GCC 8.3
! Feb 22, 2019 ([4]changes, [5]documentation)
GCC 8.2
! Jul 26, 2018 ([6]changes, [7]documentation)
GCC 8.1
! May 2, 2018 ([8]changes, [9]documentation)
References and Acknowledgements
*************** References and Acknowledgements
*** 902,957 ****
supports several other languages aside from C, it now stands for the
GNU Compiler Collection.
! A list of [8]successful builds is updated as new information becomes
available.
The GCC developers would like to thank the numerous people that have
contributed new features, improvements, bug fixes, and other changes as
! well as test results to GCC. This [9]amazing group of volunteers is
what makes GCC successful.
! For additional information about GCC please refer to the [10]GCC
! project web site or contact the [11]GCC development mailing list.
! To obtain GCC please use [12]our mirror sites or [13]our SVN server.
For questions related to the use of GCC, please consult these web
! pages and the [14]GCC manuals. If that fails, the
! [15]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [16]gcc@gcc.gnu.org. All of [17]our lists have public
archives.
! Copyright (C) [18]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [19]maintained by the GCC team. Last modified
! 2019-02-22[20].
References
1. http://www.gnu.org/
2. http://gcc.gnu.org/gcc-8/changes.html
! 3. http://gcc.gnu.org/onlinedocs/8.3.0/
4. http://gcc.gnu.org/gcc-8/changes.html
! 5. http://gcc.gnu.org/onlinedocs/8.2.0/
6. http://gcc.gnu.org/gcc-8/changes.html
! 7. http://gcc.gnu.org/onlinedocs/8.1.0/
! 8. http://gcc.gnu.org/gcc-8/buildstat.html
! 9. http://gcc.gnu.org/onlinedocs/gcc-8.1.0/gcc/Contributors.html
! 10. http://gcc.gnu.org/index.html
! 11. mailto:gcc@gcc.gnu.org
! 12. http://gcc.gnu.org/mirrors.html
! 13. http://gcc.gnu.org/svn.html
! 14. https://gcc.gnu.org/onlinedocs/
! 15. mailto:gcc-help@gcc.gnu.org
! 16. mailto:gcc@gcc.gnu.org
! 17. https://gcc.gnu.org/lists.html
! 18. https://www.fsf.org/
! 19. https://gcc.gnu.org/about.html
! 20. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-8/changes.html
GCC 8 Release Series
--- 941,999 ----
supports several other languages aside from C, it now stands for the
GNU Compiler Collection.
! A list of [10]successful builds is updated as new information becomes
available.
The GCC developers would like to thank the numerous people that have
contributed new features, improvements, bug fixes, and other changes as
! well as test results to GCC. This [11]amazing group of volunteers is
what makes GCC successful.
! For additional information about GCC please refer to the [12]GCC
! project web site or contact the [13]GCC development mailing list.
! To obtain GCC please use [14]our mirror sites or [15]our version
! control system.
For questions related to the use of GCC, please consult these web
! pages and the [16]GCC manuals. If that fails, the
! [17]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [18]gcc@gcc.gnu.org. All of [19]our lists have public
archives.
! Copyright (C) [20]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [21]maintained by the GCC team. Last modified
! 2020-03-04[22].
References
1. http://www.gnu.org/
2. http://gcc.gnu.org/gcc-8/changes.html
! 3. http://gcc.gnu.org/onlinedocs/8.4.0/
4. http://gcc.gnu.org/gcc-8/changes.html
! 5. http://gcc.gnu.org/onlinedocs/8.3.0/
6. http://gcc.gnu.org/gcc-8/changes.html
! 7. http://gcc.gnu.org/onlinedocs/8.2.0/
! 8. http://gcc.gnu.org/gcc-8/changes.html
! 9. http://gcc.gnu.org/onlinedocs/8.1.0/
! 10. http://gcc.gnu.org/gcc-8/buildstat.html
! 11. http://gcc.gnu.org/onlinedocs/gcc-8.1.0/gcc/Contributors.html
! 12. http://gcc.gnu.org/index.html
! 13. mailto:gcc@gcc.gnu.org
! 14. http://gcc.gnu.org/mirrors.html
! 15. http://gcc.gnu.org/git.html
! 16. https://gcc.gnu.org/onlinedocs/
! 17. mailto:gcc-help@gcc.gnu.org
! 18. mailto:gcc@gcc.gnu.org
! 19. https://gcc.gnu.org/lists.html
! 20. https://www.fsf.org/
! 21. https://gcc.gnu.org/about.html
! 22. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-8/changes.html
GCC 8 Release Series
*************** Caveats
*** 974,980 ****
std::make_exception_ptr should be used instead.
* Support for the powerpc*-*-*spe* target ports which have been
recently unmaintained and untested in GCC has been declared
! obsolete in GCC 8 as announced [3]here. Unless there is activity to
revive them, the next release of GCC will have their sources
permanently removed.
--- 1016,1022 ----
std::make_exception_ptr should be used instead.
* Support for the powerpc*-*-*spe* target ports which have been
recently unmaintained and untested in GCC has been declared
! obsolete in GCC 8 as [3]announced. Unless there is activity to
revive them, the next release of GCC will have their sources
permanently removed.
*************** GCC 8.3
*** 1995,2014 ****
resolve only those regressions, we decided to resolve all the cases
of this defect in single change.
For questions related to the use of GCC, please consult these web
! pages and the [37]GCC manuals. If that fails, the
! [38]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [39]gcc@gcc.gnu.org. All of [40]our lists have public
archives.
! Copyright (C) [41]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [42]maintained by the GCC team. Last modified
! 2019-04-17[43].
References
--- 2037,2063 ----
resolve only those regressions, we decided to resolve all the cases
of this defect in single change.
+ GCC 8.4
+
+ This is the [37]list of problem reports (PRs) from GCC's bug tracking
+ system that are known to be fixed in the 8.4 release. This list might
+ not be complete (that is, it is possible that some PRs that have been
+ fixed are not listed here).
+
For questions related to the use of GCC, please consult these web
! pages and the [38]GCC manuals. If that fails, the
! [39]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [40]gcc@gcc.gnu.org. All of [41]our lists have public
archives.
! Copyright (C) [42]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [43]maintained by the GCC team. Last modified
! 2020-03-04[44].
References
*************** References
*** 2048,2085 ****
34. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84413
35. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=8.3
36. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87137
! 37. https://gcc.gnu.org/onlinedocs/
! 38. mailto:gcc-help@gcc.gnu.org
! 39. mailto:gcc@gcc.gnu.org
! 40. https://gcc.gnu.org/lists.html
! 41. https://www.fsf.org/
! 42. https://gcc.gnu.org/about.html
! 43. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-7/index.html
GCC 7 Release Series
! Dec 6, 2018
The [1]GNU project and the GCC developers are pleased to announce the
! release of GCC 7.4.
This release is a bug-fix release, containing fixes for regressions in
! GCC 7.3 relative to previous releases of GCC.
Release History
GCC 7.4
! Dec 6, 2018 ([2]changes, [3]documentation)
GCC 7.3
! Jan 25, 2018 ([4]changes, [5]documentation)
GCC 7.2
! Aug 14, 2017 ([6]changes, [7]documentation)
GCC 7.1
! May 2, 2017 ([8]changes, [9]documentation)
References and Acknowledgements
--- 2097,2138 ----
34. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=84413
35. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=8.3
36. https://gcc.gnu.org/bugzilla/show_bug.cgi?id=87137
! 37. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=8.4
! 38. https://gcc.gnu.org/onlinedocs/
! 39. mailto:gcc-help@gcc.gnu.org
! 40. mailto:gcc@gcc.gnu.org
! 41. https://gcc.gnu.org/lists.html
! 42. https://www.fsf.org/
! 43. https://gcc.gnu.org/about.html
! 44. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-7/index.html
GCC 7 Release Series
! Nov 14, 2019
The [1]GNU project and the GCC developers are pleased to announce the
! release of GCC 7.5.
This release is a bug-fix release, containing fixes for regressions in
! GCC 7.4 relative to previous releases of GCC.
Release History
+ GCC 7.5
+ Nov 14, 2019 ([2]changes, [3]documentation)
+
GCC 7.4
! Dec 6, 2018 ([4]changes, [5]documentation)
GCC 7.3
! Jan 25, 2018 ([6]changes, [7]documentation)
GCC 7.2
! Aug 14, 2017 ([8]changes, [9]documentation)
GCC 7.1
! May 2, 2017 ([10]changes, [11]documentation)
References and Acknowledgements
*************** References and Acknowledgements
*** 2087,2144 ****
supports several other languages aside from C, it now stands for the
GNU Compiler Collection.
! A list of [10]successful builds is updated as new information becomes
available.
The GCC developers would like to thank the numerous people that have
contributed new features, improvements, bug fixes, and other changes as
! well as test results to GCC. This [11]amazing group of volunteers is
what makes GCC successful.
! For additional information about GCC please refer to the [12]GCC
! project web site or contact the [13]GCC development mailing list.
! To obtain GCC please use [14]our mirror sites or [15]our SVN server.
For questions related to the use of GCC, please consult these web
! pages and the [16]GCC manuals. If that fails, the
! [17]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [18]gcc@gcc.gnu.org. All of [19]our lists have public
archives.
! Copyright (C) [20]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [21]maintained by the GCC team. Last modified
! 2018-12-06[22].
References
1. http://www.gnu.org/
2. http://gcc.gnu.org/gcc-7/changes.html
! 3. http://gcc.gnu.org/onlinedocs/7.4.0/
4. http://gcc.gnu.org/gcc-7/changes.html
! 5. http://gcc.gnu.org/onlinedocs/7.3.0/
6. http://gcc.gnu.org/gcc-7/changes.html
! 7. http://gcc.gnu.org/onlinedocs/7.2.0/
8. http://gcc.gnu.org/gcc-7/changes.html
! 9. http://gcc.gnu.org/onlinedocs/7.1.0/
! 10. http://gcc.gnu.org/gcc-7/buildstat.html
! 11. http://gcc.gnu.org/onlinedocs/gcc/Contributors.html
! 12. http://gcc.gnu.org/index.html
! 13. mailto:gcc@gcc.gnu.org
! 14. http://gcc.gnu.org/mirrors.html
! 15. http://gcc.gnu.org/svn.html
! 16. https://gcc.gnu.org/onlinedocs/
! 17. mailto:gcc-help@gcc.gnu.org
! 18. mailto:gcc@gcc.gnu.org
! 19. https://gcc.gnu.org/lists.html
! 20. https://www.fsf.org/
! 21. https://gcc.gnu.org/about.html
! 22. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-7/changes.html
GCC 7 Release Series
--- 2140,2200 ----
supports several other languages aside from C, it now stands for the
GNU Compiler Collection.
! A list of [12]successful builds is updated as new information becomes
available.
The GCC developers would like to thank the numerous people that have
contributed new features, improvements, bug fixes, and other changes as
! well as test results to GCC. This [13]amazing group of volunteers is
what makes GCC successful.
! For additional information about GCC please refer to the [14]GCC
! project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our version
! control system.
For questions related to the use of GCC, please consult these web
! pages and the [18]GCC manuals. If that fails, the
! [19]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [20]gcc@gcc.gnu.org. All of [21]our lists have public
archives.
! Copyright (C) [22]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [23]maintained by the GCC team. Last modified
! 2020-01-14[24].
References
1. http://www.gnu.org/
2. http://gcc.gnu.org/gcc-7/changes.html
! 3. http://gcc.gnu.org/onlinedocs/7.5.0/
4. http://gcc.gnu.org/gcc-7/changes.html
! 5. http://gcc.gnu.org/onlinedocs/7.4.0/
6. http://gcc.gnu.org/gcc-7/changes.html
! 7. http://gcc.gnu.org/onlinedocs/7.3.0/
8. http://gcc.gnu.org/gcc-7/changes.html
! 9. http://gcc.gnu.org/onlinedocs/7.2.0/
! 10. http://gcc.gnu.org/gcc-7/changes.html
! 11. http://gcc.gnu.org/onlinedocs/7.1.0/
! 12. http://gcc.gnu.org/gcc-7/buildstat.html
! 13. http://gcc.gnu.org/onlinedocs/gcc/Contributors.html
! 14. http://gcc.gnu.org/index.html
! 15. mailto:gcc@gcc.gnu.org
! 16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/git.html
! 18. https://gcc.gnu.org/onlinedocs/
! 19. mailto:gcc-help@gcc.gnu.org
! 20. mailto:gcc@gcc.gnu.org
! 21. https://gcc.gnu.org/lists.html
! 22. https://www.fsf.org/
! 23. https://gcc.gnu.org/about.html
! 24. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-7/changes.html
GCC 7 Release Series
*************** GCC 7.4
*** 3188,3207 ****
not be complete (that is, it is possible that some PRs that have been
fixed are not listed here).
For questions related to the use of GCC, please consult these web
! pages and the [28]GCC manuals. If that fails, the
! [29]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [30]gcc@gcc.gnu.org. All of [31]our lists have public
archives.
! Copyright (C) [32]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [33]maintained by the GCC team. Last modified
! 2018-12-06[34].
References
--- 3244,3270 ----
not be complete (that is, it is possible that some PRs that have been
fixed are not listed here).
+ GCC 7.5
+
+ This is the [28]list of problem reports (PRs) from GCC's bug tracking
+ system that are known to be fixed in the 7.5 release. This list might
+ not be complete (that is, it is possible that some PRs that have been
+ fixed are not listed here).
+
For questions related to the use of GCC, please consult these web
! pages and the [29]GCC manuals. If that fails, the
! [30]gcc-help@gcc.gnu.org mailing list might help. Comments on these
web pages and the development of GCC are welcome on our developer
! list at [31]gcc@gcc.gnu.org. All of [32]our lists have public
archives.
! Copyright (C) [33]Free Software Foundation, Inc. Verbatim copying and
distribution of this entire article is permitted in any medium,
provided this notice is preserved.
! These pages are [34]maintained by the GCC team. Last modified
! 2019-11-28[35].
References
*************** References
*** 3232,3244 ****
25. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=7.3
26. https://www.gaisler.com/index.php/information/app-tech-notes
27. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=7.4
! 28. https://gcc.gnu.org/onlinedocs/
! 29. mailto:gcc-help@gcc.gnu.org
! 30. mailto:gcc@gcc.gnu.org
! 31. https://gcc.gnu.org/lists.html
! 32. https://www.fsf.org/
! 33. https://gcc.gnu.org/about.html
! 34. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-6/index.html
GCC 6 Release Series
--- 3295,3308 ----
25. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=7.3
26. https://www.gaisler.com/index.php/information/app-tech-notes
27. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=7.4
! 28. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=7.5
! 29. https://gcc.gnu.org/onlinedocs/
! 30. mailto:gcc-help@gcc.gnu.org
! 31. mailto:gcc@gcc.gnu.org
! 32. https://gcc.gnu.org/lists.html
! 33. https://www.fsf.org/
! 34. https://gcc.gnu.org/about.html
! 35. http://validator.w3.org/check/referer
======================================================================
http://gcc.gnu.org/gcc-6/index.html
GCC 6 Release Series
*************** References and Acknowledgements
*** 3287,3293 ****
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our SVN server.
For questions related to the use of GCC, please consult these web
--- 3351,3358 ----
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 3302,3308 ****
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2019-06-09[24].
References
--- 3367,3373 ----
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2020-01-14[24].
References
*************** References
*** 3322,3328 ****
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/svn.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
--- 3387,3393 ----
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/git.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
*************** Operating Systems
*** 4040,4046 ****
provided this notice is preserved.
These pages are [32]maintained by the GCC team. Last modified
! 2018-10-31[33].
References
--- 4105,4111 ----
provided this notice is preserved.
These pages are [32]maintained by the GCC team. Last modified
! 2019-11-28[33].
References
*************** References and Acknowledgements
*** 4125,4131 ****
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our SVN server.
For questions related to the use of GCC, please consult these web
--- 4190,4197 ----
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 4140,4146 ****
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2019-06-09[24].
References
--- 4206,4212 ----
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2020-01-14[24].
References
*************** References
*** 4160,4166 ****
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/svn.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
--- 4226,4232 ----
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/git.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
*************** Target Specific Changes
*** 5050,5056 ****
provided this notice is preserved.
These pages are [51]maintained by the GCC team. Last modified
! 2018-09-30[52].
References
--- 5116,5122 ----
provided this notice is preserved.
These pages are [51]maintained by the GCC team. Last modified
! 2019-11-28[52].
References
*************** References and Acknowledgements
*** 5154,5160 ****
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our SVN server.
For questions related to the use of GCC, please consult these web
--- 5220,5227 ----
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 5169,5175 ****
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2019-06-09[24].
References
--- 5236,5242 ----
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2020-01-14[24].
References
*************** References
*** 5189,5195 ****
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/svn.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
--- 5256,5262 ----
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/git.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
*************** GCC 4.9.4
*** 5808,5814 ****
provided this notice is preserved.
These pages are [34]maintained by the GCC team. Last modified
! 2018-12-01[35].
References
--- 5875,5881 ----
provided this notice is preserved.
These pages are [34]maintained by the GCC team. Last modified
! 2019-11-28[35].
References
*************** References and Acknowledgements
*** 5898,5904 ****
For additional information about GCC please refer to the [16]GCC
project web site or contact the [17]GCC development mailing list.
! To obtain GCC please use [18]our mirror sites or [19]our SVN server.
For questions related to the use of GCC, please consult these web
--- 5965,5972 ----
For additional information about GCC please refer to the [16]GCC
project web site or contact the [17]GCC development mailing list.
! To obtain GCC please use [18]our mirror sites or [19]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 5913,5919 ****
provided this notice is preserved.
These pages are [25]maintained by the GCC team. Last modified
! 2019-06-09[26].
References
--- 5981,5987 ----
provided this notice is preserved.
These pages are [25]maintained by the GCC team. Last modified
! 2020-01-14[26].
References
*************** References
*** 5935,5941 ****
16. http://gcc.gnu.org/index.html
17. mailto:gcc@gcc.gnu.org
18. http://gcc.gnu.org/mirrors.html
! 19. http://gcc.gnu.org/svn.html
20. https://gcc.gnu.org/onlinedocs/
21. mailto:gcc-help@gcc.gnu.org
22. mailto:gcc@gcc.gnu.org
--- 6003,6009 ----
16. http://gcc.gnu.org/index.html
17. mailto:gcc@gcc.gnu.org
18. http://gcc.gnu.org/mirrors.html
! 19. http://gcc.gnu.org/git.html
20. https://gcc.gnu.org/onlinedocs/
21. mailto:gcc-help@gcc.gnu.org
22. mailto:gcc@gcc.gnu.org
*************** GCC 4.8.5
*** 6668,6674 ****
provided this notice is preserved.
These pages are [43]maintained by the GCC team. Last modified
! 2018-09-30[44].
References
--- 6736,6742 ----
provided this notice is preserved.
These pages are [43]maintained by the GCC team. Last modified
! 2019-11-28[44].
References
*************** References and Acknowledgements
*** 6764,6770 ****
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our SVN server.
For questions related to the use of GCC, please consult these web
--- 6832,6839 ----
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 6779,6785 ****
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2019-06-09[24].
References
--- 6848,6854 ----
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2020-01-14[24].
References
*************** References
*** 6799,6805 ****
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/svn.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
--- 6868,6874 ----
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/git.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
*************** GCC 4.7.4
*** 7600,7606 ****
provided this notice is preserved.
These pages are [54]maintained by the GCC team. Last modified
! 2019-07-10[55].
References
--- 7669,7675 ----
provided this notice is preserved.
These pages are [54]maintained by the GCC team. Last modified
! 2019-11-28[55].
References
*************** References and Acknowledgements
*** 7707,7713 ****
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our SVN server.
For questions related to the use of GCC, please consult these web
--- 7776,7783 ----
For additional information about GCC please refer to the [14]GCC
project web site or contact the [15]GCC development mailing list.
! To obtain GCC please use [16]our mirror sites or [17]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 7722,7728 ****
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2019-06-09[24].
References
--- 7792,7798 ----
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2020-01-14[24].
References
*************** References
*** 7742,7748 ****
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/svn.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
--- 7812,7818 ----
14. http://gcc.gnu.org/index.html
15. mailto:gcc@gcc.gnu.org
16. http://gcc.gnu.org/mirrors.html
! 17. http://gcc.gnu.org/git.html
18. https://gcc.gnu.org/onlinedocs/
19. mailto:gcc-help@gcc.gnu.org
20. mailto:gcc@gcc.gnu.org
*************** GCC 4.6.4
*** 8646,8652 ****
provided this notice is preserved.
These pages are [29]maintained by the GCC team. Last modified
! 2018-09-30[30].
References
--- 8716,8722 ----
provided this notice is preserved.
These pages are [29]maintained by the GCC team. Last modified
! 2019-11-28[30].
References
*************** References and Acknowledgements
*** 8728,8734 ****
For additional information about GCC please refer to the [9]GCC project
web site or contact the [10]GCC development mailing list.
! To obtain GCC please use [11]our mirror sites or [12]our SVN server.
For questions related to the use of GCC, please consult these web
--- 8798,8805 ----
For additional information about GCC please refer to the [9]GCC project
web site or contact the [10]GCC development mailing list.
! To obtain GCC please use [11]our mirror sites or [12]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 8743,8749 ****
provided this notice is preserved.
These pages are [18]maintained by the GCC team. Last modified
! 2019-06-09[19].
References
--- 8814,8820 ----
provided this notice is preserved.
These pages are [18]maintained by the GCC team. Last modified
! 2020-01-14[19].
References
*************** References
*** 8758,8764 ****
9. http://gcc.gnu.org/index.html
10. mailto:gcc@gcc.gnu.org
11. http://gcc.gnu.org/mirrors.html
! 12. http://gcc.gnu.org/svn.html
13. https://gcc.gnu.org/onlinedocs/
14. mailto:gcc-help@gcc.gnu.org
15. mailto:gcc@gcc.gnu.org
--- 8829,8835 ----
9. http://gcc.gnu.org/index.html
10. mailto:gcc@gcc.gnu.org
11. http://gcc.gnu.org/mirrors.html
! 12. http://gcc.gnu.org/git.html
13. https://gcc.gnu.org/onlinedocs/
14. mailto:gcc-help@gcc.gnu.org
15. mailto:gcc@gcc.gnu.org
*************** GCC 4.5.4
*** 9415,9421 ****
provided this notice is preserved.
These pages are [32]maintained by the GCC team. Last modified
! 2018-09-30[33].
References
--- 9486,9492 ----
provided this notice is preserved.
These pages are [32]maintained by the GCC team. Last modified
! 2019-11-28[33].
References
*************** References and Acknowledgements
*** 9509,9515 ****
For additional information about GCC please refer to the [12]GCC
project web site or contact the [13]GCC development mailing list.
! To obtain GCC please use [14]our mirror sites or [15]our SVN server.
For questions related to the use of GCC, please consult these web
--- 9580,9587 ----
For additional information about GCC please refer to the [12]GCC
project web site or contact the [13]GCC development mailing list.
! To obtain GCC please use [14]our mirror sites or [15]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 9524,9530 ****
provided this notice is preserved.
These pages are [21]maintained by the GCC team. Last modified
! 2019-06-09[22].
References
--- 9596,9602 ----
provided this notice is preserved.
These pages are [21]maintained by the GCC team. Last modified
! 2020-01-14[22].
References
*************** References
*** 9542,9548 ****
12. http://gcc.gnu.org/index.html
13. mailto:gcc@gcc.gnu.org
14. http://gcc.gnu.org/mirrors.html
! 15. http://gcc.gnu.org/svn.html
16. https://gcc.gnu.org/onlinedocs/
17. mailto:gcc-help@gcc.gnu.org
18. mailto:gcc@gcc.gnu.org
--- 9614,9620 ----
12. http://gcc.gnu.org/index.html
13. mailto:gcc@gcc.gnu.org
14. http://gcc.gnu.org/mirrors.html
! 15. http://gcc.gnu.org/git.html
16. https://gcc.gnu.org/onlinedocs/
17. mailto:gcc-help@gcc.gnu.org
18. mailto:gcc@gcc.gnu.org
*************** GCC 4.4.7
*** 10154,10160 ****
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2018-09-30[24].
References
--- 10226,10232 ----
provided this notice is preserved.
These pages are [23]maintained by the GCC team. Last modified
! 2019-11-28[24].
References
*************** References and Acknowledgements
*** 10236,10242 ****
For additional information about GCC please refer to the [11]GCC
project web site or contact the [12]GCC development mailing list.
! To obtain GCC please use [13]our mirror sites or [14]our SVN server.
For questions related to the use of GCC, please consult these web
--- 10308,10315 ----
For additional information about GCC please refer to the [11]GCC
project web site or contact the [12]GCC development mailing list.
! To obtain GCC please use [13]our mirror sites or [14]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 10251,10257 ****
provided this notice is preserved.
These pages are [20]maintained by the GCC team. Last modified
! 2019-06-09[21].
References
--- 10324,10330 ----
provided this notice is preserved.
These pages are [20]maintained by the GCC team. Last modified
! 2020-01-14[21].
References
*************** References
*** 10268,10274 ****
11. http://gcc.gnu.org/index.html
12. mailto:gcc@gcc.gnu.org
13. http://gcc.gnu.org/mirrors.html
! 14. http://gcc.gnu.org/svn.html
15. https://gcc.gnu.org/onlinedocs/
16. mailto:gcc-help@gcc.gnu.org
17. mailto:gcc@gcc.gnu.org
--- 10341,10347 ----
11. http://gcc.gnu.org/index.html
12. mailto:gcc@gcc.gnu.org
13. http://gcc.gnu.org/mirrors.html
! 14. http://gcc.gnu.org/git.html
15. https://gcc.gnu.org/onlinedocs/
16. mailto:gcc-help@gcc.gnu.org
17. mailto:gcc@gcc.gnu.org
*************** GCC 4.3.6
*** 11056,11062 ****
provided this notice is preserved.
These pages are [30]maintained by the GCC team. Last modified
! 2018-09-30[31].
References
--- 11129,11135 ----
provided this notice is preserved.
These pages are [30]maintained by the GCC team. Last modified
! 2019-11-28[31].
References
*************** References and Acknowledgements
*** 11139,11145 ****
For additional information about GCC please refer to the [9]GCC project
web site or contact the [10]GCC development mailing list.
! To obtain GCC please use [11]our mirror sites or [12]our SVN server.
For questions related to the use of GCC, please consult these web
--- 11212,11219 ----
For additional information about GCC please refer to the [9]GCC project
web site or contact the [10]GCC development mailing list.
! To obtain GCC please use [11]our mirror sites or [12]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 11154,11160 ****
provided this notice is preserved.
These pages are [18]maintained by the GCC team. Last modified
! 2019-06-09[19].
References
--- 11228,11234 ----
provided this notice is preserved.
These pages are [18]maintained by the GCC team. Last modified
! 2020-01-14[19].
References
*************** References
*** 11169,11175 ****
9. http://gcc.gnu.org/index.html
10. mailto:gcc@gcc.gnu.org
11. http://gcc.gnu.org/mirrors.html
! 12. http://gcc.gnu.org/svn.html
13. https://gcc.gnu.org/onlinedocs/
14. mailto:gcc-help@gcc.gnu.org
15. mailto:gcc@gcc.gnu.org
--- 11243,11249 ----
9. http://gcc.gnu.org/index.html
10. mailto:gcc@gcc.gnu.org
11. http://gcc.gnu.org/mirrors.html
! 12. http://gcc.gnu.org/git.html
13. https://gcc.gnu.org/onlinedocs/
14. mailto:gcc-help@gcc.gnu.org
15. mailto:gcc@gcc.gnu.org
*************** Other significant improvements
*** 11482,11488 ****
provided this notice is preserved.
These pages are [11]maintained by the GCC team. Last modified
! 2018-09-30[12].
References
--- 11556,11562 ----
provided this notice is preserved.
These pages are [11]maintained by the GCC team. Last modified
! 2019-11-28[12].
References
*************** References and Acknowledgements
*** 11540,11546 ****
For additional information about GCC please refer to the [7]GCC project
web site or contact the [8]GCC development mailing list.
! To obtain GCC please use [9]our mirror sites or [10]our SVN server.
For questions related to the use of GCC, please consult these web
--- 11614,11621 ----
For additional information about GCC please refer to the [7]GCC project
web site or contact the [8]GCC development mailing list.
! To obtain GCC please use [9]our mirror sites or [10]our version control
! system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 11555,11561 ****
provided this notice is preserved.
These pages are [16]maintained by the GCC team. Last modified
! 2019-06-09[17].
References
--- 11630,11636 ----
provided this notice is preserved.
These pages are [16]maintained by the GCC team. Last modified
! 2020-01-14[17].
References
*************** References
*** 11568,11574 ****
7. http://gcc.gnu.org/index.html
8. mailto:gcc@gcc.gnu.org
9. http://gcc.gnu.org/mirrors.html
! 10. http://gcc.gnu.org/svn.html
11. https://gcc.gnu.org/onlinedocs/
12. mailto:gcc-help@gcc.gnu.org
13. mailto:gcc@gcc.gnu.org
--- 11643,11649 ----
7. http://gcc.gnu.org/index.html
8. mailto:gcc@gcc.gnu.org
9. http://gcc.gnu.org/mirrors.html
! 10. http://gcc.gnu.org/git.html
11. https://gcc.gnu.org/onlinedocs/
12. mailto:gcc-help@gcc.gnu.org
13. mailto:gcc@gcc.gnu.org
*************** GCC 4.1.2
*** 12118,12124 ****
provided this notice is preserved.
These pages are [12]maintained by the GCC team. Last modified
! 2018-09-30[13].
References
--- 12193,12199 ----
provided this notice is preserved.
These pages are [12]maintained by the GCC team. Last modified
! 2019-11-28[13].
References
*************** References and Acknowledgements
*** 12183,12189 ****
For additional information about GCC please refer to the [9]GCC project
web site or contact the [10]GCC development mailing list.
! To obtain GCC please use [11]our mirror sites, or [12]our SVN server.
For questions related to the use of GCC, please consult these web
--- 12258,12265 ----
For additional information about GCC please refer to the [9]GCC project
web site or contact the [10]GCC development mailing list.
! To obtain GCC please use [11]our mirror sites, or [12]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 12198,12204 ****
provided this notice is preserved.
These pages are [18]maintained by the GCC team. Last modified
! 2019-06-09[19].
References
--- 12274,12280 ----
provided this notice is preserved.
These pages are [18]maintained by the GCC team. Last modified
! 2020-01-14[19].
References
*************** References
*** 12213,12219 ****
9. http://gcc.gnu.org/index.html
10. mailto:gcc@gcc.gnu.org
11. http://gcc.gnu.org/mirrors.html
! 12. http://gcc.gnu.org/svn.html
13. https://gcc.gnu.org/onlinedocs/
14. mailto:gcc-help@gcc.gnu.org
15. mailto:gcc@gcc.gnu.org
--- 12289,12295 ----
9. http://gcc.gnu.org/index.html
10. mailto:gcc@gcc.gnu.org
11. http://gcc.gnu.org/mirrors.html
! 12. http://gcc.gnu.org/git.html
13. https://gcc.gnu.org/onlinedocs/
14. mailto:gcc-help@gcc.gnu.org
15. mailto:gcc@gcc.gnu.org
*************** GCC 4.0.4
*** 12724,12730 ****
provided this notice is preserved.
These pages are [21]maintained by the GCC team. Last modified
! 2018-09-30[22].
References
--- 12800,12806 ----
provided this notice is preserved.
These pages are [21]maintained by the GCC team. Last modified
! 2019-11-28[22].
References
*************** References and Acknowledgements
*** 12809,12815 ****
For additional information about GCC please refer to the [13]GCC
project web site or contact the [14]GCC development mailing list.
! To obtain GCC please use [15]our mirror sites, or [16]our SVN server.
For questions related to the use of GCC, please consult these web
--- 12885,12892 ----
For additional information about GCC please refer to the [13]GCC
project web site or contact the [14]GCC development mailing list.
! To obtain GCC please use [15]our mirror sites, or [16]our version
! control system.
For questions related to the use of GCC, please consult these web
*************** References and Acknowledgements
*** 12824,12830 ****
provided this notice is preserved.
These pages are [22]maintained by the GCC team. Last modified
! 2019-06-09[23].
References
--- 12901,12907 ----
provided this notice is preserved.
These pages are [22]maintained by the GCC team. Last modified
! 2020-01-14[23].
References
*************** References
*** 12843,12849 ****
13. http://gcc.gnu.org/index.html
14. mailto:gcc@gcc.gnu.org
15. http://gcc.gnu.org/mirrors.html
! 16. http://gcc.gnu.org/svn.html
17. https://gcc.gnu.org/onlinedocs/
18. mailto:gcc-help@gcc.gnu.org
19. mailto:gcc@gcc.gnu.org
--- 12920,12926 ----
13. http://gcc.gnu.org/index.html
14. mailto:gcc@gcc.gnu.org
15. http://gcc.gnu.org/mirrors.html
! 16. http://gcc.gnu.org/git.html
17. https://gcc.gnu.org/onlinedocs/
18. mailto:gcc-help@gcc.gnu.org
19. mailto:gcc@gcc.gnu.org
*************** GCC 3.4.6
*** 14612,14618 ****
provided this notice is preserved.
These pages are [416]maintained by the GCC team. Last modified
! 2018-09-30[417].
References
--- 14689,14695 ----
provided this notice is preserved.
These pages are [416]maintained by the GCC team. Last modified
! 2019-11-28[417].
References
*************** References and Acknowledgements
*** 15108,15114 ****
provided this notice is preserved.
These pages are [21]maintained by the GCC team. Last modified
! 2019-06-09[22].
References
--- 15185,15191 ----
provided this notice is preserved.
These pages are [21]maintained by the GCC team. Last modified
! 2019-11-28[22].
References
*************** GCC 3.3.6
*** 16483,16489 ****
provided this notice is preserved.
These pages are [556]maintained by the GCC team. Last modified
! 2018-09-30[557].
References
--- 16560,16566 ----
provided this notice is preserved.
These pages are [556]maintained by the GCC team. Last modified
! 2019-11-28[557].
References
*************** References and Acknowledgements
*** 17113,17119 ****
provided this notice is preserved.
These pages are [17]maintained by the GCC team. Last modified
! 2019-06-09[18].
References
--- 17190,17196 ----
provided this notice is preserved.
These pages are [17]maintained by the GCC team. Last modified
! 2019-11-28[18].
References
*************** GCC 3.2
*** 17736,17742 ****
provided this notice is preserved.
These pages are [251]maintained by the GCC team. Last modified
! 2018-09-30[252].
References
--- 17813,17819 ----
provided this notice is preserved.
These pages are [251]maintained by the GCC team. Last modified
! 2019-11-28[252].
References
*************** http://gcc.gnu.org/gcc-3.1/index.html
*** 18041,18047 ****
provided this notice is preserved.
These pages are [14]maintained by the GCC team. Last modified
! 2019-06-09[15].
References
--- 18118,18124 ----
provided this notice is preserved.
These pages are [14]maintained by the GCC team. Last modified
! 2019-11-28[15].
References
*************** Documentation improvements
*** 18395,18401 ****
provided this notice is preserved.
These pages are [13]maintained by the GCC team. Last modified
! 2018-09-30[14].
References
--- 18472,18478 ----
provided this notice is preserved.
These pages are [13]maintained by the GCC team. Last modified
! 2019-11-28[14].
References
*************** Previous 3.0.x Releases
*** 18469,18475 ****
provided this notice is preserved.
These pages are [14]maintained by the GCC team. Last modified
! 2019-06-09[15].
References
--- 18546,18552 ----
provided this notice is preserved.
These pages are [14]maintained by the GCC team. Last modified
! 2019-11-28[15].
References
*************** Other significant improvements
*** 18660,18666 ****
provided this notice is preserved.
These pages are [18]maintained by the GCC team. Last modified
! 2018-09-30[19].
References
--- 18737,18743 ----
provided this notice is preserved.
These pages are [18]maintained by the GCC team. Last modified
! 2019-11-28[19].
References
*************** http://gcc.gnu.org/gcc-3.0/caveats.html
*** 18731,18737 ****
provided this notice is preserved.
These pages are [7]maintained by the GCC team. Last modified
! 2018-09-30[8].
References
--- 18808,18814 ----
provided this notice is preserved.
These pages are [7]maintained by the GCC team. Last modified
! 2019-11-28[8].
References
*************** References and Acknowledgements
*** 18813,18819 ****
provided this notice is preserved.
These pages are [15]maintained by the GCC team. Last modified
! 2019-06-09[16].
References
--- 18890,18896 ----
provided this notice is preserved.
These pages are [15]maintained by the GCC team. Last modified
! 2019-11-28[16].
References
*************** Additional Changes in GCC 2.95.3
*** 19078,19084 ****
provided this notice is preserved.
These pages are [22]maintained by the GCC team. Last modified
! 2018-09-30[23].
References
--- 19155,19161 ----
provided this notice is preserved.
These pages are [22]maintained by the GCC team. Last modified
! 2019-11-28[23].
References
*************** http://gcc.gnu.org/gcc-2.95/caveats.html
*** 19161,19167 ****
provided this notice is preserved.
These pages are [7]maintained by the GCC team. Last modified
! 2018-09-30[8].
References
--- 19238,19244 ----
provided this notice is preserved.
These pages are [7]maintained by the GCC team. Last modified
! 2019-11-28[8].
References
*************** http://gcc.gnu.org/egcs-1.1/index.html
*** 19382,19388 ****
provided this notice is preserved.
These pages are [15]maintained by the GCC team. Last modified
! 2018-09-30[16].
References
--- 19459,19465 ----
provided this notice is preserved.
These pages are [15]maintained by the GCC team. Last modified
! 2019-11-28[16].
References
*************** http://gcc.gnu.org/egcs-1.1/features.htm
*** 19481,19487 ****
provided this notice is preserved.
These pages are [10]maintained by the GCC team. Last modified
! 2018-09-30[11].
References
--- 19558,19564 ----
provided this notice is preserved.
These pages are [10]maintained by the GCC team. Last modified
! 2019-11-28[11].
References
*************** http://gcc.gnu.org/egcs-1.1/caveats.html
*** 19535,19541 ****
provided this notice is preserved.
These pages are [6]maintained by the GCC team. Last modified
! 2018-09-30[7].
References
--- 19612,19618 ----
provided this notice is preserved.
These pages are [6]maintained by the GCC team. Last modified
! 2019-11-28[7].
References
*************** http://gcc.gnu.org/egcs-1.0/index.html
*** 19731,19737 ****
provided this notice is preserved.
These pages are [10]maintained by the GCC team. Last modified
! 2018-09-30[11].
References
--- 19808,19814 ----
provided this notice is preserved.
These pages are [10]maintained by the GCC team. Last modified
! 2019-11-28[11].
References
*************** http://gcc.gnu.org/egcs-1.0/features.htm
*** 19797,19803 ****
provided this notice is preserved.
These pages are [8]maintained by the GCC team. Last modified
! 2018-09-30[9].
References
--- 19874,19880 ----
provided this notice is preserved.
These pages are [8]maintained by the GCC team. Last modified
! 2019-11-28[9].
References
*************** http://gcc.gnu.org/egcs-1.0/caveats.html
*** 19850,19856 ****
provided this notice is preserved.
These pages are [6]maintained by the GCC team. Last modified
! 2018-09-30[7].
References
--- 19927,19933 ----
provided this notice is preserved.
These pages are [6]maintained by the GCC team. Last modified
! 2019-11-28[7].
References
diff -Nrcpad gcc-9.2.0/config/ChangeLog gcc-9.3.0/config/ChangeLog
*** gcc-9.2.0/config/ChangeLog Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/config/ChangeLog Thu Mar 12 11:08:03 2020
***************
*** 1,3 ****
--- 1,7 ----
+ 2020-03-12 Release Manager
+
+ * GCC 9.3.0 released.
+
2019-08-12 Release Manager
* GCC 9.2.0 released.
diff -Nrcpad gcc-9.2.0/contrib/ChangeLog gcc-9.3.0/contrib/ChangeLog
*** gcc-9.2.0/contrib/ChangeLog Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/contrib/ChangeLog Thu Mar 12 11:08:03 2020
***************
*** 1,3 ****
--- 1,11 ----
+ 2020-03-12 Release Manager
+
+ * GCC 9.3.0 released.
+
+ 2019-08-16 Uros Bizjak
+
+ * test_summary: Do not escape "=".
+
2019-08-12 Release Manager
* GCC 9.2.0 released.
diff -Nrcpad gcc-9.2.0/contrib/header-tools/ChangeLog gcc-9.3.0/contrib/header-tools/ChangeLog
*** gcc-9.2.0/contrib/header-tools/ChangeLog Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/contrib/header-tools/ChangeLog Thu Mar 12 11:08:03 2020
***************
*** 1,3 ****
--- 1,7 ----
+ 2020-03-12 Release Manager
+
+ * GCC 9.3.0 released.
+
2019-08-12 Release Manager
* GCC 9.2.0 released.
diff -Nrcpad gcc-9.2.0/contrib/reghunt/ChangeLog gcc-9.3.0/contrib/reghunt/ChangeLog
*** gcc-9.2.0/contrib/reghunt/ChangeLog Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/contrib/reghunt/ChangeLog Thu Mar 12 11:08:03 2020
***************
*** 1,3 ****
--- 1,7 ----
+ 2020-03-12 Release Manager
+
+ * GCC 9.3.0 released.
+
2019-08-12 Release Manager
* GCC 9.2.0 released.
diff -Nrcpad gcc-9.2.0/contrib/regression/ChangeLog gcc-9.3.0/contrib/regression/ChangeLog
*** gcc-9.2.0/contrib/regression/ChangeLog Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/contrib/regression/ChangeLog Thu Mar 12 11:08:03 2020
***************
*** 1,3 ****
--- 1,7 ----
+ 2020-03-12 Release Manager
+
+ * GCC 9.3.0 released.
+
2019-08-12 Release Manager
* GCC 9.2.0 released.
diff -Nrcpad gcc-9.2.0/contrib/test_summary gcc-9.3.0/contrib/test_summary
*** gcc-9.2.0/contrib/test_summary Wed Mar 21 08:47:12 2018
--- gcc-9.3.0/contrib/test_summary Thu Mar 12 11:07:20 2020
*************** NR == 1 {
*** 127,133 ****
if (lang == "") lang = " "$2" "; else lang = " ";
}
$2 == "version" { save = $0; $1 = ""; $2 = ""; version = $0; gsub(/^ */, "", version); gsub(/\r$/, "", version); $0 = save; }
! /\===.*Summary/ { print ""; print; blanks=1; }
/tests ===/ || /^(Target|Host|Native)/ || $2 == "version" { print; blanks=1; }
/^(XPASS|FAIL|UNRESOLVED|WARNING|ERROR|# of )/ { sub ("\r", ""); print; }
/^using:/ { print ""; print; print ""; }
--- 127,133 ----
if (lang == "") lang = " "$2" "; else lang = " ";
}
$2 == "version" { save = $0; $1 = ""; $2 = ""; version = $0; gsub(/^ */, "", version); gsub(/\r$/, "", version); $0 = save; }
! /===.*Summary/ { print ""; print; blanks=1; }
/tests ===/ || /^(Target|Host|Native)/ || $2 == "version" { print; blanks=1; }
/^(XPASS|FAIL|UNRESOLVED|WARNING|ERROR|# of )/ { sub ("\r", ""); print; }
/^using:/ { print ""; print; print ""; }
diff -Nrcpad gcc-9.2.0/fixincludes/ChangeLog gcc-9.3.0/fixincludes/ChangeLog
*** gcc-9.2.0/fixincludes/ChangeLog Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/fixincludes/ChangeLog Thu Mar 12 11:08:02 2020
***************
*** 1,3 ****
--- 1,37 ----
+ 2020-03-12 Release Manager
+
+ * GCC 9.3.0 released.
+
+ 2020-02-26 Segher Boessenkool
+
+ Backport from trunk
+ 2020-02-13 Matheus Castanho
+
+ * fixinc.in: Skip machine_name fix on powerpc*-*-linux*.
+
+ 2020-01-01 John David Anglin
+
+ Backport from mainline
+ 2019-12-30 John David Anglin
+
+ PR libgomp/93066
+ * inclhack.def (hpux_c99_inttypes3): Fix defines for INTPTR_MAX
+ and UINTPTR_MAX, and missing define for SIZE_MAX.
+ * fixincl.x: Regenerate.
+ * tests/base/inttypes.h: Update for above fix.
+
+ 2019-08-21 Iain Sandoe
+
+ Backport from mainline.
+ 2019-08-18 C.G. Dogan
+ Iain Sandoe
+
+ PR target/83531
+ * inclhack.def (darwin_api_availability): New; strip leading
+ underscores from API_XXXX defines.
+ * fixincl.x: Regenerate.
+ * tests/base/os/availability.h: New file.
+
2019-08-12 Release Manager
* GCC 9.2.0 released.
diff -Nrcpad gcc-9.2.0/fixincludes/fixinc.in gcc-9.3.0/fixincludes/fixinc.in
*** gcc-9.2.0/fixincludes/fixinc.in Fri Oct 13 15:28:41 2017
--- gcc-9.3.0/fixincludes/fixinc.in Thu Mar 12 11:07:20 2020
*************** fi
*** 136,142 ****
# disable the fix.
case "${target_canonical}" in
! *-*-vxworks*)
test -f ${MACRO_LIST} && echo > ${MACRO_LIST}
;;
esac
--- 136,142 ----
# disable the fix.
case "${target_canonical}" in
! *-*-vxworks* | powerpc*-*-linux*)
test -f ${MACRO_LIST} && echo > ${MACRO_LIST}
;;
esac
diff -Nrcpad gcc-9.2.0/fixincludes/fixincl.x gcc-9.3.0/fixincludes/fixincl.x
*** gcc-9.2.0/fixincludes/fixincl.x Sat Aug 3 19:21:08 2019
--- gcc-9.3.0/fixincludes/fixincl.x Thu Mar 12 11:07:20 2020
***************
*** 2,12 ****
*
* DO NOT EDIT THIS FILE (fixincl.x)
*
! * It has been AutoGen-ed July 7, 2019 at 11:43:37 AM by AutoGen 5.17.4
* From the definitions inclhack.def
* and the template file fixincl
*/
! /* DO NOT SVN-MERGE THIS FILE, EITHER Sun Jul 7 11:43:37 BST 2019
*
* You must regenerate it. Use the ./genfixes script.
*
--- 2,12 ----
*
* DO NOT EDIT THIS FILE (fixincl.x)
*
! * It has been AutoGen-ed January 1, 2020 at 11:59:56 AM by AutoGen 5.18.16
* From the definitions inclhack.def
* and the template file fixincl
*/
! /* DO NOT SVN-MERGE THIS FILE, EITHER Wed Jan 1 11:59:56 EST 2020
*
* You must regenerate it. Use the ./genfixes script.
*
***************
*** 15,21 ****
* certain ANSI-incompatible system header files which are fixed to work
* correctly with ANSI C and placed in a directory that GNU C will search.
*
! * This file contains 255 fixup descriptions.
*
* See README for more information.
*
--- 15,21 ----
* certain ANSI-incompatible system header files which are fixed to work
* correctly with ANSI C and placed in a directory that GNU C will search.
*
! * This file contains 257 fixup descriptions.
*
* See README for more information.
*
*************** static const char* apzAab_Darwin7_9_Long
*** 269,274 ****
--- 269,324 ----
/* * * * * * * * * * * * * * * * * * * * * * * * * *
*
+ * Description of Darwin_Api_Availability fix
+ */
+ tSCC zDarwin_Api_AvailabilityName[] =
+ "darwin_api_availability";
+
+ /*
+ * File name selection pattern
+ */
+ tSCC zDarwin_Api_AvailabilityList[] =
+ "os/availability.h\0";
+ /*
+ * Machine/OS name selection pattern
+ */
+ tSCC* apzDarwin_Api_AvailabilityMachs[] = {
+ "*-*-darwin*",
+ (const char*)NULL };
+
+ /*
+ * content selection pattern - do fix if pattern found
+ */
+ tSCC zDarwin_Api_AvailabilitySelect0[] =
+ " *#define __API_AVAILABLE.*\n\
+ *#define __API_DEPRECATED.*\n\
+ *#define __API_DEPRECATED_WITH_REPLACEMENT.*\n\
+ *#define __API_UNAVAILABLE.*\n";
+
+ /*
+ * content bypass pattern - skip fix if pattern found
+ */
+ tSCC zDarwin_Api_AvailabilityBypass0[] =
+ "__IPHONE_OS_VERSION_MIN_REQUIRED";
+
+ #define DARWIN_API_AVAILABILITY_TEST_CT 2
+ static tTestDesc aDarwin_Api_AvailabilityTests[] = {
+ { TT_NEGREP, zDarwin_Api_AvailabilityBypass0, (regex_t*)NULL },
+ { TT_EGREP, zDarwin_Api_AvailabilitySelect0, (regex_t*)NULL }, };
+
+ /*
+ * Fix Command Arguments for Darwin_Api_Availability
+ */
+ static const char* apzDarwin_Api_AvailabilityPatch[] = {
+ "format",
+ " #define API_AVAILABLE(...)\n\
+ #define API_DEPRECATED(...)\n\
+ #define API_DEPRECATED_WITH_REPLACEMENT(...)\n\
+ #define API_UNAVAILABLE(...)\n",
+ (char*)NULL };
+
+ /* * * * * * * * * * * * * * * * * * * * * * * * * *
+ *
* Description of Aab_Fd_Zero_Asm_Posix_Types_H fix
*/
tSCC zAab_Fd_Zero_Asm_Posix_Types_HName[] =
*************** static const char* apzHpux_C99_Inttypes2
*** 5099,5104 ****
--- 5149,5203 ----
/* * * * * * * * * * * * * * * * * * * * * * * * * *
*
+ * Description of Hpux_C99_Inttypes3 fix
+ */
+ tSCC zHpux_C99_Inttypes3Name[] =
+ "hpux_c99_inttypes3";
+
+ /*
+ * File name selection pattern
+ */
+ tSCC zHpux_C99_Inttypes3List[] =
+ "inttypes.h\0";
+ /*
+ * Machine/OS name selection pattern
+ */
+ tSCC* apzHpux_C99_Inttypes3Machs[] = {
+ "hppa*-hp-hpux11*",
+ (const char*)NULL };
+
+ /*
+ * content selection pattern - do fix if pattern found
+ */
+ tSCC zHpux_C99_Inttypes3Select0[] =
+ "#define[ \t]INTPTR_MAX[ \t]*\n\
+ #define[ \t]UINTPTR_MAX[ \t]*\n";
+
+ #define HPUX_C99_INTTYPES3_TEST_CT 1
+ static tTestDesc aHpux_C99_Inttypes3Tests[] = {
+ { TT_EGREP, zHpux_C99_Inttypes3Select0, (regex_t*)NULL }, };
+
+ /*
+ * Fix Command Arguments for Hpux_C99_Inttypes3
+ */
+ static const char* apzHpux_C99_Inttypes3Patch[] = {
+ "format",
+ "#undef SIZE_MAX\n\
+ #define SIZE_MAX __SIZE_MAX__\n\
+ #ifdef __INTPTR_MAX__\n\
+ # undef INTPTR_MAX\n\
+ # define INTPTR_MAX __INTPTR_MAX__\n\
+ # undef INTPTR_MIN\n\
+ # define INTPTR_MIN (-INTPTR_MAX - 1)\n\
+ #endif\n\
+ #ifdef __UINTPTR_MAX__\n\
+ # undef UINTPTR_MAX\n\
+ # define UINTPTR_MAX __UINTPTR_MAX__\n\
+ #endif\n",
+ (char*)NULL };
+
+ /* * * * * * * * * * * * * * * * * * * * * * * * * *
+ *
* Description of Hpux_Ctype_Macros fix
*/
tSCC zHpux_Ctype_MacrosName[] =
*************** static const char* apzX11_SprintfPatch[]
*** 10346,10354 ****
*
* List of all fixes
*/
! #define REGEX_COUNT 293
#define MACH_LIST_SIZE_LIMIT 187
! #define FIX_COUNT 255
/*
* Enumerate the fixes
--- 10445,10453 ----
*
* List of all fixes
*/
! #define REGEX_COUNT 296
#define MACH_LIST_SIZE_LIMIT 187
! #define FIX_COUNT 257
/*
* Enumerate the fixes
*************** typedef enum {
*** 10357,10362 ****
--- 10456,10462 ----
AAB_AIX_STDIO_FIXIDX,
AAB_AIX_FCNTL_FIXIDX,
AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_FIXIDX,
+ DARWIN_API_AVAILABILITY_FIXIDX,
AAB_FD_ZERO_ASM_POSIX_TYPES_H_FIXIDX,
AAB_FD_ZERO_GNU_TYPES_H_FIXIDX,
AAB_FD_ZERO_SELECTBITS_H_FIXIDX,
*************** typedef enum {
*** 10476,10481 ****
--- 10576,10582 ----
HPUX_C99_INTPTR_FIXIDX,
HPUX_C99_INTTYPES_FIXIDX,
HPUX_C99_INTTYPES2_FIXIDX,
+ HPUX_C99_INTTYPES3_FIXIDX,
HPUX_CTYPE_MACROS_FIXIDX,
HPUX_EXTERN_ERRNO_FIXIDX,
HPUX_HTONL_FIXIDX,
*************** tFixDesc fixDescList[ FIX_COUNT ] = {
*** 10627,10632 ****
--- 10728,10738 ----
AAB_DARWIN7_9_LONG_DOUBLE_FUNCS_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
aAab_Darwin7_9_Long_Double_FuncsTests, apzAab_Darwin7_9_Long_Double_FuncsPatch, 0 },
+ { zDarwin_Api_AvailabilityName, zDarwin_Api_AvailabilityList,
+ apzDarwin_Api_AvailabilityMachs,
+ DARWIN_API_AVAILABILITY_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
+ aDarwin_Api_AvailabilityTests, apzDarwin_Api_AvailabilityPatch, 0 },
+
{ zAab_Fd_Zero_Asm_Posix_Types_HName, zAab_Fd_Zero_Asm_Posix_Types_HList,
apzAab_Fd_Zero_Asm_Posix_Types_HMachs,
AAB_FD_ZERO_ASM_POSIX_TYPES_H_TEST_CT, FD_MACH_ONLY | FD_REPLACEMENT,
*************** tFixDesc fixDescList[ FIX_COUNT ] = {
*** 11222,11227 ****
--- 11328,11338 ----
HPUX_C99_INTTYPES2_TEST_CT, FD_MACH_ONLY,
aHpux_C99_Inttypes2Tests, apzHpux_C99_Inttypes2Patch, 0 },
+ { zHpux_C99_Inttypes3Name, zHpux_C99_Inttypes3List,
+ apzHpux_C99_Inttypes3Machs,
+ HPUX_C99_INTTYPES3_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
+ aHpux_C99_Inttypes3Tests, apzHpux_C99_Inttypes3Patch, 0 },
+
{ zHpux_Ctype_MacrosName, zHpux_Ctype_MacrosList,
apzHpux_Ctype_MacrosMachs,
HPUX_CTYPE_MACROS_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE,
diff -Nrcpad gcc-9.2.0/fixincludes/inclhack.def gcc-9.3.0/fixincludes/inclhack.def
*** gcc-9.2.0/fixincludes/inclhack.def Sat Aug 3 19:21:08 2019
--- gcc-9.3.0/fixincludes/inclhack.def Thu Mar 12 11:07:20 2020
*************** fix = {
*** 195,200 ****
--- 195,227 ----
};
/*
+ * SDKs for 10.13 and 10.14 omit the definitions for API_AVAILABLE where
+ * __attribute__((availability)) is not supported.
+ */
+ fix = {
+ hackname = darwin_api_availability;
+ mach = "*-*-darwin*";
+ files = os/availability.h;
+ bypass = "__IPHONE_OS_VERSION_MIN_REQUIRED";
+ select =
+ " *#define __API_AVAILABLE.*\n"
+ " *#define __API_DEPRECATED.*\n"
+ " *#define __API_DEPRECATED_WITH_REPLACEMENT.*\n"
+ " *#define __API_UNAVAILABLE.*\n";
+ c_fix = format;
+ c_fix_arg =
+ " #define API_AVAILABLE(...)\n"
+ " #define API_DEPRECATED(...)\n"
+ " #define API_DEPRECATED_WITH_REPLACEMENT(...)\n"
+ " #define API_UNAVAILABLE(...)\n";
+ test_text =
+ "#define __API_AVAILABLE(...)\n"
+ "#define __API_DEPRECATED(...)\n"
+ "#define __API_DEPRECATED_WITH_REPLACEMENT(...)\n"
+ "#define __API_UNAVAILABLE(...)\n";
+ };
+
+ /*
* This fixes __FD_ZERO bug for linux 2.x.y (x <= 2 && y <= some n)
*/
fix = {
*************** fix = {
*** 2561,2566 ****
--- 2588,2619 ----
};
/*
+ * Fix broken and missing defines in inttypes.h
+ */
+ fix = {
+ hackname = hpux_c99_inttypes3;
+ mach = "hppa*-hp-hpux11*";
+ files = inttypes.h;
+ select = "#define[ \t]INTPTR_MAX[ \t]*\n"
+ "#define[ \t]UINTPTR_MAX[ \t]*\n";
+ c_fix = format;
+ c_fix_arg = "#undef SIZE_MAX\n"
+ "#define SIZE_MAX __SIZE_MAX__\n"
+ "#ifdef __INTPTR_MAX__\n"
+ "# undef INTPTR_MAX\n"
+ "# define INTPTR_MAX __INTPTR_MAX__\n"
+ "# undef INTPTR_MIN\n"
+ "# define INTPTR_MIN (-INTPTR_MAX - 1)\n"
+ "#endif\n"
+ "#ifdef __UINTPTR_MAX__\n"
+ "# undef UINTPTR_MAX\n"
+ "# define UINTPTR_MAX __UINTPTR_MAX__\n"
+ "#endif\n";
+ test_text = "#define INTPTR_MAX\n"
+ "#define UINTPTR_MAX\n";
+ };
+
+ /*
* Fix hpux broken ctype macros
*/
fix = {
diff -Nrcpad gcc-9.2.0/fixincludes/tests/base/inttypes.h gcc-9.3.0/fixincludes/tests/base/inttypes.h
*** gcc-9.2.0/fixincludes/tests/base/inttypes.h Tue Apr 28 15:17:49 2009
--- gcc-9.3.0/fixincludes/tests/base/inttypes.h Thu Mar 12 11:07:20 2020
***************
*** 16,18 ****
--- 16,35 ----
#define UINT32_C(__c) __CONCAT__(__c,u)
#endif /* HPUX_C99_INTTYPES_CHECK */
+
+
+ #if defined( HPUX_C99_INTTYPES3_CHECK )
+ #undef SIZE_MAX
+ #define SIZE_MAX __SIZE_MAX__
+ #ifdef __INTPTR_MAX__
+ # undef INTPTR_MAX
+ # define INTPTR_MAX __INTPTR_MAX__
+ # undef INTPTR_MIN
+ # define INTPTR_MIN (-INTPTR_MAX - 1)
+ #endif
+ #ifdef __UINTPTR_MAX__
+ # undef UINTPTR_MAX
+ # define UINTPTR_MAX __UINTPTR_MAX__
+ #endif
+
+ #endif /* HPUX_C99_INTTYPES3_CHECK */
diff -Nrcpad gcc-9.2.0/fixincludes/tests/base/os/availability.h gcc-9.3.0/fixincludes/tests/base/os/availability.h
*** gcc-9.2.0/fixincludes/tests/base/os/availability.h Thu Jan 1 00:00:00 1970
--- gcc-9.3.0/fixincludes/tests/base/os/availability.h Thu Mar 12 11:07:20 2020
***************
*** 0 ****
--- 1,18 ----
+ /* DO NOT EDIT THIS FILE.
+
+ It has been auto-edited by fixincludes from:
+
+ "fixinc/tests/inc/os/availability.h"
+
+ This had to be done to correct non-standard usages in the
+ original, manufacturer supplied header file. */
+
+
+
+ #if defined( DARWIN_API_AVAILABILITY_CHECK )
+ #define API_AVAILABLE(...)
+ #define API_DEPRECATED(...)
+ #define API_DEPRECATED_WITH_REPLACEMENT(...)
+ #define API_UNAVAILABLE(...)
+
+ #endif /* DARWIN_API_AVAILABILITY_CHECK */
diff -Nrcpad gcc-9.2.0/gcc/BASE-VER gcc-9.3.0/gcc/BASE-VER
*** gcc-9.2.0/gcc/BASE-VER Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/gcc/BASE-VER Thu Mar 12 11:08:04 2020
***************
*** 1 ****
! 9.2.0
--- 1 ----
! 9.3.0
diff -Nrcpad gcc-9.2.0/gcc/ChangeLog gcc-9.3.0/gcc/ChangeLog
*** gcc-9.2.0/gcc/ChangeLog Mon Aug 12 07:38:49 2019
--- gcc-9.3.0/gcc/ChangeLog Thu Mar 12 11:08:03 2020
***************
*** 1,3 ****
--- 1,2355 ----
+ 2020-03-12 Release Manager
+
+ * GCC 9.3.0 released.
+
+ 2020-03-05 Jakub Jelinek
+
+ PR target/94046
+ * config/i386/avx2intrin.h (_mm_mask_i32gather_ps): Fix first cast of
+ SRC and MASK arguments to __m128 from __m128d.
+ (_mm256_mask_i32gather_ps): Fix first cast of MASK argument to __m256
+ from __m256d.
+ (_mm_mask_i64gather_ps): Fix first cast of MASK argument to __m128
+ from __m128d.
+ * config/i386/xopintrin.h (_mm_permute2_pd): Fix first cast of C
+ argument to __m128i from __m128d.
+ (_mm256_permute2_pd): Fix first cast of C argument to __m256i from
+ __m256d.
+ (_mm_permute2_ps): Fix first cast of C argument to __m128i from __m128.
+ (_mm256_permute2_ps): Fix first cast of C argument to __m256i from
+ __m256.
+
+ 2020-03-05 Richard Earnshaw
+
+ PR target/90311
+ Backport from master
+ 2019-07-18 Richard Earnshaw
+
+ * config/arm/predicates.md (arm_borrow_operation): New predicate.
+ * config/arm/arm.c (subdi3_compare1): Use CCmode for the split.
+ (arm_subdi3, subdi_di_zesidi, subdi_di_sesidi): Likewise.
+ (subdi_zesidi_zesidi): Likewise.
+ (negdi2_compare, negdi2_insn): Likewise.
+ (negdi_extensidi): Likewise.
+ (negdi_zero_extendsidi): Likewise.
+ (arm_cmpdi_insn): Likewise.
+ (subsi3_carryin): Use arm_borrow_operation.
+ (subsi3_carryin_const): Likewise.
+ (subsi3_carryin_const0): Likewise.
+ (subsi3_carryin_compare): Likewise.
+ (subsi3_carryin_compare_const): Likewise.
+ (subsi3_carryin_compare_const0): Likewise.
+ (subsi3_carryin_shift): Likewise.
+ (rsbsi3_carryin_shift): Likewise.
+ (negsi2_carryin_compare): Likewise.
+
+ 2020-03-04 Marek Polacek
+
+ Backport from mainline
+ 2020-01-26 Marek Polacek
+
+ PR sanitizer/93436
+ * sanopt.c (sanitize_rewrite_addressable_params): Avoid crash on
+ null DECL_NAME.
+
+ 2020-03-03 Jakub Jelinek
+
+ PR rtl-optimization/94002
+ * explow.c (plus_constant): Punt if cst has VOIDmode and
+ get_pool_mode is different from mode.
+
+ 2020-03-02 Jason Merrill
+
+ PR c++/92601
+ * tree.c (verify_type_variant): Only verify TYPE_NEEDS_CONSTRUCTING
+ of complete types.
+
+ 2020-02-29 Peter Bergner
+
+ Revert
+ 2020-02-20 Peter Bergner
+
+ PR target/93658
+ * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Handle VSX
+ vector modes.
+
+ 2020-02-05 Michael Meissner
+
+ PR target/93568
+ * config/rs6000/rs6000.c (get_vector_offset): Fix Q constraint assert
+ to use "mem".
+
+ Backport from master
+ 2020-02-03 Michael Meissner
+
+ * config/rs6000/rs6000.c (get_vector_offset): New helper function
+ to calculate the offset in memory from the start of a vector of a
+ particular element. Add code to keep the element number in
+ bounds if the element number is variable.
+ (rs6000_adjust_vec_address): Move calculation of offset of the
+ vector element to get_vector_offset.
+ (rs6000_split_vec_extract_var): Do not do the initial AND of
+ element here, move the code to get_vector_offset.
+
+ 2020-01-06 Michael Meissner
+
+ * config/rs6000/vsx.md (vsx_extract__var, VSX_D iterator):
+ Use 'Q' for doing vector extract from memory.
+ (vsx_extract_v4sf_var): Use 'Q' for doing vector extract from
+ memory.
+ (vsx_extract__var, VSX_EXTRACT_I iterator): Use 'Q' for
+ doing vector extract from memory.
+ (vsx_extract__mode_var): Use 'Q' for doing vector
+ extract from memory.
+
+ 2020-02-28 Martin Liska
+
+ Backport from mainline
+ 2020-02-28 Martin Liska
+
+ PR other/93965
+ * configure.ac: Improve detection of ld_date by requiring
+ either two dashes or none.
+ * configure: Regenerate.
+
+ 2020-02-27 Jakub Jelinek
+
+ PR c/93949
+ * gimplify.c (gimplify_init_constructor): Don't promote readonly
+ DECL_REGISTER variables to TREE_STATIC.
+
+ 2020-02-27 Jakub Jelinek
+
+ PR tree-optimization/93945
+ * tree-ssa-sccvn.c (vn_reference_lookup_3): For memset with non-zero
+ second operand, require ref->size to be a multiple of BITS_PER_UNIT.
+
+ 2020-02-26 Carl Love
+
+ PR target/91276
+ * doc/extend.texi (PowerPC AltiVec Built-in Functions Available on ISA
+ 3.0): The builtin-function name __builtin_crypto_vpmsumb is only for
+ the vector unsigned short arguments. It is also listed as the name of
+ the built-in for arguments vector unsigned short,
+ vector unsigned int and vector unsigned long long built-ins. The
+ name of the builtins for these arguments should be:
+ __builtin_crypto_vpmsumh, __builtin_crypto_vpmsumw and
+ __builtin_crypto_vpmsumd respectively.
+
+ 2020-02-26 Jason Merrill
+
+ PR c++/92003
+ * symtab.c (symtab_node::nonzero_address): A DECL_COMDAT decl has
+ non-zero address even if weak and not yet defined.
+
+ 2020-02-26 Jiufu Guo
+
+ PR target/93047
+ * config/rs6000/rs6000.md (untyped_call): Add emit_clobber.
+
+ 2020-02-26 Jakub Jelinek
+
+ PR tree-optimization/93820
+ * gimple-ssa-store-merging.c (check_no_overlap): Change RHS_CODE
+ argument to ALL_INTEGER_CST_P boolean.
+ (imm_store_chain_info::try_coalesce_bswap): Adjust caller.
+ (imm_store_chain_info::coalesce_immediate_stores): Likewise. Handle
+ adjacent INTEGER_CST store into merged_store->only_constants like
+ overlapping one.
+
+ 2020-02-25 Christophe Lyon
+
+ Backport from mainline
+ 2020-02-25 Christophe Lyon
+
+ * config/arm/arm.md (required_for_purecode): New attribute.
+ (enabled): Handle required_for_purecode.
+ * config/arm/thumb1.md (thumb1_movsi_insn): Add alternative to
+ work with -mpure-code.
+
+ 2020-02-25 Christophe Lyon
+
+ Backport from mainline
+ 2019-12-17 Christophe Lyon
+
+ * config/arm/arm-protos.h (thumb1_gen_const_int): Add new prototype.
+ * config/arm/arm.c (arm_option_check_internal): Remove restriction
+ on MOVT for -mpure-code.
+ (thumb1_gen_const_int): New function.
+ (thumb1_legitimate_address_p): Support -mpure-code.
+ (thumb1_rtx_costs): Likewise.
+ (thumb1_size_rtx_costs): Likewise.
+ (arm_thumb1_mi_thunk): Likewise.
+ * config/arm/arm.h (CASE_VECTOR_PC_RELATIVE): Likewise.
+ * config/arm/thumb1.md (thumb1_movsi_symbol_ref): New.
+ (*thumb1_movhf): Support -mpure-code.
+ * doc/invoke.texi (-mpure-code): Remove restriction on MOVT.
+
+ 2020-02-25 Jakub Jelinek
+
+ PR rtl-optimization/93908
+ * combine.c (find_split_point): For store into ZERO_EXTRACT, and src
+ with mask.
+
+ 2019-02-25 Eric Botcazou
+
+ * dwarf2out.c (dwarf2out_size_function): Run in early-DWARF mode.
+
+ 2020-02-25 Roman Zhuykov
+
+ Backport from master
+ 2020-02-24 Roman Zhuykov
+
+ * doc/install.texi (--enable-checking): Properly document current
+ behavior.
+ (--enable-stage1-checking): Minor clarification about bootstrap.
+
+ 2020-02-24 Richard Sandiford
+
+ Backport from mainline
+ 2020-02-19 Richard Sandiford
+
+ PR tree-optimization/93767
+ * tree-vect-data-refs.c (vect_compile_time_alias): Remove the
+ access-size bias from the offset calculations for negative strides.
+
+ 2020-02-24 Bernd Edlinger
+
+ * collect2.c (tool_cleanup): Avoid calling not signal-safe
+ functions.
+ (maybe_run_lto_and_relink): Avoid possible signal handler
+ access to unintialzed memory (lto_o_files).
+
+ 2020-02-23 Peter Bergner
+
+ Backport from master
+ 2020-02-20 Peter Bergner
+
+ PR target/93658
+ * config/rs6000/rs6000.c (rs6000_legitimate_address_p): Handle VSX
+ vector modes.
+
+ 2020-02-23 Peter Bergner
+
+ Backport from master
+ 2020-02-05 Michael Meissner
+
+ PR target/93568
+ * config/rs6000/rs6000.c (get_vector_offset): Fix Q constraint assert
+ to use "mem".
+
+ Backport from master
+ 2020-02-03 Michael Meissner
+
+ * config/rs6000/rs6000.c (get_vector_offset): New helper function
+ to calculate the offset in memory from the start of a vector of a
+ particular element. Add code to keep the element number in
+ bounds if the element number is variable.
+ (rs6000_adjust_vec_address): Move calculation of offset of the
+ vector element to get_vector_offset.
+ (rs6000_split_vec_extract_var): Do not do the initial AND of
+ element here, move the code to get_vector_offset.
+
+ 2020-02-23 Peter Bergner
+
+ Backport from master
+ 2020-01-06 Michael Meissner
+
+ * config/rs6000/vsx.md (vsx_extract__var, VSX_D iterator):
+ Use 'Q' for doing vector extract from memory.
+ (vsx_extract_v4sf_var): Use 'Q' for doing vector extract from
+ memory.
+ (vsx_extract__var, VSX_EXTRACT_I iterator): Use 'Q' for
+ doing vector extract from memory.
+ (vsx_extract__mode_var): Use 'Q' for doing vector
+ extract from memory.
+
+ 2020-02-21 John David Anglin
+
+ * gcc/config/pa/pa.c (pa_function_value): Fix check for word and
+ double-word size when handling aggregate return values.
+ * gcc/config/pa/som.h (ASM_DECLARE_FUNCTION_NAME): Fix to indicate
+ that homogeneous SFmode and DFmode aggregates are passed and returned
+ in general registers.
+
+ 2020-02-20 Uroš Bizjak
+
+ PR target/93828
+ * config/i386/mmx.md (*vec_extractv2sf_1): Match source operand
+ to destination operand for shufps alternative.
+ (*vec_extractv2si_1): Ditto.
+
+ 2020-02-20 H.J. Lu
+
+ Backport from master
+ 2020-02-13 H.J. Lu
+
+ PR target/93656
+ * config/i386/i386.c (ix86_trampoline_init): Skip ENDBR32 at
+ the target function entry.
+
+ 2020-02-18 Richard Sandiford
+
+ Backport from mainline
+ 2019-12-05 Richard Sandiford
+
+ PR middle-end/92768
+ * tree-core.h (OEP_BITWISE): New flag.
+ * fold-const.c (operand_compare::operand_equal_p): Handle it.
+ * tree-vector-builder.h (tree_vector_builder::equal_p): Pass it.
+
+ 2020-02-18 Richard Sandiford
+
+ Backport from mainline
+ 2019-08-09 Richard Sandiford
+
+ PR middle-end/90313
+ * tree-tailcall.c (find_tail_calls): Reject calls that might
+ read from an escaped RESULT_DECL.
+
+ 2020-02-18 Richard Sandiford
+
+ Backport from mainline
+ 2020-01-28 Richard Sandiford
+
+ PR tree-optimization/93434
+ * tree-predcom.c (split_data_refs_to_components): Record which
+ components have had aliasing loads removed. Prevent store-store
+ commoning for all such components.
+
+ 2020-02-18 Richard Sandiford
+
+ Backport from mainline
+ 2019-11-29 Richard Sandiford
+
+ PR tree-optimization/92710
+ * tree-vect-stmts.c (vectorizable_simd_clone_call): Reject
+ vector mask arguments.
+
+ 2020-02-18 Richard Sandiford
+
+ Backport from mainline
+ 2019-11-11 Richard Sandiford
+
+ PR tree-optimization/92420
+ * tree-vect-stmts.c (get_negative_load_store_type): Move further
+ up file.
+ (get_group_load_store_type): Use it for reversed SLP accesses.
+
+ 2020-02-18 Richard Sandiford
+
+ Backport from mainline
+ 2019-08-21 Prathamesh Kulkarni
+
+ PR target/90724
+ * config/aarch64/aarch64.c (aarch64_gen_compare_reg_maybe_ze): Force y
+ in reg if it fails aarch64_plus_operand predicate.
+
+ 2020-02-14 Hongtao Liu
+
+ PR target/93724
+ * config/i386/avx512vbmi2intrin.h
+ (_mm512_shrdi_epi16, _mm512_mask_shrdi_epi16,
+ _mm512_maskz_shrdi_epi16, _mm512_shrdi_epi32,
+ _mm512_mask_shrdi_epi32, _mm512_maskz_shrdi_epi32,
+ _m512_shrdi_epi64, _m512_mask_shrdi_epi64,
+ _m512_maskz_shrdi_epi64, _mm512_shldi_epi16,
+ _mm512_mask_shldi_epi16, _mm512_maskz_shldi_epi16,
+ _mm512_shldi_epi32, _mm512_mask_shldi_epi32,
+ _mm512_maskz_shldi_epi32, _mm512_shldi_epi64,
+ _mm512_mask_shldi_epi64, _mm512_maskz_shldi_epi64): Fix typo
+ of lacking a closing parenthesis.
+ * config/i386/avx512vbmi2vlintrin.h
+ (_mm256_shrdi_epi16, _mm256_mask_shrdi_epi16,
+ _mm256_maskz_shrdi_epi16, _mm256_shrdi_epi32,
+ _mm256_mask_shrdi_epi32, _mm256_maskz_shrdi_epi32,
+ _m256_shrdi_epi64, _m256_mask_shrdi_epi64,
+ _m256_maskz_shrdi_epi64, _mm256_shldi_epi16,
+ _mm256_mask_shldi_epi16, _mm256_maskz_shldi_epi16,
+ _mm256_shldi_epi32, _mm256_mask_shldi_epi32,
+ _mm256_maskz_shldi_epi32, _mm256_shldi_epi64,
+ _mm256_mask_shldi_epi64, _mm256_maskz_shldi_epi64,
+ _mm_shrdi_epi16, _mm_mask_shrdi_epi16,
+ _mm_maskz_shrdi_epi16, _mm_shrdi_epi32,
+ _mm_mask_shrdi_epi32, _mm_maskz_shrdi_epi32,
+ _mm_shrdi_epi64, _mm_mask_shrdi_epi64,
+ _m_maskz_shrdi_epi64, _mm_shldi_epi16,
+ _mm_mask_shldi_epi16, _mm_maskz_shldi_epi16,
+ _mm_shldi_epi32, _mm_mask_shldi_epi32,
+ _mm_maskz_shldi_epi32, _mm_shldi_epi64,
+ _mm_mask_shldi_epi64, _mm_maskz_shldi_epi64): Ditto.
+
+ 2020-02-16 Uroš Bizjak
+
+ PR target/93743
+ * config/i386/i386.md (atan2xf3): Swap operands 1 and 2.
+ (atan23): Update operand order in the call to gen_atan2xf3.
+
+ 2020-02-15 Jakub Jelinek
+
+ PR tree-optimization/93744
+ * match.pd (((m1 >/>=/<= m2) * d -> (m1 >/>=/<= m2) ? d : 0): For
+ GENERIC, make sure @2 in the first and @1 in the other patterns has no
+ side-effects.
+
+ 2020-02-14 Eric Botcazou
+
+ PR target/93704
+ * config/sparc/sparc.c (eligible_for_call_delay): Test HAVE_GNU_LD in
+ conjunction with TARGET_GNU_TLS in early return.
+
+ 2020-02-14 Alexander Monakov
+
+ Backport from mainline
+ PR rtl-optimization/88879
+ * sel-sched.c (sel_target_adjust_priority): Remove assert.
+
+ 2020-02-14 Richard Biener
+
+ Backport from mainline
+ 2020-02-05 Richard Biener
+
+ PR middle-end/90648
+ * genmatch.c (dt_node::gen_kids_1): Emit number of argument
+ checks before matching calls.
+
+ 2020-02-14 Richard Biener
+
+ Backport from mainline
+ 2020-01-22 Richard Biener
+
+ PR tree-optimization/93381
+ * tree-ssa-structalias.c (find_func_aliases): Assume offsetting
+ throughout, handle all conversions the same.
+
+ 2020-02-14 Richard Biener
+
+ Backport from mainline
+ 2020-01-28 Richard Biener
+
+ PR tree-optimization/93439
+ * tree-parloops.c (create_loop_fn): Move clique bookkeeping...
+ * tree-cfg.c (move_sese_region_to_fn): ... here.
+ (verify_types_in_gimple_reference): Verify used cliques are
+ tracked.
+
+ 2020-02-14 Richard Biener
+
+ Backport from mainline
+ 2020-01-09 Richard Biener
+
+ PR middle-end/93054
+ * gimplify.c (gimplify_expr): Deal with NOP definitions.
+
+ 2020-02-14 Richard Biener
+
+ Backport from mainline
+ 2020-01-20 Richard Biener
+
+ PR debug/92763
+ * dwarf2out.c (prune_unused_types): Unconditionally mark
+ called function DIEs.
+
+ 2020-02-14 Richard Biener
+
+ Backport from mainline
+ 2019-11-29 Richard Biener
+
+ PR tree-optimization/92704
+ * tree-if-conv.c (combine_blocks): Deal with virtual PHIs
+ in loops performing only loads.
+
+ 2020-02-14 Richard Biener
+
+ Backport from mainline
+ 2019-11-27 Richard Biener
+
+ PR middle-end/92674
+ * tree-inline.c (expand_call_inline): Delay purging EH/abnormal
+ edges and instead record blocks in bitmap.
+ (gimple_expand_calls_inline): Adjust.
+ (fold_marked_statements): Delay EH cleanup until all folding is
+ done.
+ (optimize_inline_calls): Do EH/abnormal cleanup for calls after
+ inlining finished.
+
+ 2020-02-13 Jakub Jelinek
+
+ PR target/93696
+ * config/i386/avx512bitalgintrin.h (_mm512_mask_popcnt_epi8,
+ _mm512_mask_popcnt_epi16, _mm256_mask_popcnt_epi8,
+ _mm256_mask_popcnt_epi16, _mm_mask_popcnt_epi8,
+ _mm_mask_popcnt_epi16): Rename __B argument to __A and __A to __W,
+ pass __A to the builtin followed by __W instead of __A followed by
+ __B.
+ * config/i386/avx512vpopcntdqintrin.h (_mm512_mask_popcnt_epi32,
+ _mm512_mask_popcnt_epi64): Likewise.
+ * config/i386/avx512vpopcntdqvlintrin.h (_mm_mask_popcnt_epi32,
+ _mm256_mask_popcnt_epi32, _mm_mask_popcnt_epi64,
+ _mm256_mask_popcnt_epi64): Likewise.
+
+ PR target/93673
+ * config/i386/sse.md (k): Drop mode from last operand and
+ use const_0_to_255_operand predicate instead of immediate_operand.
+ (avx512dq_fpclass,
+ avx512dq_vmfpclass,
+ vgf2p8affineinvqb_,
+ vgf2p8affineqb_): Drop mode from
+ const_0_to_255_operand predicated operands.
+
+ Backported from mainline
+ 2020-02-12 Jakub Jelinek
+
+ PR target/93670
+ * config/i386/sse.md (VI48F_256_DQ): New mode iterator.
+ (avx512vl_vextractf128): Use it instead of VI48F_256. Remove
+ TARGET_AVX512DQ from condition.
+ (vec_extract_lo_): Use
+ instead of in condition. If
+ TARGET_AVX512DQ is false, emit vextract*64x4 instead of
+ vextract*32x8.
+ (vec_extract_lo_): Drop
+ from condition.
+
+ 2020-02-10 Jakub Jelinek
+
+ PR target/93637
+ * config/i386/sse.md (VI_256_AVX2): New mode iterator.
+ (vcond_mask_): Use it instead of VI_256.
+ Change condition from TARGET_AVX2 to TARGET_AVX.
+
+ 2020-02-08 Uroš Bizjak
+ Jakub Jelinek
+
+ PR target/65782
+ * config/i386/i386.h (CALL_USED_REGISTERS): Make
+ xmm16-xmm31 call-used even in 64-bit ms-abi.
+
+ 2020-02-06 Jakub Jelinek
+
+ PR libgomp/93515
+ * omp-low.c (use_pointer_for_field): For nested constructs, also
+ look for map clauses on target construct.
+ (scan_omp_1_stmt) : Bump temporarily
+ taskreg_nesting_level.
+
+ PR libgomp/93515
+ * gimplify.c (gimplify_scan_omp_clauses) : If adding
+ shared clause, call omp_notice_variable on outer context if any.
+
+ 2020-02-05 Jakub Jelinek
+
+ PR middle-end/93555
+ * omp-simd-clone.c (expand_simd_clones): If simd_clone_mangle or
+ simd_clone_create failed when i == 0, adjust clone->nargs by
+ clone->inbranch.
+
+ 2020-01-30 Jakub Jelinek
+
+ PR middle-end/93505
+ * combine.c (simplify_comparison) : Punt on out of range
+ rotate counts.
+
+ 2020-01-28 Jakub Jelinek
+
+ PR target/93418
+ * config/i386/i386.c (ix86_fold_builtin) : If mask is not
+ -1 or is_vshift is true, use new_vector with number of elts npatterns
+ rather than new_unary_operation.
+
+ 2020-01-23 Jakub Jelinek
+
+ PR rtl-optimization/93402
+ * postreload.c (reload_combine_recognize_pattern): Don't try to adjust
+ USE insns.
+
+ 2020-02-11 Tamar Christina
+
+ Backport from mainline
+ 2020-01-31 Tamar Christina
+
+ PR rtl-optimization/91838
+ * simplify-rtx.c (simplify_binary_operation_1): Update LSHIFTRT case
+ to truncate if allowed or reject combination.
+
+ 2020-02-07 H.J. Lu
+
+ Backport from mainline
+ 2020-02-07 H.J. Lu
+
+ PR target/85667
+ * config/i386/i386.c (function_arg_ms_64): Add a type argument.
+ Don't return aggregates with only SFmode and DFmode in SSE
+ register.
+ (ix86_function_arg): Pass type to function_arg_ms_64.
+
+ 2020-01-30 John David Anglin
+
+ * config/pa/pa.c (pa_elf_select_rtx_section): Place function pointers
+ without a DECL in .data.rel.ro.local.
+
+ 2020-01-30 Kito Cheng
+
+ Backport from mainline
+ 2020-01-21 Kito Cheng
+
+ PR target/93304
+ * config/riscv/riscv-protos.h (riscv_hard_regno_rename_ok): New.
+ * config/riscv/riscv.c (riscv_hard_regno_rename_ok): New.
+ * config/riscv/riscv.h (HARD_REGNO_RENAME_OK): Defined.
+
+ 2020-01-29 Szabolcs Nagy
+
+ Backport from mainline
+ 2020-01-21 Szabolcs Nagy
+
+ PR target/92424
+ * config/aarch64/aarch64.c (aarch64_declare_function_name): Set
+ cfun->machine->label_is_assembled.
+ (aarch64_print_patchable_function_entry): New.
+ (TARGET_ASM_PRINT_PATCHABLE_FUNCTION_ENTRY): Define.
+ * config/aarch64/aarch64.h (struct machine_function): New field,
+ label_is_assembled.
+
+ 2020-01-27 Wilco Dijkstra
+
+ PR target/92692
+ * config/aarch64/aarch64.c (aarch64_split_compare_and_swap)
+ Add assert to ensure prolog has been emitted.
+ (aarch64_split_atomic_op): Likewise.
+ * config/aarch64/atomics.md (aarch64_compare_and_swap)
+ Use epilogue_completed rather than reload_completed.
+ (aarch64_atomic_exchange): Likewise.
+ (aarch64_atomic_): Likewise.
+ (atomic_nand): Likewise.
+ (aarch64_atomic_fetch_): Likewise.
+ (atomic_fetch_nand): Likewise.
+ (aarch64_atomic__fetch): Likewise.
+ (atomic_nand_fetch): Likewise.
+
+ 2020-01-22 Jakub Jelinek
+
+ PR target/93335
+ * config/aarch64/aarch64.c (aarch64_expand_subvti): Only use
+ gen_subdi3_compare1_imm if low_in2 satisfies aarch64_plus_immediate
+ predicate, not whenever it is CONST_INT. Otherwise, force_reg it.
+ Call force_reg on high_in2 unconditionally.
+
+ PR target/91298
+ * output.h (assemble_name_resolve): Declare.
+ * varasm.c (assemble_name_resolve): New function.
+ (assemble_name): Use it.
+ * config/i386/i386.h (ASM_OUTPUT_SYMBOL_REF): Define.
+
+ Backported from mainline
+ 2020-01-21 Jakub Jelinek
+
+ PR target/93333
+ * config/riscv/riscv.c (riscv_rtx_costs) : Verify
+ the last two operands are CONST_INT_P before using them as such.
+
+ PR target/93073
+ * config/rs6000/rs6000.c (rs6000_emit_cmove): If using fsel, punt for
+ compare_mode other than SFmode or DFmode.
+
+ 2020-01-15 Jakub Jelinek
+
+ PR target/93009
+ * config/i386/sse.md
+ (*fma_fmadd__bcst_1,
+ *fma_fmsub__bcst_1,
+ *fma_fnmadd__bcst_1,
+ *fma_fnmsub__bcst_1): Use
+ just a single alternative instead of two, make operands 1 and 2
+ commutative.
+
+ 2020-01-09 Jakub Jelinek
+
+ PR inline-asm/93202
+ * config/riscv/riscv.c (riscv_print_operand_reloc): Use
+ output_operand_lossage instead of gcc_unreachable.
+ * doc/md.texi (riscv f constraint): Fix typo.
+
+ 2020-01-03 Jakub Jelinek
+
+ PR rtl-optimization/93088
+ * loop-iv.c (find_single_def_src): Punt after looking through
+ 128 reg copies for regs with single definitions. Move definitions
+ to first uses.
+
+ 2020-01-02 Jakub Jelinek
+
+ PR ipa/93087
+ * predict.c (compute_function_frequency): Don't call
+ warn_function_cold on functions that already have cold attribute.
+
+ 2020-01-20 Richard Biener
+
+ Backport from mainline
+ PR middle-end/93246
+ * alias.c (record_component_aliases): Take superset to record
+ into, recurse for alias-set zero fields.
+ (record_component_aliases): New oveerload wrapping around the above.
+
+ 2020-01-19 Eric S. Raymond
+ Sandra Loosemore
+
+ Backport from mainline:
+
+ 2020-01-19 Eric S. Raymond
+
+ * doc/contribute.texi: Update for SVN -> Git transition.
+ * doc/install.texi: Likewise.
+
+ 2020-01-15 Uroš Bizjak
+
+ PR target/93254
+ * config/i386/i386.md (*movsf_internal): Require SSE2 ISA for
+ alternatives 9 and 10. Do not require SSE2 ISA for alternatives
+ 14 and 15.
+
+ 2020-01-14 Martin Jambor
+
+ Backport from mainline
+ 2020-01-13 Martin Jambor
+
+ PR ipa/93223
+ * ipa-cp.c (devirtualization_time_bonus): Check whether isummary is
+ NULL.
+
+ 2020-01-10 Martin Jambor
+
+ Backport from mainline
+ 2019-12-17 Martin Jambor
+
+ PR ipa/92971
+ * Ipa-cp.c (cgraph_edge_brings_all_agg_vals_for_node): Fix
+ definition of values, release memory on exit.
+
+ 2020-01-10 Przemyslaw Wirkus
+
+ Backport from trunk
+ PR target/93188
+ * config/arm/t-multilib (MULTILIB_MATCHES): Add rules to match
+ armv7-a{+mp,+sec,+mp+sec} to appropriate armv7 multilib variants
+ when only building rm-profile multilibs.
+
+ 2020-01-10 Przemyslaw Wirkus
+
+ Backport from trunk
+ * config/arm/t-multilib: Use arm->thumb multilib reuse rules
+ on a-profile.
+
+ 2020-01-09 Martin Liska
+
+ Backport from mainline
+ 2019-12-12 Jan Hubicka
+
+ * ipa-prop.c (read_ipcp_transformation_info): Fix undefined ordering
+ of execution of function call parameters.
+
+ 2020-01-08 Georg-Johann Lay
+
+ Backport from 2020-01-08 trunk r279995.
+
+ Add -nodevicespecs option for avr.
+
+ PR target/93182
+ * config/avr/avr.opt (-nodevicespecs): New driver option.
+ * config/avr/driver-avr.c (avr_devicespecs_file): Only issue
+ "-specs=device-specs/..." if that option is not set.
+ * doc/invoke.texi (AVR Options) <-nodevicespecs>: Document.
+
+ 2020-01-06 John David Anglin
+
+ * config/pa/pa.md: Revert change to use ordered_comparison_operator
+ instead of cmpib_comparison_operator in cmpib patterns.
+ * config/pa/predicates.md (cmpib_comparison_operator): Revert removal
+ of cmpib_comparison_operator. Revise comment.
+
+ 2020-01-01 John David Anglin
+
+ PR target/67834
+ * config/pa/pa.c (pa_elf_select_rtx_section): New. Put references to
+ COMDAT group function labels in .data.rel.ro.local section.
+ * config/pa/pa32-linux.h (TARGET_ASM_SELECT_RTX_SECTION): Define.
+
+ PR target/93111
+ * config/pa/pa.md (scc): Use ordered_comparison_operator instead of
+ comparison_operator in B and S integer comparisons. Likewise, use
+ ordered_comparison_operator instead of cmpib_comparison_operator in
+ cmpib patterns.
+ * config/pa/predicates.md (cmpib_comparison_operator): Remove.
+
+ 2019-12-25 Iain Sandoe
+
+ Backport from mainline.
+ 2019-12-14 Iain Sandoe
+
+ * config/darwin.h (DARWIN_EXTRA_SPECS): Add new
+ bundle spec. (DARWIN_BUNDLE1_SPEC): New.
+ (STARTFILE_SPEC): Use darwin bundle spec.
+ * config/rs6000/darwin.h (DARWIN_BUNDLE1_SPEC): New.
+ (DARWIN_DYLIB1_SPEC): Delete duplicate.
+
+ 2019-12-20 Jakub Jelinek
+
+ PR fortran/92756
+ * omp-low.c (check_omp_nesting_restrictions): If lang_GNU_Fortran,
+ diagnose teams not closely nested inside of target.
+
+ Backported from mainline
+ 2019-12-14 Jakub Jelinek
+
+ PR ipa/92357
+ * ipa-fnsummary.c (ipa_fn_summary_write): Use
+ lto_symtab_encoder_iterator with lsei_start_function_in_partition and
+ lsei_next_function_in_partition instead of walking all cgraph nodes
+ in encoder.
+
+ PR tree-optimization/92930
+ * ipa-pure-const.c (special_builtin_state): Don't handle
+ BUILT_IN_APPLY.
+
+ 2019-12-12 Jakub Jelinek
+
+ PR target/92904
+ * config/i386/i386.c (ix86_gimplify_va_arg): If need_intregs and
+ not need_temp, decrease alignment of the read because the GPR save
+ area only guarantees 8-byte alignment.
+
+ 2019-12-11 Jakub Jelinek
+
+ PR target/92723
+ * tree-vect-patterns.c (vect_recog_rotate_pattern): If dt is not
+ vect_internal_def, use oprnd1 as is, without trying to cast it.
+ Formatting fix.
+
+ 2019-11-27 Jakub Jelinek
+
+ PR debug/92664
+ * dwarf2out.c (lookup_filename): Use "" instead of "".
+
+ 2019-11-26 Jakub Jelinek
+
+ PR tree-optimization/92644
+ * tree-ssa-phiopt.c (minmax_replacement): Add INTEGRAL_TYPE_P check
+ next to INTEGER_CST checks.
+
+ 2019-11-23 Jakub Jelinek
+
+ PR target/92615
+ * config/i386/i386.c (ix86_md_asm_adjust): If dest_mode is
+ GET_MODE (dest), is not QImode, using ZERO_EXTEND and dest is not
+ register_operand, force x into register before storing it into dest.
+ Formatting fix.
+
+ 2019-12-20 Roman Zhuykov
+
+ Backport from mainline
+ 2019-12-13 Roman Zhuykov
+
+ PR rtl-optimization/92591
+ * modulo-sched.c (ps_add_node_check_conflicts): Improve checking
+ for history > 0 case.
+ * params.def (sms-dfa-history): Limit to 16.
+
+ 2019-12-19 Georg-Johann Lay
+
+ Backport support for some AVR devices from avrxmega3 family
+ from SVN trunk r279309, r278387, r278389, r278478.
+
+ PR target/92545
+ * config/avr/avr-arch.h (avr_mcu_t) : New field.
+ * config/avr/avr-devices.c (avr_mcu_types): Adjust initializers.
+ * config/avr/avr-mcus.def (AVR_MCU): Add respective field.
+ * config/avr/gen-avr-mmcu-specs.c (print_mcu)
+ <*cpp, *cpp_mcu, *cpp_avrlibc, *link_pm_base_address>: Emit code
+ for spec definitions.
+ * config/avr/gen-avr-mmcu-texi.c: Rewrite.
+ * doc/avr-mmcu.texi: Regenerate.
+
+ 2019-12-17 Andreas Krebbel
+
+ Backport from mainline
+ 2019-12-16 Andreas Krebbel
+
+ PR target/92950
+ * config/s390/vector.md ("mov" for V_8): Replace lh, lhy,
+ and lhrl with llc.
+
+ 2019-12-12 Vineet Gupta
+
+ Backport from mainline
+ * config/arc/arc-modes.def (CC_FPUE): New Mode CC_FPUE which
+ helps codegen generate exceptions even for quiet NaN.
+ * config/arc/arc.c (arc_init_reg_tables): Handle New CC_FPUE mode.
+ (get_arc_condition_code): Likewise.
+ (arc_select_cc_mode): LT, LE, GT, GE to use the New CC_FPUE mode.
+ * config/arc/arc.h (REVERSE_CONDITION): Handle New CC_FPUE mode.
+ * config/arc/predicates.md (proper_comparison_operator): Likewise.
+ * config/arc/fpu.md (cmpsf_fpu_trap): New Pattern for CC_FPUE.
+ (cmpdf_fpu_trap): Likewise.
+
+ 2019-12-12 Claudiu Zissulescu
+
+ Backport from mainline
+ * config/arc/arc.md (iterator SDF): Check TARGET_FP_DP_BASE.
+ (cstoredi4): Use TARGET_HARD_FLOAT.
+
+ 2019-12-10 Kewen Lin
+
+ Backport from mainline
+ 2019-11-27 Kewen Lin
+
+ PR tree-optimization/91790
+ * gcc/tree-vect-stmts.c (vectorizable_load): Use the adjusted DR for
+ vect_setup_realignment when first_stmt_info is different from
+ first_stmt_info_for_drptr.
+
+ 2019-12-09 Eric Botcazou
+
+ * tree.c (build_array_type_1): Add SET_CANONICAL parameter and compute
+ TYPE_CANONICAL from the element type only if it is true. Remove a few
+ obsolete lines and adjust recursive call.
+ (fld_process_array_type): Adjust call to build_array_type_1.
+ (build_array_type): Likewise.
+ (build_nonshared_array_type): Likewise.
+
+ 2019-12-02 Sandra Loosemore
+
+ Fix bugs relating to flexibly-sized objects in nios2 backend.
+
+ PR target/92499
+ * config/nios2/nios2.c (nios2_in_small_data_p): Do not consider
+ objects of flexible types to be small if they have internal linkage
+ or are declared extern.
+ * config/nios2/nios2.h (ASM_OUTPUT_ALIGNED_LOCAL): Replace with...
+ (ASM_OUTPUT_ALIGNED_DECL_LOCAL): ...this. Use targetm.in_small_data_p
+ instead of the size of the object initializer.
+ * tree.c (flexible_array_type_p): Move from C front end, and
+ generalize to handle fields in non-C structures.
+ * tree.h (flexible_array_type_p): Declare.
+
+ 2019-12-02 Li Jia He
+
+ Partial backport from mainline
+ PR target/92098
+ 2019-11-08 Kewen Lin
+
+ PR target/92132
+ * config/rs6000/predicates.md
+ (signed_or_equality_comparison_operator): New predicate.
+ (unsigned_or_equality_comparison_operator): Likewise.
+ * config/rs6000/rs6000.md (one_cmpl2): Remove expand.
+ (one_cmpl3_internal): Rename to one_cmpl2.
+ * config/rs6000/vector.md
+ (vcond_mask_ for VEC_I and VEC_I): New expand.
+ (vec_cmp for VEC_I and VEC_I): Likewise.
+ (vec_cmpu for VEC_I and VEC_I): Likewise.
+
+ 2019-11-27 Richard Biener
+
+ Backport from mainline
+ 2019-10-25 Richard Biener
+
+ PR tree-optimization/92222
+ * tree-vect-slp.c (_slp_oprnd_info::first_pattern): Remove.
+ (_slp_oprnd_info::second_pattern): Likewise.
+ (_slp_oprnd_info::any_pattern): New.
+ (vect_create_oprnd_info): Adjust.
+ (vect_get_and_check_slp_defs): Compute whether any stmt is
+ in a pattern.
+ (vect_build_slp_tree_2): Avoid building up a node from scalars
+ if any of the operand defs, not just the first, is in a pattern.
+
+ 2019-11-21 Jakub Jelinek
+
+ PR tree-optimization/91355
+ * tree-ssa-sink.c (select_best_block): Use >= rather than >
+ for early_bb scaled count with best_bb count comparison.
+
+ 2019-11-21 Richard Biener
+
+ Revert
+ 2019-09-17 Richard Biener
+
+ PR tree-optimization/91790
+ * tree-vect-stmts.c (vectorizable_load): For BB vectorization
+ use the correct DR for setting up realignment.
+
+ 2019-11-20 Peter Bergner
+
+ Backport from mainline
+ 2019-11-07 Peter Bergner
+
+ PR other/92090
+ * config/rs6000/predicates.md (input_operand): Allow MODE_PARTIAL_INT
+ modes for integer constants.
+
+ 2019-11-20 Michael Matz
+
+ Backport from mainline
+ PR middle-end/90796
+ * gimple-loop-jam.c (any_access_function_variant_p): New function.
+ (adjust_unroll_factor): Use it to constrain safety, new parameter.
+ (tree_loop_unroll_and_jam): Adjust call and profitable unroll factor.
+
+ 2019-11-20 Joseph Myers
+
+ * doc/invoke.texi (-Wc11-c2x-compat): Document.
+
+ 2019-11-20 Jakub Jelinek
+
+ PR middle-end/90840
+ * expmed.c (store_bit_field_1): Handle the case where op0 is not a MEM
+ and has a mode that doesn't have corresponding integral type.
+
+ PR target/90867
+ * config/i386/i386.c (ix86_valid_target_attribute_tree): Don't
+ clear opts->x_ix86_isa_flags{,2} here...
+ (ix86_valid_target_attribute_inner_p): ... but here when seeing
+ arch=. Also clear opts->x_ix86_isa_flags{,2}_explicit.
+
+ PR c/90898
+ * tree-ssa-ccp.c (insert_clobber_before_stack_restore): Remove
+ assertion.
+ (insert_clobbers_for_var): Fix a typo in function comment.
+
+ 2019-11-19 Jakub Jelinek
+
+ PR middle-end/91450
+ * internal-fn.c (expand_mul_overflow): For s1 * s2 -> ur, if one
+ operand is negative and one non-negative, compare the non-negative
+ one against 0 rather than comparing s1 & s2 against 0. Otherwise,
+ don't compare (s1 & s2) == 0, but compare separately both s1 == 0
+ and s2 == 0, unless one of them is known to be negative. Remove
+ tem2 variable, use tem where tem2 has been used before.
+
+ 2019-11-19 Eric Botcazou
+
+ * doc/invoke.texi (-gno-internal-reset-location-views): Fix typo.
+
+ 2019-11-18 Segher Boessenkool
+
+ Backport from trunk
+ 2019-11-12 Segher Boessenkool
+
+ * config/rs6000/rs6000.md (rs6000_set_fpscr_drn): Use ULL on big
+ hexadecimal literal.
+
+ 2019-11-15 Tamar Christina
+
+ Backport from mainline
+ 2019-09-24 Stamatis Markianos-Wright
+
+ * config/aarch64/aarch64-option-extensions.def (fp16fml):
+ Update hwcap string for fp16fml.
+
+ 2019-11-15 Ilya Leoshkevich
+
+ Backport from mainline
+ PR rtl-optimization/92430
+ * cfgcleanup.c (pass_jump_after_combine::gate): New function.
+ (pass_jump_after_combine::execute): Free
+ dominance info at the beginning.
+
+ 2019-11-13 Claudiu Zissulescu
+
+ Backport from mainline
+ * config/arc/arc.md (movsi_ne): Reorder instruction variants and
+ use new register constraint letters.
+ * config/arc/arc.c (arc_legitimize_pic_address): Consider UNSPECs
+ as well, if interesting recover the symbol and re-legitimize the
+ pic address.
+
+ 2019-11-14 Martin Liska
+
+ Backport from mainline
+ 2019-11-14 Martin Liska
+
+ PR target/92389
+ * config/i386/i386.h: Add PTA_AVX512VPOPCNTDQ to
+ PTA_ICELAKE_CLIENT which is later interited by
+ PTA_ICELAKE_SERVER and PTA_TIGERLAKE.
+
+ 2019-11-13 Dragan Mladjenovic
+
+ Backport from mainline
+ * config/mips/mips.md (rotr3): Sanitize the constant argument
+ instead of asserting its value.
+
+ 2019-11-11 Richard Biener
+
+ Backport from mainline
+ 2019-06-25 Richard Biener
+
+ PR tree-optimization/90930
+ * tree-ssa-reassoc.c (reassociate_bb): Only rewrite expression
+ into parallel form in the last pass instance.
+
+ 2019-11-11 H.J. Lu
+
+ Backport from trunk:
+ PR target/87833
+ * config/i386/intelmic-mkoffload.c (prepare_target_image): Put
+ -fPIC and -shared the last to create offload image.
+
+ 2019-11-11 Thomas Schwinge
+
+ Backport from trunk:
+ * gimplify.c (gimplify_scan_omp_clauses): Assert 'offset2' instead
+ of 'offset'.
+
+ Backport from trunk:
+ * Makefile.in (LANG_CONFIGUREFRAGS): Define.
+ (config.status): Use/depend on it.
+ * configure.ac (all_lang_configurefrags): Track, 'AC_SUBST'.
+ * configure: Regenerate.
+
+ 2019-11-09 John David Anglin
+
+ Backport from mainline
+ 2019-11-07 John David Anglin
+
+ * config/pa/pa.md (memory_barrier): Revise to use ldcw barriers.
+ Enhance comment.
+ (memory_barrier_coherent, memory_barrier_64, memory_barrier_32): New
+ insn patterns using ldcw instruction.
+ (memory_barrier): Remove insn pattern using sync instruction.
+ * config/pa/pa.opt (coherent-ldcw): New option.
+ (ordered): New option.
+
+ 2019-11-08 Jakub Jelinek
+
+ PR c++/92384
+ * function.c (assign_parm_setup_block, assign_parm_setup_stack): Don't
+ copy TYPE_EMPTY_P arguments from data->entry_parm to data->stack_parm
+ slot.
+ (assign_parms): For TREE_ADDRESSABLE parms with TYPE_EMPTY_P type
+ force creation of a unique data.stack_parm slot.
+
+ Backported from mainline
+ 2019-10-31 Jakub Jelinek
+
+ PR middle-end/92231
+ * tree.h (fndecl_built_in_p): Use fndecl_built_in_p instead of
+ DECL_BUILT_IN in comment. Remove redundant ()s around return
+ argument.
+ * tree.c (free_lang_data_in_decl): Check if var is FUNCTION_DECL
+ before calling fndecl_built_in_p.
+ * gimple-fold.c (gimple_fold_stmt_to_constant_1): Check if
+ TREE_OPERAND (fn, 0) is a FUNCTION_DECL before calling
+ fndecl_built_in_p on it.
+
+ PR c++/90947
+ * tree.h (type_initializer_zero_p): Remove.
+ * tree.c (type_initializer_zero_p): Remove.
+
+ 2019-10-29 Jakub Jelinek
+
+ * doc/install.texi (--enable-offload-targets): Fix up a typo in the
+ example, use actual names of supported offload targets.
+
+ 2019-11-08 Eric Botcazou