diff -Nrcpad gcc-10.4.0/ChangeLog gcc-10.5.0/ChangeLog *** gcc-10.4.0/ChangeLog Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/ChangeLog Fri Jul 7 07:08:39 2023 *************** *** 1,3 **** --- 1,7 ---- + 2023-07-07 Release Manager + + * GCC 10.5.0 released. + 2022-06-28 Release Manager * GCC 10.4.0 released. diff -Nrcpad gcc-10.4.0/INSTALL/binaries.html gcc-10.5.0/INSTALL/binaries.html *** gcc-10.4.0/INSTALL/binaries.html Tue Jun 28 08:55:12 2022 --- gcc-10.5.0/INSTALL/binaries.html Fri Jul 7 07:08:59 2023 *************** *** 1,8 **** - -
- + + +We are often asked about pre-compiled versions of GCC. While we cannot provide these for all platforms, below you’ll find links to binaries for --- 85,92 ---- ! !
We are often asked about pre-compiled versions of GCC. While we cannot provide these for all platforms, below you’ll find links to binaries for diff -Nrcpad gcc-10.4.0/INSTALL/build.html gcc-10.5.0/INSTALL/build.html *** gcc-10.4.0/INSTALL/build.html Tue Jun 28 08:55:12 2022 --- gcc-10.5.0/INSTALL/build.html Fri Jul 7 07:08:58 2023 *************** *** 1,8 **** - -
- + + +Now that GCC is configured, you are ready to build the compiler and runtime libraries. --- 82,88 ---- !
Now that GCC is configured, you are ready to build the compiler and runtime libraries. *************** documentation, you need version 4.7 or l *** 123,129 **** want Info documentation to be regenerated. Releases contain Info documentation pre-built for the unmodified documentation in the release.
!For a native build, the default configuration is to perform --- 129,135 ---- want Info documentation to be regenerated. Releases contain Info documentation pre-built for the unmodified documentation in the release.
!For a native build, the default configuration is to perform *************** following example. This will save rough *** 166,173 **** the bootstrap and the final installation. (Libraries will still contain debugging information.)
!make BOOT_CFLAGS='-O' bootstrap
You can place non-default optimization flags into BOOT_CFLAGS
; they
--- 172,179 ----
the bootstrap and the final installation. (Libraries will still contain
debugging information.)
make BOOT_CFLAGS='-O' bootstrap
You can place non-default optimization flags into BOOT_CFLAGS
; they
*************** configure option --with-build-conf
*** 218,235 ****
examples of supported build configurations are:
Removes any -O-started option from BOOT_CFLAGS
, and adds
-O1 to it. ‘BUILD_CONFIG=bootstrap-O1’ is equivalent to
‘BOOT_CFLAGS='-g -O1'’.
Analogous to bootstrap-O1
.
Enables Link-Time Optimization for host tools during bootstrapping. ‘BUILD_CONFIG=bootstrap-lto’ is equivalent to adding -flto to ‘BOOT_CFLAGS’. This option assumes that the host --- 224,241 ---- examples of supported build configurations are:
Removes any -O-started option from BOOT_CFLAGS
, and adds
-O1 to it. ‘BUILD_CONFIG=bootstrap-O1’ is equivalent to
‘BOOT_CFLAGS='-g -O1'’.
Analogous to bootstrap-O1
.
Enables Link-Time Optimization for host tools during bootstrapping. ‘BUILD_CONFIG=bootstrap-lto’ is equivalent to adding -flto to ‘BOOT_CFLAGS’. This option assumes that the host *************** supports the linker plugin (e.g. GNU ld *** 237,243 **** version 2.21 or later).
This option is similar to bootstrap-lto
, but is intended for
hosts that do not support the linker plugin. Without the linker plugin
static libraries are not compiled with link-time optimizations. Since
--- 243,249 ----
version 2.21 or later).
This option is similar to bootstrap-lto
, but is intended for
hosts that do not support the linker plugin. Without the linker plugin
static libraries are not compiled with link-time optimizations. Since
*************** the GCC middle end and back end are in <
*** 245,258 ****
that only the front end is actually LTO optimized.
This option is similar to bootstrap-lto
, but is intended for
faster build by only using LTO in the final bootstrap stage.
With ‘make profiledbootstrap’ the LTO frontend
is trained only on generator files.
Verifies that the compiler generates the same executable code, whether or not it is asked to emit debug information. To this end, this option builds stage2 host programs without debug information, and uses --- 251,264 ---- that only the front end is actually LTO optimized.
This option is similar to bootstrap-lto
, but is intended for
faster build by only using LTO in the final bootstrap stage.
With ‘make profiledbootstrap’ the LTO frontend
is trained only on generator files.
Verifies that the compiler generates the same executable code, whether or not it is asked to emit debug information. To this end, this option builds stage2 host programs without debug information, and uses *************** info into identical object files. In ad *** 265,271 **** coverage, this option makes default bootstraps faster and leaner.
Rather than comparing stripped object files, as in
bootstrap-debug
, this option saves internal compiler dumps
during stage2 and stage3 and compares them as well, which helps catch
--- 271,277 ----
coverage, this option makes default bootstraps faster and leaner.
Rather than comparing stripped object files, as in
bootstrap-debug
, this option saves internal compiler dumps
during stage2 and stage3 and compares them as well, which helps catch
*************** additional potential problems, but at a
*** 273,279 ****
space. It can be specified in addition to ‘bootstrap-debug’.
This option saves disk space compared with bootstrap-debug-big
,
but at the expense of some recompilation. Instead of saving the dumps
of stage2 and stage3 until the final compare, it uses
--- 279,285 ----
space. It can be specified in addition to ‘bootstrap-debug’.
This option saves disk space compared with bootstrap-debug-big
,
but at the expense of some recompilation. Instead of saving the dumps
of stage2 and stage3 until the final compare, it uses
*************** during stage3, repeating the compilation
*** 282,288 ****
stage2, whose dumps were not saved.
This option tests executable code invariance over debug information
generation on target libraries, just like bootstrap-debug-lean
tests it on host programs. It builds stage3 libraries with
--- 288,294 ----
stage2, whose dumps were not saved.
This option tests executable code invariance over debug information
generation on target libraries, just like bootstrap-debug-lean
tests it on host programs. It builds stage3 libraries with
*************** in stage2 are used in stage3 host progra
*** 296,302 ****
compile stage2 libraries with different options for comparison purposes.
Arranges for error messages to be issued if the compiler built on any stage is run without the option -fcompare-debug. This is useful to verify the full -fcompare-debug testing coverage. It --- 302,308 ---- compile stage2 libraries with different options for comparison purposes.
Arranges for error messages to be issued if the compiler built on any
stage is run without the option -fcompare-debug. This is
useful to verify the full -fcompare-debug testing coverage. It
*************** must be used along with bootstrap-
*** 304,310 ****
bootstrap-debug-lib
.
This option enables Intel CET for host tools during bootstrapping.
‘BUILD_CONFIG=bootstrap-cet’ is equivalent to adding
-fcf-protection to ‘BOOT_CFLAGS’. This option
--- 310,316 ----
bootstrap-debug-lib
.
This option enables Intel CET for host tools during bootstrapping. ‘BUILD_CONFIG=bootstrap-cet’ is equivalent to adding -fcf-protection to ‘BOOT_CFLAGS’. This option *************** assumes that the host supports Intel CET *** 312,332 **** 2.30 or later).
Arranges for the run time of each program started by the GCC driver, built in any stage, to be logged to time.log, in the top level of the build tree.
Compiles GCC itself using Address Sanitization in order to catch invalid memory accesses within the GCC code.
When building a cross compiler, it is not generally possible to do a --- 318,337 ---- 2.30 or later).
!Arranges for the run time of each program started by the GCC driver, built in any stage, to be logged to time.log, in the top level of the build tree.
Compiles GCC itself using Address Sanitization in order to catch invalid memory accesses within the GCC code.
When building a cross compiler, it is not generally possible to do a *************** configuring GCC. Put them in the direct *** 364,383 **** you should put in this directory:
This should be the cross-assembler.
This should be the cross-linker.
This should be the cross-archiver: a program which can manipulate archive files (linker libraries) in the target machine’s format.
This should be a program to construct a symbol table in an archive file.
This should be the cross-assembler.
This should be the cross-linker.
This should be the cross-archiver: a program which can manipulate archive files (linker libraries) in the target machine’s format.
This should be a program to construct a symbol table in an archive file.
STARTFILE_SPEC
to find out what start files it uses.
! GNU Make 3.80 and above, which is necessary to build GCC, support
--- 409,415 ----
compilation options. Check your target’s definition of
STARTFILE_SPEC
to find out what start files it uses.
GNU Make 3.80 and above, which is necessary to build GCC, support *************** your machine will result in fewer and sh *** 416,429 **** improving overall throughput; this is especially true for slow drives and network filesystems.
!It is possible to use profile feedback to optimize the compiler itself. This --- 420,431 ---- improving overall throughput; this is especially true for slow drives and network filesystems.
!It is possible to use profile feedback to optimize the compiler itself. This *************** the code quality may be much worse. *** 464,470 **** !
Like most GNU software, GCC must be configured before it can be built. This document describes the recommended configuration procedure --- 81,88 ---- ! !
Like most GNU software, GCC must be configured before it can be built. This document describes the recommended configuration procedure *************** scripts may fail. *** 122,141 ****
To configure GCC:
!% mkdir objdir % cd objdir % srcdir/configure [options] [target]
If you will be distributing binary versions of GCC, with modifications to the source code, you should use the options described in this section to make clear that your version contains modifications.
--with-pkgversion=version
Specify a string that identifies your package. You may wish
to include a build number or build date. This version string will be
included in the output of gcc --version
. This suffix does
--- 128,148 ----
To configure GCC:
!% mkdir objdir % cd objdir % srcdir/configure [options] [target]
If you will be distributing binary versions of GCC, with modifications to the source code, you should use the options described in this section to make clear that your version contains modifications.
--with-pkgversion=version
Specify a string that identifies your package. You may wish
to include a build number or build date. This version string will be
included in the output of gcc --version
. This suffix does
*************** not replace the default version string,
*** 144,150 ****
The default value is ‘GCC’.
--with-bugurl=url
Specify the URL that users should visit if they wish to report a bug. You are of course welcome to forward bugs reported to you to the FSF, if you determine that they are not bugs in your modifications. --- 151,157 ----
The default value is ‘GCC’.
--with-bugurl=url
Specify the URL that users should visit if they wish to report a bug. You are of course welcome to forward bugs reported to you to the FSF, if you determine that they are not bugs in your modifications. *************** if you determine that they are not bugs *** 152,165 ****
The default value refers to the FSF’s GCC bug tracker.
--with-documentation-root-url=url
Specify the URL root that contains GCC option documentation. The url
should end with a /
character.
The default value is https://gcc.gnu.org/onlinedocs/.
--with-changes-root-url=url
Specify the URL root that contains information about changes in GCC
releases like gcc-version/changes.html
.
The url should end with a /
character.
--- 159,172 ----
The default value refers to the FSF’s GCC bug tracker.
--with-documentation-root-url=url
Specify the URL root that contains GCC option documentation. The url
should end with a /
character.
The default value is https://gcc.gnu.org/onlinedocs/.
--with-changes-root-url=url
Specify the URL root that contains information about changes in GCC
releases like gcc-version/changes.html
.
The url should end with a /
character.
*************** The url should end with a
Use options to override several configure time options for
GCC. A list of supported options follows; ‘configure
--- 192,199 ----
!
! Use options to override several configure time options for
GCC. A list of supported options follows; ‘configure
*************** work and should not normally be used.
*** 196,202 ****
corresponding --without option.
Specify the toplevel installation
directory. This is the recommended way to install the tools into a directory
other than the default. The toplevel installation directory defaults to
--- 205,211 ----
corresponding --without option.
Specify the toplevel installation
directory. This is the recommended way to install the tools into a directory
other than the default. The toplevel installation directory defaults to
*************** beneath a user’s home directory tr
*** 211,273 ****
The following standard Specify the toplevel installation directory for architecture-dependent
files. The default is prefix.
Specify the installation directory for the executables called by users
(such as Specify the installation directory for object code libraries and
internal data files of GCC. The default is exec-prefix/lib.
Specify the installation directory for internal executables of GCC.
The default is exec-prefix/libexec.
Specify the installation directory for the shared libgcc library. The
default is libdir.
Specify the root of the directory tree for read-only architecture-independent
data files referenced by GCC. The default is prefix/share.
Specify the installation directory for documentation in info format.
The default is datarootdir/info.
Specify the installation directory for some architecture-independent
data files referenced by GCC. The default is datarootdir.
Specify the installation directory for documentation files (other
than Info) for GCC. The default is datarootdir/doc.
Specify the installation directory for HTML documentation files.
The default is docdir.
Specify the installation directory for PDF documentation files.
The default is docdir.
Specify the installation directory for manual pages. The default is
datarootdir/man. (Note that the manual pages are only extracts
from the full GCC manuals, which are provided in Texinfo format. The manpages
--- 220,282 ----
The following standard Specify the toplevel installation directory for architecture-dependent
files. The default is prefix.
Specify the installation directory for the executables called by users
(such as Specify the installation directory for object code libraries and
internal data files of GCC. The default is exec-prefix/lib.
Specify the installation directory for internal executables of GCC.
The default is exec-prefix/libexec.
Specify the installation directory for the shared libgcc library. The
default is libdir.
Specify the root of the directory tree for read-only architecture-independent
data files referenced by GCC. The default is prefix/share.
Specify the installation directory for documentation in info format.
The default is datarootdir/info.
Specify the installation directory for some architecture-independent
data files referenced by GCC. The default is datarootdir.
Specify the installation directory for documentation files (other
than Info) for GCC. The default is datarootdir/doc.
Specify the installation directory for HTML documentation files.
The default is docdir.
Specify the installation directory for PDF documentation files.
The default is docdir.
Specify the installation directory for manual pages. The default is
datarootdir/man. (Note that the manual pages are only extracts
from the full GCC manuals, which are provided in Texinfo format. The manpages
*************** are derived by an automatic conversion p
*** 275,288 ****
manual.)
Specify
the installation directory for G++ header files. The default depends
on other configuration options, and differs between cross and native
configurations.
Specify additional command line driver SPECS.
This can be useful if you need to turn on a non-standard feature by
default without modifying the compiler’s source code, for instance
--- 284,297 ----
manual.)
Specify
the installation directory for G++ header files. The default depends
on other configuration options, and differs between cross and native
configurations.
Specify additional command line driver SPECS.
This can be useful if you need to turn on a non-standard feature by
default without modifying the compiler’s source code, for instance
*************** See “Spec Files” in the main
*** 293,299 ****
GCC supports some transformations of the names of its programs when
installing them. This option prepends prefix to the names of
programs to install in bindir (see above). For example, specifying
--- 302,308 ----
GCC supports some transformations of the names of its programs when
installing them. This option prepends prefix to the names of
programs to install in bindir (see above). For example, specifying
*************** programs to install in bindir
*** 301,314 ****
being installed as /usr/local/bin/foo-gcc.
Appends suffix to the names of programs to install in bindir
(see above). For example, specifying --program-suffix=-3.1
would result in ‘gcc’ being installed as
/usr/local/bin/gcc-3.1.
Applies the ‘sed’ script pattern to be applied to the names
of programs to install in bindir (see above). pattern has to
consist of one or more basic ‘sed’ editing commands, separated by
--- 310,323 ----
being installed as /usr/local/bin/foo-gcc.
Appends suffix to the names of programs to install in bindir
(see above). For example, specifying --program-suffix=-3.1
would result in ‘gcc’ being installed as
/usr/local/bin/gcc-3.1.
Applies the ‘sed’ script pattern to be applied to the names
of programs to install in bindir (see above). pattern has to
consist of one or more basic ‘sed’ editing commands, separated by
*************** resulting binary would be installed as
*** 341,347 ****
transformed yet, which will be fixed in some time.
Specify the
installation directory for local include files. The default is
/usr/local. Specify this option if you want the compiler to
--- 350,356 ----
transformed yet, which will be fixed in some time.
Specify the
installation directory for local include files. The default is
/usr/local. Specify this option if you want the compiler to
*************** install part of GCC. Perhaps they make
*** 414,425 ****
installing GCC creates the directory.
Specifies that GCC should use only the major number rather than
major.minor.patchlevel in filesystem paths.
Specifies that dirname is the directory that contains native system
header files, rather than /usr/include. This option is most useful
if you are creating a compiler that should be isolated from the system
--- 423,434 ----
installing GCC creates the directory.
Specifies that GCC should use only the major number rather than
major.minor.patchlevel in filesystem paths.
Specifies that dirname is the directory that contains native system
header files, rather than /usr/include. This option is most useful
if you are creating a compiler that should be isolated from the system
*************** as much as possible. It is most commonl
*** 428,434 ****
dirname inside the system root specified by that option.
Build shared versions of libraries, if shared libraries are supported on
the target platform. Unlike GCC 2.95.x and earlier, shared libraries
are enabled by default on all platforms that support shared libraries.
--- 437,443 ----
dirname inside the system root specified by that option.
Build shared versions of libraries, if shared libraries are supported on
the target platform. Unlike GCC 2.95.x and earlier, shared libraries
are enabled by default on all platforms that support shared libraries.
*************** argument, only --enable-shared
Specify that the host code should be built into position-independent
machine code (with -fPIC), allowing it to be used within shared libraries,
but yielding a slightly slower compiler.
--- 458,464 ----
code.
Specify that the host code should be built into position-independent
machine code (with -fPIC), allowing it to be used within shared libraries,
but yielding a slightly slower compiler.
*************** but yielding a slightly slower compiler.
*** 460,466 ****
libraries.
Specify that the compiler should assume that the
assembler it finds is the GNU assembler. However, this does not modify
the rules to find an assembler and will result in confusion if the
--- 469,475 ----
libraries.
Specify that the compiler should assume that the
assembler it finds is the GNU assembler. However, this does not modify
the rules to find an assembler and will result in confusion if the
*************** whether you use the GNU assembler. On a
*** 483,489 ****
Specify that the compiler should use the assembler pointed to by
pathname, rather than the one found by the standard rules to find
an assembler, which are:
--- 492,498 ----
Specify that the compiler should use the assembler pointed to by
pathname, rather than the one found by the standard rules to find
an assembler, which are:
*************** assemblers installed and want to choose
*** 516,550 ****
above rules.
Same as --with-gnu-as
but for the linker.
Same as --with-as
but for the linker.
Same as --with-as
but for the debug linker (only used on Darwin platforms so far).
Specify that stabs debugging
information should be used instead of whatever format the host normally
uses. Normally GCC uses the same debug format as the host system.
Specify the default TLS dialect, for systems were there is a choice.
For ARM targets, possible values for dialect are Specify whether to enable or disable multiarch support. The default is
to check for glibc start files in a multiarch location, and enable it
if the files are found. The auto detection is enabled for native builds,
--- 525,559 ----
above rules.
Same as --with-gnu-as
but for the linker.
Same as --with-as
but for the linker.
Same as --with-as
but for the debug linker (only used on Darwin platforms so far).
Specify that stabs debugging
information should be used instead of whatever format the host normally
uses. Normally GCC uses the same debug format as the host system.
Specify the default TLS dialect, for systems were there is a choice.
For ARM targets, possible values for dialect are Specify whether to enable or disable multiarch support. The default is
to check for glibc start files in a multiarch location, and enable it
if the files are found. The auto detection is enabled for native builds,
*************** More documentation about multiarch can b
*** 554,566 ****
https://wiki.debian.org/Multiarch.
Force use of the Specify whether to enable or disable the vtable verification feature.
Enabling this feature causes libstdc++ to be built with its virtual calls
in verifiable mode. This means that, when linked with libvtv, every
--- 563,575 ----
https://wiki.debian.org/Multiarch.
Force use of the Specify whether to enable or disable the vtable verification feature.
Enabling this feature causes libstdc++ to be built with its virtual calls
in verifiable mode. This means that, when linked with libvtv, every
*************** still be built (see --disable-libv
*** 573,584 ****
--disable-vtable-verify is the default.
Specify that the run-time library used for coverage analysis
and associated host tools should not be built.
Specify that multiple target
libraries to support different target variants, calling
conventions, etc. should not be built. The default is to build a
--- 582,593 ----
--disable-vtable-verify is the default.
Specify that the run-time library used for coverage analysis
and associated host tools should not be built.
Specify that multiple target
libraries to support different target variants, calling
conventions, etc. should not be built. The default is to build a
*************** predefined set of them.
*** 587,609 ****
Some targets provide finer-grained control over which multilibs are built
(e.g., --disable-softfloat):
fpu, 26bit, underscore, interwork, biendian, nofmult.
softfloat, m68881, m68000, m68020.
single-float, biendian, softfloat.
no-exceptions
aix64, pthread, softfloat, powercpu, powerpccpu, powerpcos, biendian,
sysv, aix.
Some targets provide finer-grained control over which multilibs are built
(e.g., --disable-softfloat):
fpu, 26bit, underscore, interwork, biendian, nofmult.
softfloat, m68881, m68000, m68020.
single-float, biendian, softfloat.
no-exceptions
aix64, pthread, softfloat, powercpu, powerpccpu, powerpcos, biendian,
sysv, aix.
Specify what multilibs to build. list is a comma separated list of
values, possibly consisting of a single value. Currently only implemented
for aarch64*-*-*, arm*-*-*, riscv*-*-*, sh*-*-* and x86-64-*-linux*. The
accepted values and meaning for each target is given below.
list is a comma separated list of Specify what multilibs to build. list is a comma separated list of
values, possibly consisting of a single value. Currently only implemented
for aarch64*-*-*, arm*-*-*, riscv*-*-*, sh*-*-* and x86-64-*-linux*. The
accepted values and meaning for each target is given below.
list is a comma separated list of list is a comma separated list of list is a comma separated list of list is a single ABI name. The target architecture must be either
list is a single ABI name. The target architecture must be either
list is a comma separated list of CPU names. These must be of the
form list is a comma separated list of CPU names. These must be of the
form Example 1: to configure a compiler for SH4A only, but supporting both
endians, with little endian being the default:
! Example 2: to configure a compiler for both SH4A and SH4AL-DSP, but with
only little endian SH4AL:
! list is a comma separated list of Example 1: to configure a compiler for SH4A only, but supporting both
endians, with little endian being the default:
! Example 2: to configure a compiler for both SH4A and SH4AL-DSP, but with
only little endian SH4AL:
! list is a comma separated list of Specify what endians to use.
Currently only implemented for sh*-*-*.
endians may be one of the following:
Use big endian exclusively.
Use little endian exclusively.
Use big endian by default. Provide a multilib for little endian.
Use little endian by default. Provide a multilib for big endian.
Specify that the target
supports threads. This affects the Objective-C compiler and runtime
library, and exception handling for other languages like C++.
--- 753,780 ----
Specify what endians to use.
Currently only implemented for sh*-*-*.
endians may be one of the following:
Use big endian exclusively.
Use little endian exclusively.
Use big endian by default. Provide a multilib for little endian.
Use little endian by default. Provide a multilib for big endian.
Specify that the target
supports threads. This affects the Objective-C compiler and runtime
library, and exception handling for other languages like C++.
*************** available for the system. In this case,
*** 778,832 ****
alias for --enable-threads=single.
Specify that threading support should be disabled for the system.
This is an alias for --enable-threads=single.
Specify that
lib is the thread support library. This affects the Objective-C
compiler and runtime library, and exception handling for other languages
like C++. The possibilities for lib are:
AIX thread support.
DCE thread support.
LynxOS thread support.
MIPS SDE thread support.
This is an alias for ‘single’.
Generic POSIX/Unix98 thread support.
RTEMS thread support.
Disable thread support, should work for all platforms.
TPF thread support.
VxWorks thread support.
Microsoft Win32 API thread support.
Specify that the target supports TLS (Thread Local Storage). Usually
configure can correctly determine if TLS is supported. In cases where
it guesses incorrectly, TLS can be explicitly enabled or disabled with
--- 787,841 ----
alias for --enable-threads=single.
Specify that threading support should be disabled for the system.
This is an alias for --enable-threads=single.
Specify that
lib is the thread support library. This affects the Objective-C
compiler and runtime library, and exception handling for other languages
like C++. The possibilities for lib are:
AIX thread support.
DCE thread support.
LynxOS thread support.
MIPS SDE thread support.
This is an alias for ‘single’.
Generic POSIX/Unix98 thread support.
RTEMS thread support.
Disable thread support, should work for all platforms.
TPF thread support.
VxWorks thread support.
Microsoft Win32 API thread support.
Specify that the target supports TLS (Thread Local Storage). Usually
configure can correctly determine if TLS is supported. In cases where
it guesses incorrectly, TLS can be explicitly enabled or disabled with
*************** the assembler supports TLS but the C lib
*** 835,854 ****
assumptions made by the configure test are incorrect.
Specify that the target does not support TLS.
This is an alias for --enable-tls=no.
Disable TM clone registry in libgcc. It is enabled in libgcc by default.
This option helps to reduce code size for embedded targets which do
not use transactional memory.
Specify which cpu variant the compiler should generate code for by default.
cpu will be used as the default value of the -mcpu= switch.
This option is only supported on some targets, including ARC, ARM, i386, M68k,
--- 844,863 ----
assumptions made by the configure test are incorrect.
Specify that the target does not support TLS.
This is an alias for --enable-tls=no.
Disable TM clone registry in libgcc. It is enabled in libgcc by default.
This option helps to reduce code size for embedded targets which do
not use transactional memory.
Specify which cpu variant the compiler should generate code for by default.
cpu will be used as the default value of the -mcpu= switch.
This option is only supported on some targets, including ARC, ARM, i386, M68k,
*************** PowerPC, and SPARC. It is mandatory for
*** 858,873 ****
x86-64, PowerPC, and SPARC.
These configure options provide default values for the -mschedule=,
-march=, -mtune=, -mabi=, and -mfpu=
options and for -mhard-float or -msoft-float. As with
--- 867,882 ----
x86-64, PowerPC, and SPARC.
These configure options provide default values for the -mschedule=,
-march=, -mtune=, -mabi=, and -mfpu=
options and for -mhard-float or -msoft-float. As with
*************** options and for -mhard-float
Specify if the compiler should default to -marm or -mthumb.
This option is only supported on ARM targets.
This option sets the default for the -mstack-offset=num option,
and will thus generally also control the setting of this option for
libraries. This option is only supported on Epiphany targets.
This options sets -mfpmath=sse by default and specifies the default
ISA for floating-point arithmetics. You can select either ‘sse’ which
enables -msse2 or ‘avx’ which enables -mavx by default.
This option is only supported on i386 and x86-64 targets.
On MIPS targets, set the default value for the -mfp option when using
the o32 ABI. The possibilities for mode are:
Use the o32 FP32 ABI extension, as with the -mfp32 command-line
option.
Use the o32 FPXX ABI extension, as with the -mfpxx command-line
option.
Use the o32 FP64 ABI extension, as with the -mfp64 command-line
option.
Options specification
!
--prefix=dirname
!
--prefix=dirname
autoconf
options are supported. Normally you
should not need to use these options.
!
--exec-prefix=dirname
--bindir=dirname
gcc
and g++
). The default is
exec-prefix/bin.
--libdir=dirname
--libexecdir=dirname
--with-slibdir=dirname
--datarootdir=dirname
--infodir=dirname
--datadir=dirname
--docdir=dirname
--htmldir=dirname
--pdfdir=dirname
--mandir=dirname
autoconf
options are supported. Normally you
should not need to use these options.
!
--exec-prefix=dirname
--bindir=dirname
gcc
and g++
). The default is
exec-prefix/bin.
--libdir=dirname
--libexecdir=dirname
--with-slibdir=dirname
--datarootdir=dirname
--infodir=dirname
--datadir=dirname
--docdir=dirname
--htmldir=dirname
--pdfdir=dirname
--mandir=dirname
--with-gxx-include-dir=dirname
--with-specs=specs
--with-gxx-include-dir=dirname
--with-specs=specs
--program-prefix=prefix
--program-prefix=prefix
--program-suffix=suffix
--program-transform-name=pattern
--program-suffix=suffix
--program-transform-name=pattern
--with-local-prefix=dirname
--with-local-prefix=dirname
--with-gcc-major-version-only
--with-native-system-header-dir=dirname
--with-gcc-major-version-only
--with-native-system-header-dir=dirname
--enable-shared[=package[,…]]
--enable-shared[=package[,…]]
--enable-host-shared
--enable-host-shared
--with-gnu-as
--with-gnu-as
--with-as=pathname
--with-as=pathname
--with-gnu-ld
--with-ld=pathname
--with-dsymutil=pathname
--with-stabs
--with-tls=dialect
gnu
or
gnu2
, which select between the original GNU dialect and the GNU TLS
descriptor-based dialect.
--enable-multiarch
--with-gnu-ld
--with-ld=pathname
--with-dsymutil=pathname
--with-stabs
--with-tls=dialect
gnu
or
gnu2
, which select between the original GNU dialect and the GNU TLS
descriptor-based dialect.
--enable-multiarch
--enable-sjlj-exceptions
setjmp
/longjmp
-based scheme for exceptions.
‘configure’ ordinarily picks the correct value based on the platform.
Only use this option if you are sure you need a different setting.
--enable-vtable-verify
--enable-sjlj-exceptions
setjmp
/longjmp
-based scheme for exceptions.
‘configure’ ordinarily picks the correct value based on the platform.
Only use this option if you are sure you need a different setting.
--enable-vtable-verify
--disable-gcov
--disable-multilib
--disable-gcov
--disable-multilib
!
arm-*-*
m68*-*-*
mips*-*-*
msp430-*-*
powerpc*-*-*, rs6000*-*-*
!
arm-*-*
m68*-*-*
mips*-*-*
msp430-*-*
powerpc*-*-*, rs6000*-*-*
--with-multilib-list=list
--without-multilib-list
!
aarch64*-*-*
ilp32
, and lp64
to enable ILP32 and LP64 run-time libraries, respectively. If
list is empty, then there will be no multilibs and only the
--- 620,634 ----
--with-multilib-list=list
--without-multilib-list
!
aarch64*-*-*
ilp32
, and lp64
to enable ILP32 and LP64 run-time libraries, respectively. If
list is empty, then there will be no multilibs and only the
*************** default set of libraries is selected bas
*** 629,635 ****
--target.
arm*-*-*
aprofile
and
rmprofile
to build multilibs for A or R and M architecture
profiles respectively. Note that, due to some limitation of the current
--- 638,644 ----
--target.
arm*-*-*
aprofile
and
rmprofile
to build multilibs for A or R and M architecture
profiles respectively. Note that, due to some limitation of the current
*************** profile. The union of these options is
*** 691,697 ****
riscv*-*-*
rv32gc
or rv64gc
. This will build a single multilib for the
specified architecture and ABI pair. If --with-multilib-list
is not
--- 700,706 ----
riscv*-*-*
rv32gc
or rv64gc
. This will build a single multilib for the
specified architecture and ABI pair. If --with-multilib-list
is not
*************** given, then a default set of multilibs i
*** 699,705 ****
--target. This is usually a large set of multilibs.
sh*-*-*
sh*
or m*
(in which case they match the compiler option
for that processor). The list should not contain any endian options -
--- 708,714 ----
--target. This is usually a large set of multilibs.
sh*-*-*
sh*
or m*
(in which case they match the compiler option
for that processor). The list should not contain any endian options -
*************** specialized subset.
*** 720,738 ****
--with-cpu=sh4a --with-endian=little,big --with-multilib-list=
--with-cpu=sh4a --with-endian=little,big \
--with-multilib-list=sh4al,!mb/m4al
x86-64-*-linux*
m32
, m64
and
mx32
to enable 32-bit, 64-bit and x32 run-time libraries,
respectively. If list is empty, then there will be no multilibs
--- 729,747 ----
--with-cpu=sh4a --with-endian=little,big --with-multilib-list=
--with-cpu=sh4a --with-endian=little,big \
--with-multilib-list=sh4al,!mb/m4al
x86-64-*-linux*
m32
, m64
and
mx32
to enable 32-bit, 64-bit and x32 run-time libraries,
respectively. If list is empty, then there will be no multilibs
*************** and only the default run-time library wi
*** 744,771 ****
--with-endian=endians
!
big
little
big,little
little,big
--enable-threads
--with-endian=endians
!
big
little
big,little
little,big
--enable-threads
--disable-threads
--enable-threads=lib
!
aix
dce
lynx
mipssde
no
posix
rtems
single
tpf
vxworks
win32
--enable-tls
--disable-threads
--enable-threads=lib
!
aix
dce
lynx
mipssde
no
posix
rtems
single
tpf
vxworks
win32
--enable-tls
--disable-tls
--disable-tm-clone-registry
--with-cpu=cpu
--with-cpu-32=cpu
--with-cpu-64=cpu
--disable-tls
--disable-tm-clone-registry
--with-cpu=cpu
--with-cpu-32=cpu
--with-cpu-64=cpu
--with-schedule=cpu
--with-arch=cpu
--with-arch-32=cpu
--with-arch-64=cpu
--with-tune=cpu
--with-tune-32=cpu
--with-tune-64=cpu
--with-abi=abi
--with-fpu=type
--with-float=type
--with-schedule=cpu
--with-arch=cpu
--with-arch-32=cpu
--with-arch-64=cpu
--with-tune=cpu
--with-tune-32=cpu
--with-tune-64=cpu
--with-abi=abi
--with-fpu=type
--with-float=type
--with-mode=mode
--with-stack-offset=num
--with-fpmath=isa
--with-fp-32=mode
!
32
xx
64
--with-mode=mode
Specify if the compiler should default to -marm or -mthumb. This option is only supported on ARM targets.
--with-stack-offset=num
This option sets the default for the -mstack-offset=num option, and will thus generally also control the setting of this option for libraries. This option is only supported on Epiphany targets.
--with-fpmath=isa
This options sets -mfpmath=sse by default and specifies the default ISA for floating-point arithmetics. You can select either ‘sse’ which enables -msse2 or ‘avx’ which enables -mavx by default. This option is only supported on i386 and x86-64 targets.
--with-fp-32=mode
On MIPS targets, set the default value for the -mfp option when using the o32 ABI. The possibilities for mode are:
32
Use the o32 FP32 ABI extension, as with the -mfp32 command-line option.
xx
Use the o32 FPXX ABI extension, as with the -mfpxx command-line option.
64
Use the o32 FP64 ABI extension, as with the -mfp64 command-line option.
--with-odd-spreg-32
On MIPS targets, set the -modd-spreg option by default when using the o32 ABI.
--without-odd-spreg-32
On MIPS targets, set the -mno-odd-spreg option by default when using the o32 ABI. This is normally used in conjunction with --with-fp-32=64 in order to target the o32 FP64A ABI extension.
--with-nan=encoding
On MIPS targets, set the default encoding convention to use for the special not-a-number (NaN) IEEE 754 floating-point data. The possibilities for encoding are:
legacy
Use the legacy encoding, as with the -mnan=legacy command-line option.
2008
Use the 754-2008 encoding, as with the -mnan=2008 command-line option.
--with-odd-spreg-32
On MIPS targets, set the -modd-spreg option by default when using the o32 ABI.
--without-odd-spreg-32
On MIPS targets, set the -mno-odd-spreg option by default when using the o32 ABI. This is normally used in conjunction with --with-fp-32=64 in order to target the o32 FP64A ABI extension.
--with-nan=encoding
On MIPS targets, set the default encoding convention to use for the special not-a-number (NaN) IEEE 754 floating-point data. The possibilities for encoding are:
legacy
Use the legacy encoding, as with the -mnan=legacy command-line option.
2008
Use the 754-2008 encoding, as with the -mnan=2008 command-line option.
--with-divide=type
Specify how the compiler should generate code for checking for division by zero. This option is only supported on the MIPS target. The possibilities for type are:
traps
Division by zero checks use conditional traps (this is the default on systems that support conditional traps).
breaks
Division by zero checks use the break instruction.
--with-llsc
On MIPS targets, make -mllsc the default when no -mno-llsc option is passed. This is the default for Linux-based targets, as the kernel will emulate them if the ISA does not provide them.
--without-llsc
On MIPS targets, make -mno-llsc the default when no -mllsc option is passed.
--with-synci
On MIPS targets, make -msynci the default when no -mno-synci option is passed.
--without-synci
On MIPS targets, make -mno-synci the default when no -msynci option is passed. This is the default.
--with-lxc1-sxc1
On MIPS targets, make -mlxc1-sxc1 the default when no -mno-lxc1-sxc1 option is passed. This is the default.
--without-lxc1-sxc1
On MIPS targets, make -mno-lxc1-sxc1 the default when no -mlxc1-sxc1 option is passed. The indexed load/store instructions are not directly a problem but can lead to unexpected --- 955,1004 ---- -mnan=legacy command-line options has been used.
--with-divide=type
Specify how the compiler should generate code for checking for division by zero. This option is only supported on the MIPS target. The possibilities for type are:
traps
Division by zero checks use conditional traps (this is the default on systems that support conditional traps).
breaks
Division by zero checks use the break instruction.
--with-llsc
On MIPS targets, make -mllsc the default when no -mno-llsc option is passed. This is the default for Linux-based targets, as the kernel will emulate them if the ISA does not provide them.
--without-llsc
On MIPS targets, make -mno-llsc the default when no -mllsc option is passed.
--with-synci
On MIPS targets, make -msynci the default when no -mno-synci option is passed.
--without-synci
On MIPS targets, make -mno-synci the default when no -msynci option is passed. This is the default.
--with-lxc1-sxc1
On MIPS targets, make -mlxc1-sxc1 the default when no -mno-lxc1-sxc1 option is passed. This is the default.
--without-lxc1-sxc1
On MIPS targets, make -mno-lxc1-sxc1 the default when no -mlxc1-sxc1 option is passed. The indexed load/store instructions are not directly a problem but can lead to unexpected *************** pure 32-bit environment and can hold tru *** 1005,1016 **** the address space is accurately set to be 32-bit for o32 and n32.
--with-madd4
On MIPS targets, make -mmadd4 the default when no -mno-madd4 option is passed. This is the default.
--without-madd4
On MIPS targets, make -mno-madd4 the default when no
-mmadd4 option is passed. The madd4
instruction
family can be problematic when targeting a combination of cores that
--- 1014,1025 ----
the address space is accurately set to be 32-bit for o32 and n32.
--with-madd4
On MIPS targets, make -mmadd4 the default when no -mno-madd4 option is passed. This is the default.
--without-madd4
On MIPS targets, make -mno-madd4 the default when no
-mmadd4 option is passed. The madd4
instruction
family can be problematic when targeting a combination of cores that
*************** only way to ensure compatible code is ge
*** 1021,1040 ****
a performance penalty.
--with-mips-plt
On MIPS targets, make use of copy relocations and PLTs. These features are extensions to the traditional SVR4-based MIPS ABIs and require support from GNU binutils and the runtime C library.
--with-stack-clash-protection-guard-size=size
On certain targets this option sets the default stack clash protection guard size as a power of two in bytes. On AArch64 size is required to be either 12 (4KB) or 16 (64KB).
--enable-__cxa_atexit
Define if you want to use __cxa_atexit, rather than atexit, to register C++ destructors for local statics and global objects. This is essential for fully standards-compliant handling of --- 1030,1049 ---- a performance penalty.
--with-mips-plt
On MIPS targets, make use of copy relocations and PLTs. These features are extensions to the traditional SVR4-based MIPS ABIs and require support from GNU binutils and the runtime C library.
--with-stack-clash-protection-guard-size=size
On certain targets this option sets the default stack clash protection guard size as a power of two in bytes. On AArch64 size is required to be either 12 (4KB) or 16 (64KB).
--enable-__cxa_atexit
Define if you want to use __cxa_atexit, rather than atexit, to register C++ destructors for local statics and global objects. This is essential for fully standards-compliant handling of *************** only available on systems with GNU libc. *** 1043,1070 **** -fuse-cxa-atexit to be passed by default.
--enable-gnu-indirect-function
Define if you want to enable the ifunc
attribute. This option is
currently only available on systems with GNU libc on certain targets.
--enable-target-optspace
Specify that target libraries should be optimized for code space instead of code speed. This is the default for the m32r platform.
--with-cpp-install-dir=dirname
Specify that the user visible cpp
program should be installed
in prefix/dirname/cpp, in addition to bindir.
--enable-comdat
Enable COMDAT group support. This is primarily used to override the automatically detected value.
--enable-initfini-array
Force the use of sections .init_array
and .fini_array
(instead of .init
and .fini
) for constructors and
destructors. Option --disable-initfini-array has the
--- 1052,1079 ----
-fuse-cxa-atexit to be passed by default.
--enable-gnu-indirect-function
Define if you want to enable the ifunc
attribute. This option is
currently only available on systems with GNU libc on certain targets.
--enable-target-optspace
Specify that target libraries should be optimized for code space instead of code speed. This is the default for the m32r platform.
--with-cpp-install-dir=dirname
Specify that the user visible cpp
program should be installed
in prefix/dirname/cpp, in addition to bindir.
--enable-comdat
Enable COMDAT group support. This is primarily used to override the automatically detected value.
--enable-initfini-array
Force the use of sections .init_array
and .fini_array
(instead of .init
and .fini
) for constructors and
destructors. Option --disable-initfini-array has the
*************** will try to guess whether the .ini
*** 1073,1085 ****
.fini_array
sections are supported and, if they are, use them.
--enable-link-mutex
When building GCC, use a mutex to avoid linking the compilers for multiple languages at the same time, to avoid thrashing on build systems with limited free memory. The default is not to use such a mutex.
--enable-maintainer-mode
The build rules that regenerate the Autoconf and Automake output files as
well as the GCC master message catalog gcc.pot are normally
disabled. This is because it can only be rebuilt if the complete source
--- 1082,1094 ----
.fini_array
sections are supported and, if they are, use them.
--enable-link-mutex
When building GCC, use a mutex to avoid linking the compilers for multiple languages at the same time, to avoid thrashing on build systems with limited free memory. The default is not to use such a mutex.
--enable-maintainer-mode
The build rules that regenerate the Autoconf and Automake output files as well as the GCC master message catalog gcc.pot are normally disabled. This is because it can only be rebuilt if the complete source *************** this. Note that you need a recent versi *** 1089,1102 **** to do so.
--disable-bootstrap
For a native build, the default configuration is to perform a 3-stage bootstrap of the compiler when ‘make’ is invoked, testing that GCC can compile itself correctly. If you want to disable this process, you can configure with --disable-bootstrap.
--enable-bootstrap
In special cases, you may want to perform a 3-stage build even if the target and host triplets are different. This is possible when the host can run code compiled for --- 1098,1111 ---- to do so.
--disable-bootstrap
For a native build, the default configuration is to perform a 3-stage bootstrap of the compiler when ‘make’ is invoked, testing that GCC can compile itself correctly. If you want to disable this process, you can configure with --disable-bootstrap.
--enable-bootstrap
In special cases, you may want to perform a 3-stage build even if the target and host triplets are different. This is possible when the host can run code compiled for *************** Starting from GCC 4.2, to do this you ha *** 1105,1111 **** with --enable-bootstrap.
--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, --- 1114,1120 ---- with --enable-bootstrap.
--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, *************** is not a requirement that the users of s *** 1120,1126 **** or makeinfo.
--enable-version-specific-runtime-libs
Specify that runtime libraries should be installed in the compiler specific subdirectory (libdir/gcc) rather than the usual places. In --- 1129,1135 ---- or makeinfo.
--enable-version-specific-runtime-libs
Specify that runtime libraries should be installed in the compiler specific subdirectory (libdir/gcc) rather than the usual places. In *************** parallel. The default is ‘y *** 1132,1138 **** the remaining libraries.
--with-aix-soname=‘aix’, ‘svr4’ or ‘both’
Traditional AIX shared library versioning (versioned Shared Object
files as members of unversioned Archive Library
files named
‘lib.a’) causes numerous headaches for package managers. However,
--- 1141,1147 ----
the remaining libraries.
--with-aix-soname=‘aix’, ‘svr4’ or ‘both’
Traditional AIX shared library versioning (versioned Shared Object
files as members of unversioned Archive Library
files named
‘lib.a’) causes numerous headaches for package managers. However,
*************** where this is called the "SONAME&qu
*** 1143,1156 ****
linker does search for ‘libNAME.so’ before ‘libNAME.a’ library
filenames with the ‘-lNAME’ linker flag.
For detailed information please refer to the AIX ld Command reference.
As long as shared library creation is enabled, upon:
--with-aix-soname=aix
--with-aix-soname=both
A (traditional AIX) Shared Archive Library
file is created:
For detailed information please refer to the AIX ld Command reference.
As long as shared library creation is enabled, upon:
--with-aix-soname=aix
--with-aix-soname=both
A (traditional AIX) Shared Archive Library
file is created:
--with-aix-soname=both
--with-aix-soname=svr4
A (second) Shared Archive Library
file is created:
--with-aix-soname=both
--with-aix-soname=svr4
A (second) Shared Archive Library
file is created:
As long as static library creation is enabled, upon:
--with-aix-soname=svr4
A Static Archive Library
is created:
As long as static library creation is enabled, upon:
--with-aix-soname=svr4
A Static Archive Library
is created:
Default is the traditional behavior --with-aix-soname=‘aix’.
--enable-languages=lang1,lang2,…
Specify that only a particular subset of compilers and
their runtime libraries should be built. For a list of valid values for
langN you can issue the following command in the
gcc directory of your GCC source tree:
!
grep ^language= */config-lang.in
Currently, you can use any of the following:
all
, default
, ada
, c
, c++
, d
,
--- 1247,1259 ----
Default is the traditional behavior --with-aix-soname=‘aix’.
--enable-languages=lang1,lang2,…
Specify that only a particular subset of compilers and
their runtime libraries should be built. For a list of valid values for
langN you can issue the following command in the
gcc directory of your GCC source tree:
!
grep ^language= */config-lang.in
Currently, you can use any of the following:
all
, default
, ada
, c
, c++
, d
,
*************** exception is jit
language,
*** 1260,1266 ****
--enable-host-shared to be included with all
.
--enable-stage1-languages=lang1,lang2,…
Specify that a particular subset of compilers and their runtime
libraries should be built with the system C compiler during stage 1 of
the bootstrap process, rather than only in later stages with the
--- 1269,1275 ----
--enable-host-shared to be included with all
.
--enable-stage1-languages=lang1,lang2,…
Specify that a particular subset of compilers and their runtime
libraries should be built with the system C compiler during stage 1 of
the bootstrap process, rather than only in later stages with the
*************** stage1-bubble all-target, or run
*** 1276,1327 ****
for the specified languages using make stage1-start check-gcc
.
--disable-libada
Specify that the run-time libraries and tools used by GNAT should not be built. This can be useful for debugging, or for compatibility with previous Ada build procedures, when it was required to explicitly do a ‘make -C gcc gnatlib_and_tools’.
--disable-libsanitizer
Specify that the run-time libraries for the various sanitizers should not be built.
--disable-libssp
Specify that the run-time libraries for stack smashing protection should not be built or linked against. On many targets library support is provided by the C library instead.
--disable-libquadmath
Specify that the GCC quad-precision math library should not be built. On some systems, the library is required to be linkable when building the Fortran front end, unless --disable-libquadmath-support is used.
--disable-libquadmath-support
Specify that the Fortran front end and libgfortran
do not add
support for libquadmath
on systems supporting it.
--disable-libgomp
Specify that the GNU Offloading and Multi Processing Runtime Library should not be built.
--disable-libvtv
Specify that the run-time libraries used by vtable verification should not be built.
--with-dwarf2
Specify that the compiler should use DWARF 2 debugging information as the default.
--with-advance-toolchain=at
On 64-bit PowerPC Linux systems, configure the compiler to use the
header files, library files, and the dynamic linker from the Advance
Toolchain release at instead of the default versions that are
--- 1285,1336 ----
for the specified languages using make stage1-start check-gcc
.
--disable-libada
Specify that the run-time libraries and tools used by GNAT should not be built. This can be useful for debugging, or for compatibility with previous Ada build procedures, when it was required to explicitly do a ‘make -C gcc gnatlib_and_tools’.
--disable-libsanitizer
Specify that the run-time libraries for the various sanitizers should not be built.
--disable-libssp
Specify that the run-time libraries for stack smashing protection should not be built or linked against. On many targets library support is provided by the C library instead.
--disable-libquadmath
Specify that the GCC quad-precision math library should not be built. On some systems, the library is required to be linkable when building the Fortran front end, unless --disable-libquadmath-support is used.
--disable-libquadmath-support
Specify that the Fortran front end and libgfortran
do not add
support for libquadmath
on systems supporting it.
--disable-libgomp
Specify that the GNU Offloading and Multi Processing Runtime Library should not be built.
--disable-libvtv
Specify that the run-time libraries used by vtable verification should not be built.
--with-dwarf2
Specify that the compiler should use DWARF 2 debugging information as the default.
--with-advance-toolchain=at
On 64-bit PowerPC Linux systems, configure the compiler to use the header files, library files, and the dynamic linker from the Advance Toolchain release at instead of the default versions that are *************** intended for the developers of GCC, and *** 1330,1337 **** use.
--enable-targets=all
--enable-targets=target_list
Some GCC targets, e.g. powerpc64-linux, build bi-arch compilers. These are compilers that are able to generate either 64-bit or 32-bit code. Typically, the corresponding 32-bit target, e.g. --- 1339,1346 ---- use.
--enable-targets=all
--enable-targets=target_list
Some GCC targets, e.g. powerpc64-linux, build bi-arch compilers. These are compilers that are able to generate either 64-bit or 32-bit code. Typically, the corresponding 32-bit target, e.g. *************** Currently, this option only affects spar *** 1345,1369 **** mips-linux and s390-linux.
--enable-default-pie
Turn on -fPIE and -pie by default.
--enable-secureplt
This option enables -msecure-plt by default for powerpc-linux. See “RS/6000 and PowerPC Options” in the main manual
--enable-default-ssp
Turn on -fstack-protector-strong by default.
--enable-cld
This option enables -mcld by default for 32-bit x86 targets. See “i386 and x86-64 Options” in the main manual
--enable-large-address-aware
The --enable-large-address-aware option arranges for MinGW executables to be linked using the --large-address-aware option, that enables the use of more than 2GB of memory. If GCC is --- 1354,1378 ---- mips-linux and s390-linux.
--enable-default-pie
Turn on -fPIE and -pie by default.
--enable-secureplt
This option enables -msecure-plt by default for powerpc-linux. See “RS/6000 and PowerPC Options” in the main manual
--enable-default-ssp
Turn on -fstack-protector-strong by default.
--enable-cld
This option enables -mcld by default for 32-bit x86 targets. See “i386 and x86-64 Options” in the main manual
--enable-large-address-aware
The --enable-large-address-aware option arranges for MinGW executables to be linked using the --large-address-aware option, that enables the use of more than 2GB of memory. If GCC is *************** configured with this option, its effects *** 1372,1385 **** compiler driver.
--enable-win32-registry
--enable-win32-registry=key
--disable-win32-registry
The --enable-win32-registry option enables Microsoft Windows-hosted GCC to look up installations paths in the registry using the following key:
!HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\key
key defaults to GCC version number, and can be overridden by the --- 1381,1394 ---- compiler driver.
--enable-win32-registry
--enable-win32-registry=key
--disable-win32-registry
The --enable-win32-registry option enables Microsoft Windows-hosted GCC to look up installations paths in the registry using the following key:
!HKEY_LOCAL_MACHINE\SOFTWARE\Free Software Foundation\key
key defaults to GCC version number, and can be overridden by the *************** by default, and can be disabled by
--nfp
Specify that the machine does not have a floating point unit. This option only applies to ‘m68k-sun-sunosn’. On any other system, --nfp has no effect.
--enable-werror
--disable-werror
--enable-werror=yes
--enable-werror=no
When you specify this option, it controls whether certain files in the compiler are built with -Werror in bootstrap stage2 and later. If you don’t specify it, -Werror is turned on for the main --- 1400,1415 ---- option. This option has no effect on the other hosts.
--nfp
Specify that the machine does not have a floating point unit. This option only applies to ‘m68k-sun-sunosn’. On any other system, --nfp has no effect.
--enable-werror
--disable-werror
--enable-werror=yes
--enable-werror=no
When you specify this option, it controls whether certain files in the compiler are built with -Werror in bootstrap stage2 and later. If you don’t specify it, -Werror is turned on for the main *************** final releases. The specific files whic *** 1409,1417 **** controlled by the Makefiles.
--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 --- 1418,1426 ---- controlled by the Makefiles.
--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 *************** expensive and the ‘df *** 1449,1457 **** 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 --- 1458,1466 ---- 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 *************** with checking for stage1 enabled, you ca *** 1463,1470 **** to disable checking for the stage1 compiler.
--enable-coverage
--enable-coverage=level
With this option, the compiler is built to collect self coverage information, every time it is run. This is for internal development purposes, and only works when the compiler is being built with gcc. The --- 1472,1479 ---- to disable checking for the stage1 compiler.
--enable-coverage
--enable-coverage=level
With this option, the compiler is built to collect self coverage information, every time it is run. This is for internal development purposes, and only works when the compiler is being built with gcc. The *************** enable optimization. When coverage is e *** 1475,1505 **** without optimization.
--enable-gather-detailed-mem-stats
When this option is specified more detailed information on memory allocation is gathered. This information is printed when using -fmem-report.
--enable-valgrind-annotations
Mark selected memory related operations in the compiler when run under valgrind to suppress false positives.
--enable-nls
--disable-nls
The --enable-nls option enables Native Language Support (NLS), which lets GCC output diagnostics in languages other than American English. Native Language Support is enabled by default if not doing a canadian cross build. The --disable-nls option disables NLS.
--with-included-gettext
If NLS is enabled, the --with-included-gettext option causes the build
procedure to prefer its copy of GNU gettext
.
--with-catgets
If NLS is enabled, and if the host lacks gettext
but has the
inferior catgets
interface, the GCC build procedure normally
ignores catgets
and instead uses GCC’s copy of the GNU
--- 1484,1514 ----
without optimization.
--enable-gather-detailed-mem-stats
When this option is specified more detailed information on memory allocation is gathered. This information is printed when using -fmem-report.
--enable-valgrind-annotations
Mark selected memory related operations in the compiler when run under valgrind to suppress false positives.
--enable-nls
--disable-nls
The --enable-nls option enables Native Language Support (NLS), which lets GCC output diagnostics in languages other than American English. Native Language Support is enabled by default if not doing a canadian cross build. The --disable-nls option disables NLS.
--with-included-gettext
If NLS is enabled, the --with-included-gettext option causes the build
procedure to prefer its copy of GNU gettext
.
--with-catgets
If NLS is enabled, and if the host lacks gettext
but has the
inferior catgets
interface, the GCC build procedure normally
ignores catgets
and instead uses GCC’s copy of the GNU
*************** ignores catgets
and instead
*** 1507,1518 ****
build procedure to use the host’s catgets
in this situation.
--with-libiconv-prefix=dir
Search for libiconv header files in dir/include and libiconv library files in dir/lib.
--enable-obsolete
Enable configuration for an obsoleted system. If you attempt to
configure GCC for a system (build, host, or target) which has been
obsoleted, and you do not specify this flag, configure will halt with an
--- 1516,1527 ----
build procedure to use the host’s catgets
in this situation.
--with-libiconv-prefix=dir
Search for libiconv header files in dir/include and libiconv library files in dir/lib.
--enable-obsolete
Enable configuration for an obsoleted system. If you attempt to configure GCC for a system (build, host, or target) which has been obsoleted, and you do not specify this flag, configure will halt with an *************** is removed entirely in the next major re *** 1523,1534 **** forward to maintain the port.
--enable-decimal-float
--enable-decimal-float=yes
--enable-decimal-float=no
--enable-decimal-float=bid
--enable-decimal-float=dpd
--disable-decimal-float
Enable (or disable) support for the C decimal floating point extension that is in the IEEE 754-2008 standard. This is enabled by default only on PowerPC, i386, and x86_64 GNU/Linux systems. Other systems may also --- 1532,1543 ---- forward to maintain the port.
--enable-decimal-float
--enable-decimal-float=yes
--enable-decimal-float=no
--enable-decimal-float=bid
--enable-decimal-float=dpd
--disable-decimal-float
Enable (or disable) support for the C decimal floating point extension that is in the IEEE 754-2008 standard. This is enabled by default only on PowerPC, i386, and x86_64 GNU/Linux systems. Other systems may also *************** format is default on i386 and x86_64 sys *** 1539,1553 **** (densely packed decimal) format is default on PowerPC systems.
--enable-fixed-point
--disable-fixed-point
Enable (or disable) support for C fixed-point arithmetic. This option is enabled by default for some targets (such as MIPS) which have hardware-support for fixed-point operations. On other targets, you may enable this option manually.
--with-long-double-128
Specify if long double
type should be 128-bit by default on selected
GNU/Linux architectures. If using --without-long-double-128
,
long double
will be by default 64-bit, the same as double
type.
--- 1548,1562 ----
(densely packed decimal) format is default on PowerPC systems.
--enable-fixed-point
--disable-fixed-point
Enable (or disable) support for C fixed-point arithmetic. This option is enabled by default for some targets (such as MIPS) which have hardware-support for fixed-point operations. On other targets, you may enable this option manually.
--with-long-double-128
Specify if long double
type should be 128-bit by default on selected
GNU/Linux architectures. If using --without-long-double-128
,
long double
will be by default 64-bit, the same as double
type.
*************** When neither of these configure options
*** 1556,1563 ****
64-bit long double
otherwise.
--with-long-double-format=ibm
--with-long-double-format=ieee
Specify whether long double
uses the IBM extended double format
or the IEEE 128-bit floating point format on PowerPC Linux systems.
This configuration switch will only work on little endian PowerPC
--- 1565,1572 ----
64-bit long double
otherwise.
--with-long-double-format=ibm
--with-long-double-format=ieee
Specify whether long double
uses the IBM extended double format
or the IEEE 128-bit floating point format on PowerPC Linux systems.
This configuration switch will only work on little endian PowerPC
*************** the compiler using the --with-syst
*** 1586,1604 ****
will be generated.
--enable-fdpic
On SH Linux systems, generate ELF FDPIC code.
--with-gmp=pathname
--with-gmp-include=pathname
--with-gmp-lib=pathname
--with-mpfr=pathname
--with-mpfr-include=pathname
--with-mpfr-lib=pathname
--with-mpc=pathname
--with-mpc-include=pathname
--with-mpc-lib=pathname
If you want to build GCC but do not have the GMP library, the MPFR library and/or the MPC library installed in a standard location and do not have their sources present in the GCC source tree then you --- 1595,1613 ---- will be generated.
--enable-fdpic
On SH Linux systems, generate ELF FDPIC code.
--with-gmp=pathname
--with-gmp-include=pathname
--with-gmp-lib=pathname
--with-mpfr=pathname
--with-mpfr-include=pathname
--with-mpfr-lib=pathname
--with-mpc=pathname
--with-mpc-include=pathname
--with-mpc-lib=pathname
If you want to build GCC but do not have the GMP library, the MPFR
library and/or the MPC library installed in a standard location and
do not have their sources present in the GCC source tree then you
*************** variable (LD_LIBRARY_PATH
o
*** 1625,1633 ****
a cross compiler, they will not be used to configure target libraries.
--with-isl=pathname
--with-isl-include=pathname
--with-isl-lib=pathname
If you do not have the isl library installed in a standard location and you want to build GCC, you can explicitly specify the directory where it is installed (‘--with-isl=islinstalldir’). The --- 1634,1642 ---- a cross compiler, they will not be used to configure target libraries.
--with-isl=pathname
--with-isl-include=pathname
--with-isl-lib=pathname
If you do not have the isl library installed in a standard location and you want to build GCC, you can explicitly specify the directory where it is installed (‘--with-isl=islinstalldir’). The *************** include and lib options directly. *** 1641,1647 **** a cross compiler, they will not be used to configure target libraries.
--with-stage1-ldflags=flags
This option may be used to set linker flags to be used when linking stage 1 of GCC. These are also used when linking GCC if configured with --disable-bootstrap. If --with-stage1-libs is not set to a --- 1650,1656 ---- a cross compiler, they will not be used to configure target libraries.
--with-stage1-ldflags=flags
This option may be used to set linker flags to be used when linking stage 1 of GCC. These are also used when linking GCC if configured with --disable-bootstrap. If --with-stage1-libs is not set to a *************** value, then the default is ‘ *** 1649,1679 **** supported.
--with-stage1-libs=libs
This option may be used to set libraries to be used when linking stage 1 of GCC. These are also used when linking GCC if configured with --disable-bootstrap.
--with-boot-ldflags=flags
This option may be used to set linker flags to be used when linking stage 2 and later when bootstrapping GCC. If –with-boot-libs is not is set to a value, then the default is ‘-static-libstdc++ -static-libgcc’.
--with-boot-libs=libs
This option may be used to set libraries to be used when linking stage 2 and later when bootstrapping GCC.
--with-debug-prefix-map=map
Convert source directory names using -fdebug-prefix-map when building runtime libraries. ‘map’ is a space-separated list of maps of the form ‘old=new’.
--enable-linker-build-id
Tells GCC to pass --build-id option to the linker for all final links (links performed without the -r or --relocatable option), if the linker supports it. If you specify --- 1658,1688 ---- supported.
--with-stage1-libs=libs
This option may be used to set libraries to be used when linking stage 1 of GCC. These are also used when linking GCC if configured with --disable-bootstrap.
--with-boot-ldflags=flags
This option may be used to set linker flags to be used when linking stage 2 and later when bootstrapping GCC. If –with-boot-libs is not is set to a value, then the default is ‘-static-libstdc++ -static-libgcc’.
--with-boot-libs=libs
This option may be used to set libraries to be used when linking stage 2 and later when bootstrapping GCC.
--with-debug-prefix-map=map
Convert source directory names using -fdebug-prefix-map when building runtime libraries. ‘map’ is a space-separated list of maps of the form ‘old=new’.
--enable-linker-build-id
Tells GCC to pass --build-id option to the linker for all final links (links performed without the -r or --relocatable option), if the linker supports it. If you specify *************** support --build-id option, *** 1682,1702 **** --enable-linker-build-id option is ignored. The default is off.
--with-linker-hash-style=choice
Tells GCC to pass --hash-style=choice option to the linker for all final links. choice can be one of ‘sysv’, ‘gnu’, and ‘both’ where ‘sysv’ is the default.
--enable-gnu-unique-object
--disable-gnu-unique-object
Tells GCC to use the gnu_unique_object relocation for C++ template static data members and inline function local statics. Enabled by default for a toolchain with an assembler that accepts it and GLIBC 2.11 or above, otherwise disabled.
--with-diagnostics-color=choice
Tells GCC to use choice as the default for -fdiagnostics-color= option (if not used explicitly on the command line). choice can be one of ‘never’, ‘auto’, ‘always’, and ‘auto-if-env’ --- 1691,1711 ---- --enable-linker-build-id option is ignored. The default is off.
--with-linker-hash-style=choice
Tells GCC to pass --hash-style=choice option to the linker for all final links. choice can be one of ‘sysv’, ‘gnu’, and ‘both’ where ‘sysv’ is the default.
--enable-gnu-unique-object
--disable-gnu-unique-object
Tells GCC to use the gnu_unique_object relocation for C++ template static data members and inline function local statics. Enabled by default for a toolchain with an assembler that accepts it and GLIBC 2.11 or above, otherwise disabled.
--with-diagnostics-color=choice
Tells GCC to use choice as the default for -fdiagnostics-color= option (if not used explicitly on the command line). choice can be one of ‘never’, ‘auto’, ‘always’, and ‘auto-if-env’ *************** is present and non-empty in the environm *** 1706,1712 **** -fdiagnostics-color=never otherwise.
--with-diagnostics-urls=choice
Tells GCC to use choice as the default for -fdiagnostics-urls= option (if not used explicitly on the command line). choice can be one of ‘never’, ‘auto’, ‘always’, and ‘auto-if-env’ --- 1715,1721 ---- -fdiagnostics-color=never otherwise.
--with-diagnostics-urls=choice
Tells GCC to use choice as the default for -fdiagnostics-urls=
option (if not used explicitly on the command line). choice
can be one of ‘never’, ‘auto’, ‘always’, and ‘auto-if-env’
*************** or TERM_URLS
is present and
*** 1716,1729 ****
compiler, and -fdiagnostics-urls=never otherwise.
--enable-lto
--disable-lto
Enable support for link-time optimization (LTO). This is enabled by default, and may be disabled using --disable-lto.
--enable-linker-plugin-configure-flags=FLAGS
--enable-linker-plugin-flags=FLAGS
By default, linker plugins (such as the LTO plugin) are built for the host system architecture. For the case that the linker has a different (but run-time compatible) architecture, these flags can be --- 1725,1738 ---- compiler, and -fdiagnostics-urls=never otherwise.
--enable-lto
--disable-lto
Enable support for link-time optimization (LTO). This is enabled by default, and may be disabled using --disable-lto.
--enable-linker-plugin-configure-flags=FLAGS
--enable-linker-plugin-flags=FLAGS
By default, linker plugins (such as the LTO plugin) are built for the host system architecture. For the case that the linker has a different (but run-time compatible) architecture, these flags can be *************** GNU/Linux (‘i686-pc-linux-gn *** 1734,1748 **** executable on the former system), you can configure GCC as follows for getting compatible linker plugins:
!% srcdir/configure \ --host=x86_64-pc-linux-gnu \ --enable-linker-plugin-configure-flags=--host=i686-pc-linux-gnu \ --enable-linker-plugin-flags='CC=gcc\ -m32\ -Wl,-rpath,[...]/i686-pc-linux-gnu/lib'
--with-plugin-ld=pathname
Enable an alternate linker to be used at link-time optimization (LTO) link time when -fuse-linker-plugin is enabled. This linker should have plugin support such as gold starting with --- 1743,1757 ---- executable on the former system), you can configure GCC as follows for getting compatible linker plugins:
!% srcdir/configure \ --host=x86_64-pc-linux-gnu \ --enable-linker-plugin-configure-flags=--host=i686-pc-linux-gnu \ --enable-linker-plugin-flags='CC=gcc\ -m32\ -Wl,-rpath,[...]/i686-pc-linux-gnu/lib'
--with-plugin-ld=pathname
Enable an alternate linker to be used at link-time optimization (LTO) link time when -fuse-linker-plugin is enabled. This linker should have plugin support such as gold starting with *************** version 2.20 or GNU ld starting with ver *** 1750,1757 **** See -fuse-linker-plugin for details.
--enable-canonical-system-headers
--disable-canonical-system-headers
Enable system header path canonicalization for libcpp. This can produce shorter header file paths in diagnostics and dependency output files, but these changed header paths may conflict with some compilation --- 1759,1766 ---- See -fuse-linker-plugin for details.
--enable-canonical-system-headers
--disable-canonical-system-headers
Enable system header path canonicalization for libcpp. This can produce shorter header file paths in diagnostics and dependency output files, but these changed header paths may conflict with some compilation *************** environments. Enabled by default, and m *** 1759,1765 **** --disable-canonical-system-headers.
--with-glibc-version=major.minor
Tell GCC that when the GNU C Library (glibc) is used on the target it will be version major.minor or later. Normally this can be detected from the C library’s header files, but this option may be --- 1768,1774 ---- --disable-canonical-system-headers.
--with-glibc-version=major.minor
Tell GCC that when the GNU C Library (glibc) is used on the target it will be version major.minor or later. Normally this can be detected from the C library’s header files, but this option may be *************** However, such configurations may not wor *** 1772,1789 **** configuration in GCC is on a per-multilib basis.
--enable-as-accelerator-for=target
Build as offload target compiler. Specify offload host triple by target.
--enable-offload-targets=target1[=path1],…,targetN[=pathN]
Enable offloading to targets target1, …, targetN. Offload compilers are expected to be already installed. Default search path for them is exec-prefix, but it can be changed by specifying paths path1, …, pathN.
!% srcdir/configure \ --enable-offload-targets=x86_64-intelmicemul-linux-gnu=/path/to/x86_64/compiler,nvptx-none,hsa
--enable-as-accelerator-for=target
Build as offload target compiler. Specify offload host triple by target.
--enable-offload-targets=target1[=path1],…,targetN[=pathN]
Enable offloading to targets target1, …, targetN. Offload compilers are expected to be already installed. Default search path for them is exec-prefix, but it can be changed by specifying paths path1, …, pathN.
!% srcdir/configure \ --enable-offload-targets=x86_64-intelmicemul-linux-gnu=/path/to/x86_64/compiler,nvptx-none,hsa
--with-hsa-runtime=pathname
--with-hsa-runtime-include=pathname
--with-hsa-runtime-lib=pathname
If you configure GCC with HSA offloading but do not have the HSA run-time library installed in a standard location then you can --- 1801,1809 ---- compiler will emit the accelerator code, no path should be specified.
--with-hsa-runtime=pathname
--with-hsa-runtime-include=pathname
--with-hsa-runtime-lib=pathname
If you configure GCC with HSA offloading but do not have the HSA run-time library installed in a standard location then you can *************** shorthand for *** 1805,1812 **** --with-hsa-runtime-include=hsainstalldir/include.
--enable-cet
--disable-cet
Enable building target run-time libraries with control-flow
instrumentation, see -fcf-protection option. When
--enable-cet
is specified target libraries are configured
--- 1814,1821 ----
--with-hsa-runtime-include=hsainstalldir/include.
--enable-cet
--disable-cet
Enable building target run-time libraries with control-flow
instrumentation, see -fcf-protection option. When
--enable-cet
is specified target libraries are configured
*************** In this case the target libraries are co
*** 1820,1826 ****
-fcf-protection option.
--with-riscv-attribute=‘yes’, ‘no’ or ‘default’
Generate RISC-V attribute by default, in order to record extra build information in object.
--- 1829,1835 ---- -fcf-protection option.--with-riscv-attribute=‘yes’, ‘no’ or ‘default’
Generate RISC-V attribute by default, in order to record extra build information in object.
*************** target if target binutils supported. *** 1829,1845 ****The following options only apply to building cross compilers.
--with-toolexeclibdir=dir
Specify the installation directory for libraries built with a cross compiler. The default is ${gcc_tooldir}/lib.
--with-sysroot
--with-sysroot=dir
Tells GCC to consider dir as the root of a tree that contains (a subset of) the root filesystem of the target operating system. Target system headers, libraries and run-time object files will be --- 1838,1855 ----
The following options only apply to building cross compilers.
--with-toolexeclibdir=dir
Specify the installation directory for libraries built with a cross compiler. The default is ${gcc_tooldir}/lib.
--with-sysroot
--with-sysroot=dir
Tells GCC to consider dir as the root of a tree that contains (a subset of) the root filesystem of the target operating system. Target system headers, libraries and run-time object files will be *************** option then the compiler will search tha *** 1863,1870 **** native system headers rather than the default /usr/include.
--with-build-sysroot
--with-build-sysroot=dir
Tells GCC to consider dir as the system root (see --with-sysroot) while building target libraries, instead of the directory specified with --with-sysroot. This option is --- 1873,1880 ---- native system headers rather than the default /usr/include.
--with-build-sysroot
--with-build-sysroot=dir
Tells GCC to consider dir as the system root (see --with-sysroot) while building target libraries, instead of the directory specified with --with-sysroot. This option is *************** option then the compiler will search tha *** 1882,1889 **** native system headers rather than the default /usr/include.
--with-headers
--with-headers=dir
Deprecated in favor of --with-sysroot. Specifies that target headers are available when building a cross compiler. The dir argument specifies a directory which has the target include --- 1892,1899 ---- native system headers rather than the default /usr/include.
--with-headers
--with-headers=dir
Deprecated in favor of --with-sysroot. Specifies that target headers are available when building a cross compiler. The dir argument specifies a directory which has the target include *************** pre-exist, the dir argument m *** 1895,1908 **** will be run on these files to make them compatible with GCC.
--without-headers
Tells GCC not use any target headers from a libc when building a cross compiler. When crossing to GNU/Linux, you need the headers so GCC can build the exception handling for libgcc.
--with-libs
--with-libs="dir1 dir2 … dirN"
Deprecated in favor of --with-sysroot. Specifies a list of directories which contain the target runtime libraries. These libraries will be copied into the gcc install --- 1905,1918 ---- will be run on these files to make them compatible with GCC.
--without-headers
Tells GCC not use any target headers from a libc when building a cross compiler. When crossing to GNU/Linux, you need the headers so GCC can build the exception handling for libgcc.
--with-libs
--with-libs="dir1 dir2 … dirN"
Deprecated in favor of --with-sysroot. Specifies a list of directories which contain the target runtime libraries. These libraries will be copied into the gcc install *************** directory. If the directory list is omi *** 1910,1916 **** effect.
--with-newlib
Specifies that ‘newlib’ is
being used as the target C library. This causes __eprintf
to be
omitted from libgcc.a on the assumption that it will be provided by
--- 1920,1926 ----
effect.
--with-newlib
Specifies that ‘newlib’ is
being used as the target C library. This causes __eprintf
to be
omitted from libgcc.a on the assumption that it will be provided by
*************** omitted from libgcc.a on th
*** 1918,1924 ****
--with-avrlibc
Only supported for the AVR target. Specifies that ‘AVR-Libc’ is
being used as the target C library. This causes float support
functions like __addsf3
to be omitted from libgcc.a on
--- 1928,1934 ----
--with-avrlibc
Only supported for the AVR target. Specifies that ‘AVR-Libc’ is
being used as the target C library. This causes float support
functions like __addsf3
to be omitted from libgcc.a on
*************** RTEMS configurations, which currently us
*** 1929,1936 ****
supported since version 4.7.2 and is the default in 4.8.0 and newer.
--with-double={32|64|32,64|64,32}
--with-long-double={32|64|32,64|64,32|double}
Only supported for the AVR target since version 10. Specify the default layout available for the C/C++ ‘double’ and ‘long double’ type, respectively. The following rules apply: --- 1939,1946 ---- supported since version 4.7.2 and is the default in 4.8.0 and newer.
--with-double={32|64|32,64|64,32}
--with-long-double={32|64|32,64|64,32|double}
Only supported for the AVR target since version 10. Specify the default layout available for the C/C++ ‘double’ and ‘long double’ type, respectively. The following rules apply: *************** that ‘long double&rsq *** 1957,1963 **** 32 bits wide.
--with-double-comparison={tristate|bool|libf7}
Only supported for the AVR target since version 10.
Specify what result format is returned by library functions that
compare 64-bit floating point values (DFmode
).
--- 1967,1973 ----
32 bits wide.
--with-double-comparison={tristate|bool|libf7}
Only supported for the AVR target since version 10.
Specify what result format is returned by library functions that
compare 64-bit floating point values (DFmode
).
*************** The GCC default is ‘tristate
*** 1965,1971 ****
implementation returns a boolean instead, set it to ‘bool’.
--with-libf7={libgcc|math|math-symbols|no}
Only supported for the AVR target since version 10. Specify to which degree code from LibF7 is included in libgcc. LibF7 is an ad-hoc, AVR-specific, 64-bit floating point emulation --- 1975,1981 ---- implementation returns a boolean instead, set it to ‘bool’.
--with-libf7={libgcc|math|math-symbols|no}
Only supported for the AVR target since version 10. Specify to which degree code from LibF7 is included in libgcc. LibF7 is an ad-hoc, AVR-specific, 64-bit floating point emulation *************** from elsewhere. This option sets *** 1981,1993 **** to ‘bool’.
--with-nds32-lib=library
Specifies that library setting is used for building libgcc.a. Currently, the valid library is ‘newlib’ or ‘mculib’. This option is only supported for the NDS32 target.
--with-build-time-tools=dir
Specifies where to find the set of target tools (assembler, linker, etc.) that will be used while building GCC itself. This option can be useful if the directory layouts are different between the system you are building --- 1991,2003 ---- to ‘bool’.
--with-nds32-lib=library
Specifies that library setting is used for building libgcc.a. Currently, the valid library is ‘newlib’ or ‘mculib’. This option is only supported for the NDS32 target.
--with-build-time-tools=dir
Specifies where to find the set of target tools (assembler, linker, etc.) that will be used while building GCC itself. This option can be useful if the directory layouts are different between the system you are building *************** tools. *** 2006,2012 ****
configure
test resultsSometimes, it might be necessary to override the result of some
configure
test, for example in order to ease porting to a new
--- 2016,2023 ----
configure
test resultsSometimes, it might be necessary to override the result of some
configure
test, for example in order to ease porting to a new
*************** system or work around a bug in a test.
*** 2014,2031 ****
script provides three variables for this:
build_configargs
¶The contents of this variable is passed to all build configure
scripts.
host_configargs
¶The contents of this variable is passed to all host configure
scripts.
target_configargs
¶The contents of this variable is passed to all target configure
scripts.
build_configargs
The contents of this variable is passed to all build configure
scripts.
host_configargs
The contents of this variable is passed to all host configure
scripts.
target_configargs
The contents of this variable is passed to all target configure
scripts.
CONFIG_SITE
and set
variables in the site file.
! The following options apply to the build of the Objective-C runtime library.
--enable-objc-gc
Specify that an additional variant of the GNU Objective-C runtime library
is built, using an external build of the Boehm-Demers-Weiser garbage
collector (https://www.hboehm.info/gc/). This library needs to be
--- 2049,2061 ----
overrides, you can pass a setting for CONFIG_SITE
and set
variables in the site file.
The following options apply to the build of the Objective-C runtime library.
--enable-objc-gc
Specify that an additional variant of the GNU Objective-C runtime library is built, using an external build of the Boehm-Demers-Weiser garbage collector (https://www.hboehm.info/gc/). This library needs to be *************** additional runtime library is skipped wh *** 2050,2058 **** continues.
--with-target-bdw-gc=list
--with-target-bdw-gc-include=list
--with-target-bdw-gc-lib=list
Specify search directories for the garbage collector header files and libraries. list is a comma separated list of key value pairs of the form ‘multilibdir=path’, where the default multilib key --- 2065,2073 ---- continues.
--with-target-bdw-gc=list
--with-target-bdw-gc-include=list
--with-target-bdw-gc-lib=list
Specify search directories for the garbage collector header files and libraries. list is a comma separated list of key value pairs of the form ‘multilibdir=path’, where the default multilib key *************** default locations. *** 2071,2084 ****
The following options apply to the build of the D runtime library.
--enable-libphobos-checking
--disable-libphobos-checking
--enable-libphobos-checking=list
This option controls whether run-time checks and contracts are compiled into the D runtime library. When the option is not specified, the library is built with ‘release’ checking. When the option is specified without a --- 2086,2100 ----
The following options apply to the build of the D runtime library.
--enable-libphobos-checking
--disable-libphobos-checking
--enable-libphobos-checking=list
This option controls whether run-time checks and contracts are compiled into the D runtime library. When the option is not specified, the library is built with ‘release’ checking. When the option is specified without a *************** libphobos with -fno-release *** 2095,2102 **** with an extra option -fassert).
--with-libphobos-druntime-only
--with-libphobos-druntime-only=choice
Specify whether to build only the core D runtime library (druntime), or both the core and standard library (phobos) into libphobos. This is useful for targets that have full support in druntime, but no or incomplete support --- 2111,2118 ---- with an extra option -fassert).
--with-libphobos-druntime-only
--with-libphobos-druntime-only=choice
Specify whether to build only the core D runtime library (druntime), or both the core and standard library (phobos) into libphobos. This is useful for targets that have full support in druntime, but no or incomplete support *************** When the option is specified without a < *** 2109,2115 **** ‘--with-libphobos-druntime-only=yes’.
--with-target-system-zlib
Use installed ‘zlib’ rather than that included with GCC. This needs to be available for each multilib variant, unless configured with --with-target-system-zlib=‘auto’ in which case the GCC included --- 2125,2131 ---- ‘--with-libphobos-druntime-only=yes’.
--with-target-system-zlib
Use installed ‘zlib’ rather than that included with GCC. This needs to be available for each multilib variant, unless configured with --with-target-system-zlib=‘auto’ in which case the GCC included diff -Nrcpad gcc-10.4.0/INSTALL/download.html gcc-10.5.0/INSTALL/download.html *** gcc-10.4.0/INSTALL/download.html Tue Jun 28 08:55:11 2022 --- gcc-10.5.0/INSTALL/download.html Fri Jul 7 07:08:58 2023 *************** *** 1,8 **** - -
- + + +GCC is distributed via git and via
HTTPS as tarballs compressed with gzip
or bzip2
.
--- 80,87 ----
!
!
GCC is distributed via git and via
HTTPS as tarballs compressed with gzip
or bzip2
.
diff -Nrcpad gcc-10.4.0/INSTALL/finalinstall.html gcc-10.5.0/INSTALL/finalinstall.html
*** gcc-10.4.0/INSTALL/finalinstall.html Tue Jun 28 08:55:12 2022
--- gcc-10.5.0/INSTALL/finalinstall.html Fri Jul 7 07:08:59 2023
***************
*** 1,8 ****
-
-
Now that GCC has been built (and optionally tested), you can install it with !
cd objdir && make install
We strongly recommend to install into a target directory where there is --- 86,93 ----
Now that GCC has been built (and optionally tested), you can install it with !
cd objdir && make install
We strongly recommend to install into a target directory where there is *************** binutils, including assembler and linker *** 113,120 ****
Installation into a temporary staging area or into a chroot
jail can be achieved with the command
make DESTDIR=path-to-rootdir install
where path-to-rootdir is the absolute path of --- 119,126 ----
Installation into a temporary staging area or into a chroot
jail can be achieved with the command
make DESTDIR=path-to-rootdir install
where path-to-rootdir is the absolute path of
*************** using the DESTDIR
feature.
*** 133,140 ****
You can install stripped programs and libraries with
!make install-strip
If you are bootstrapping a released version of GCC then please --- 139,146 ----
You can install stripped programs and libraries with
!make install-strip
If you are bootstrapping a released version of GCC then please diff -Nrcpad gcc-10.4.0/INSTALL/gfdl.html gcc-10.5.0/INSTALL/gfdl.html *** gcc-10.4.0/INSTALL/gfdl.html Tue Jun 28 08:55:13 2022 --- gcc-10.5.0/INSTALL/gfdl.html Fri Jul 7 07:08:59 2023 *************** *** 1,8 **** - -
- + + +To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page:
!Copyright (C) year your name. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; --- 523,537 ---- !ADDENDUM: How to use this License for your documents
To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page:
!!--- 564,570 ----Copyright (C) year your name. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; *************** license notices just after the title pag *** 537,544 ****If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the “with...Texts.” line with this:
!!--- 543,550 ----with the Invariant Sections being list their titles, with the Front-Cover Texts being list, and with the Back-Cover Texts being list.If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the “with...Texts.” line with this:
!!*************** to permit their use in free software. *** 558,564 ****with the Invariant Sections being list their titles, with the Front-Cover Texts being list, and with the Back-Cover Texts being list.Return to the GCC Installation page
!Return to the GCC Installation page
!
diff -Nrcpad gcc-10.4.0/INSTALL/index.html gcc-10.5.0/INSTALL/index.html *** gcc-10.4.0/INSTALL/index.html Tue Jun 28 08:55:11 2022 --- gcc-10.5.0/INSTALL/index.html Fri Jul 7 07:08:57 2023 *************** *** 1,8 **** - - - + + +Installing GCC *************** You have freedom to copy and modify this *** 29,52 **** - - --- 29,58 ---- *************** Free Documentation License”. *** 143,148 **** --- 149,155 ---- + diff -Nrcpad gcc-10.4.0/INSTALL/old.html gcc-10.5.0/INSTALL/old.html *** gcc-10.4.0/INSTALL/old.html Tue Jun 28 08:55:12 2022 --- gcc-10.5.0/INSTALL/old.html Fri Jul 7 07:08:59 2023 *************** *** 1,8 **** - - - + + +Installing GCC: Old documentation *************** You have freedom to copy and modify this *** 29,52 **** - - --- 29,58 ---- *************** the same as the host machine. *** 124,131 ****Here is an example:
!!./configure --host=sparc-sun-sunos4.1A configuration name may be canonical or it may be more or less --- 130,137 ----
Here is an example:
!!./configure --host=sparc-sun-sunos4.1A configuration name may be canonical or it may be more or less *************** section before proceeding any further wi *** 151,158 ****
!Configurations Supported by GCC
!Here are the possible CPU types:
--- 157,164 ---- !Configurations Supported by GCC
!Here are the possible CPU types:
diff -Nrcpad gcc-10.4.0/INSTALL/prerequisites.html gcc-10.5.0/INSTALL/prerequisites.html *** gcc-10.4.0/INSTALL/prerequisites.html Tue Jun 28 08:55:11 2022 --- gcc-10.5.0/INSTALL/prerequisites.html Fri Jul 7 07:08:58 2023 *************** *** 1,8 **** - - - + + +Prerequisites for GCC *************** You have freedom to copy and modify this *** 29,52 **** - - --- 29,58 ---- *************** ul.no-bullet {list-style: none} *** 73,87 **** !GCC requires that various tools and packages be available for use in the build procedure. Modifying GCC sources requires additional tools described below.
!Tools/packages necessary for building GCC
Necessary to bootstrap GCC, although versions of GCC prior to 4.8 also allow bootstrapping with a ISO C89 compiler and versions of GCC prior to 3.4 also allow bootstrapping with a traditional --- 79,94 ---- !
GCC requires that various tools and packages be available for use in the build procedure. Modifying GCC sources requires additional tools described below.
! !Necessary to bootstrap GCC, although versions of GCC prior to 4.8 also allow bootstrapping with a ISO C89 compiler and versions of GCC prior to 3.4 also allow bootstrapping with a traditional *************** bootstrapping the compiler with such ear *** 98,104 **** discouraged.
In order to build GCC, the C standard library and headers must be present for all target variants for which target libraries will be built (and not --- 105,111 ---- discouraged.
In order to build GCC, the C standard library and headers must be present for all target variants for which target libraries will be built (and not *************** name of the package depends on your dist *** 115,121 **** ‘fatal error: gnu/stubs-32.h: No such file’
In order to build GNAT, the Ada compiler, you need a working GNAT compiler (GCC version 4.7 or later). --- 122,128 ---- ‘fatal error: gnu/stubs-32.h: No such file’
In order to build GNAT, the Ada compiler, you need a working GNAT compiler (GCC version 4.7 or later). *************** by verifying that ‘gnatls -v *** 145,151 **** section.
Necessary when running configure
because some
/bin/sh
shells have bugs and may crash when configuring the
--- 152,158 ----
section.
Necessary when running configure
because some
/bin/sh
shells have bugs and may crash when configuring the
*************** environment to your “good” s
*** 164,203 ****
work when configuring GCC.
Necessary for creating some of the generated source files for GCC. If in doubt, use a recent GNU awk version, as some of the older ones are broken. GNU awk version 3.1.5 is known to work.
Necessary in some circumstances, optional in others. See the host/target specific instructions for your platform for the exact requirements.
Necessary to uncompress GCC tar
files when source code is
obtained via HTTPS mirror sites.
You must have GNU make installed to build GCC.
Necessary (only on some platforms) to untar the source code. Many
systems’ tar
programs will also work, only try GNU
tar
if you have problems.
Necessary when targeting Darwin, building ‘libstdc++’, and not using --disable-symvers. --- 171,210 ---- work when configuring GCC.
Necessary for creating some of the generated source files for GCC. If in doubt, use a recent GNU awk version, as some of the older ones are broken. GNU awk version 3.1.5 is known to work.
Necessary in some circumstances, optional in others. See the host/target specific instructions for your platform for the exact requirements.
Necessary to uncompress GCC tar
files when source code is
obtained via HTTPS mirror sites.
You must have GNU make installed to build GCC.
Necessary (only on some platforms) to untar the source code. Many
systems’ tar
programs will also work, only try GNU
tar
if you have problems.
Necessary when targeting Darwin, building ‘libstdc++’, and not using --disable-symvers. *************** support libraries then using those packa *** 226,232 **** install the libraries.
Necessary to build GCC. If a GMP source distribution is found in a subdirectory of your GCC sources named gmp, it will be built --- 233,239 ---- install the libraries.
Necessary to build GCC. If a GMP source distribution is found in a subdirectory of your GCC sources named gmp, it will be built *************** The in-tree build is only supported with *** 238,244 **** download_prerequisites installs.
Necessary to build GCC. It can be downloaded from https://www.mpfr.org. If an MPFR source distribution is found --- 245,251 ---- download_prerequisites installs.
Necessary to build GCC. It can be downloaded from https://www.mpfr.org. If an MPFR source distribution is found *************** The in-tree build is only supported with *** 251,257 **** download_prerequisites installs.
Necessary to build GCC. It can be downloaded from http://www.multiprecision.org/mpc/. If an MPC source distribution --- 258,264 ---- download_prerequisites installs.
Necessary to build GCC. It can be downloaded from http://www.multiprecision.org/mpc/. If an MPC source distribution *************** The in-tree build is only supported with *** 264,270 **** download_prerequisites installs.
Necessary to build GCC with the Graphite loop optimizations. It can be downloaded from https://gcc.gnu.org/pub/gcc/infrastructure/. --- 271,277 ---- download_prerequisites installs.
Necessary to build GCC with the Graphite loop optimizations. It can be downloaded from https://gcc.gnu.org/pub/gcc/infrastructure/. *************** option should be used if isl is not inst *** 275,281 **** search path.
Necessary to build GCC with zstd compression used for LTO bytecode. The library is searched in your default library patch search. --- 282,288 ---- search path.
Necessary to build GCC with zstd compression used for LTO bytecode. The library is searched in your default library patch search. *************** Alternatively, the --with-zstd
Necessary when modifying configure.ac, aclocal.m4, etc. to regenerate configure and config.in files.
Necessary when modifying a Makefile.am file to regenerate its associated Makefile.in. --- 291,307 ----
Necessary when modifying configure.ac, aclocal.m4, etc. to regenerate configure and config.in files.
Necessary when modifying a Makefile.am file to regenerate its associated Makefile.in. *************** to a newer version, please update all th *** 309,336 **** to the latest released version.
Needed to regenerate gcc.pot.
Necessary when modifying gperf
input files, e.g.
gcc/cp/cfns.gperf to regenerate its associated header file, e.g.
gcc/cp/cfns.h.
Necessary to run the GCC testsuite; see the section on testing for details.
Necessary to regenerate fixinc/fixincl.x from fixinc/inclhack.def and fixinc/*.tpl. --- 317,344 ---- to the latest released version.
Needed to regenerate gcc.pot.
Necessary when modifying gperf
input files, e.g.
gcc/cp/cfns.gperf to regenerate its associated header file, e.g.
gcc/cp/cfns.h.
Necessary to run the GCC testsuite; see the section on testing for details.
Necessary to regenerate fixinc/fixincl.x from fixinc/inclhack.def and fixinc/*.tpl. *************** details. *** 341,347 **** Makefile.tpl and Makefile.def.
Necessary when modifying *.l files.
--- 349,355 ---- Makefile.tpl and Makefile.def.Necessary when modifying *.l files.
*************** files are not included in the version-co *** 350,356 **** They are included in releases.Necessary for running makeinfo
when modifying *.texi
files to test your changes.
--- 358,364 ----
They are included in releases.
Necessary for running makeinfo
when modifying *.texi
files to test your changes.
*************** generated output files are not included
*** 364,395 ****
included in releases.
Necessary for running texi2dvi
and texi2pdf
, which
are used when running make dvi
or make pdf
to create
DVI or PDF files, respectively.
Necessary to regenerate jit/docs/_build/texinfo from the .rst files in the directories below jit/docs.
Necessary to access the source repository. Public releases and weekly snapshots of the development sources are also available via HTTPS.
Useful when submitting patches for the GCC source code.
Necessary when applying patches, created with diff
, to one’s
own sources.
--- 372,403 ----
included in releases.
Necessary for running texi2dvi
and texi2pdf
, which
are used when running make dvi
or make pdf
to create
DVI or PDF files, respectively.
Necessary to regenerate jit/docs/_build/texinfo from the .rst files in the directories below jit/docs.
Necessary to access the source repository. Public releases and weekly snapshots of the development sources are also available via HTTPS.
Useful when submitting patches for the GCC source code.
Necessary when applying patches, created with diff
, to one’s
own sources.
diff -Nrcpad gcc-10.4.0/INSTALL/specific.html gcc-10.5.0/INSTALL/specific.html
*** gcc-10.4.0/INSTALL/specific.html Tue Jun 28 08:55:11 2022
--- gcc-10.5.0/INSTALL/specific.html Fri Jul 7 07:08:58 2023
***************
*** 1,8 ****
-
-
Please read this document carefully before installing the GNU Compiler Collection on your machine. --- 86,96 ---- ! ! ! ! !
Please read this document carefully before installing the GNU Compiler Collection on your machine. *************** information have to. *** 174,180 ****
Binutils pre 2.24 does not have support for selecting -mabi and does not support ILP32. If it is used to build GCC 4.9 or later, GCC will not support option -mabi=ilp32. --- 180,187 ----
Binutils pre 2.24 does not have support for selecting -mabi and does not support ILP32. If it is used to build GCC 4.9 or later, GCC will not support option -mabi=ilp32. *************** protections by default. This mechanism *** 211,227 **** of the options are given at configure time.
This section contains general configuration information for all Alpha-based platforms using ELF. In addition to reading this section, please read all other sections that match your target.
This is a synonym for ‘x86_64-*-solaris2*’.
AMD GCN GPU target.
Instead of GNU Binutils, you will need to install LLVM 6, or later, and copy --- 218,237 ---- of the options are given at configure time.
This section contains general configuration information for all Alpha-based platforms using ELF. In addition to reading this section, please read all other sections that match your target.
This is a synonym for ‘x86_64-*-solaris2*’.
AMD GCN GPU target.
Instead of GNU Binutils, you will need to install LLVM 6, or later, and copy *************** section, please read all other sections *** 239,257 **** on the GPU.
Use ‘configure --target=arc-elf32 --with-cpu=cpu --enable-languages="c,c++"’ to configure GCC, with cpu being one of ‘arc600’, ‘arc601’, or ‘arc700’.
Use ‘configure --target=arc-linux-uclibc --with-cpu=arc700 --enable-languages="c,c++"’ to configure GCC.
ARM-family processors.
Building the Ada frontend commonly fails (an infinite loop executing --- 249,270 ---- on the GPU.
Use ‘configure --target=arc-elf32 --with-cpu=cpu --enable-languages="c,c++"’ to configure GCC, with cpu being one of ‘arc600’, ‘arc601’, or ‘arc700’.
Use ‘configure --target=arc-linux-uclibc --with-cpu=arc700 --enable-languages="c,c++"’ to configure GCC.
ARM-family processors.
Building the Ada frontend commonly fails (an infinite loop executing *************** or ‘arc700’. *** 259,265 **** GNAT 4.6, 4.9 or 5 release branches are known to succeed.
ATMEL AVR-family micro controllers. These are used in embedded applications. There are no standard Unix configurations. See “AVR Options” in the main manual --- 272,279 ---- GNAT 4.6, 4.9 or 5 release branches are known to succeed.
ATMEL AVR-family micro controllers. These are used in embedded applications. There are no standard Unix configurations. See “AVR Options” in the main manual *************** can also be obtained from: *** 276,289 ****
The following error: !
Error: register required
indicates that you should upgrade to a newer version of the binutils.
The Blackfin processor, an Analog Devices DSP. See “Blackfin Options” in the main manual
--- 290,304 ----The following error: !
Error: register required
indicates that you should upgrade to a newer version of the binutils.
The Blackfin processor, an Analog Devices DSP. See “Blackfin Options” in the main manual
*************** See “Blackfin Options” in th *** 291,297 **** are available at https://sourceforge.net/projects/adi-toolchain/.The CR16 CompactRISC architecture is a 16-bit architecture. This architecture is used in embedded applications.
--- 306,313 ---- are available at https://sourceforge.net/projects/adi-toolchain/.The CR16 CompactRISC architecture is a 16-bit architecture. This architecture is used in embedded applications.
*************** GCC for building a CR16 elf cross-c *** 305,311 **** configure GCC for building a CR16 uclinux cross-compiler.CRIS is the CPU architecture in Axis Communications ETRAX system-on-a-chip series. These are used in embedded applications.
--- 321,328 ---- configure GCC for building a CR16 uclinux cross-compiler.CRIS is the CPU architecture in Axis Communications ETRAX system-on-a-chip series. These are used in embedded applications.
*************** for a list of CRIS-specific options. *** 314,324 ****There are a few different CRIS targets:
cris-axis-elf
Mainly for monolithic embedded systems. Includes a multilib for the ‘v10’ core used in ‘ETRAX 100 LX’.
cris-axis-linux-gnu
A GNU/Linux port for the CRIS architecture, currently targeting ‘ETRAX 100 LX’ by default.
There are a few different CRIS targets:
cris-axis-elf
Mainly for monolithic embedded systems. Includes a multilib for the ‘v10’ core used in ‘ETRAX 100 LX’.
cris-axis-linux-gnu
A GNU/Linux port for the CRIS architecture, currently targeting ‘ETRAX 100 LX’ by default.
Please have a look at the binaries page.
You cannot install GCC by itself on MSDOS; it will not compile under --- 347,354 ---- http://developer.axis.com/.
Please have a look at the binaries page.
You cannot install GCC by itself on MSDOS; it will not compile under *************** compilation package DJGPP, which include *** 339,350 **** and includes all the necessary compilation tools and libraries.
Adapteva Epiphany. This configuration is intended for embedded systems.
Support for FreeBSD 1 was discontinued in GCC 3.2. Support for FreeBSD 2 (and any mutant a.out variants of FreeBSD 3) was discontinued in GCC 4.0. --- 357,370 ---- and includes all the necessary compilation tools and libraries.
Adapteva Epiphany. This configuration is intended for embedded systems.
Support for FreeBSD 1 was discontinued in GCC 3.2. Support for FreeBSD 2 (and any mutant a.out variants of FreeBSD 3) was discontinued in GCC 4.0. *************** properly on FreeBSD prior to the FreeBSD *** 379,390 **** after 2.16.1.
The FT32 processor. This configuration is intended for embedded systems.
Renesas H8/300 series of processors.
Please have a look at the binaries page. --- 399,412 ---- after 2.16.1.
The FT32 processor. This configuration is intended for embedded systems.
Renesas H8/300 series of processors.
Please have a look at the binaries page. *************** first three arguments in function calls *** 395,401 **** longer a multiple of 2 bytes.
Support for HP-UX version 9 and older was discontinued in GCC 3.4.
We require using gas/binutils on all hppa platforms. Version 2.19 or --- 417,424 ---- longer a multiple of 2 bytes.
Support for HP-UX version 9 and older was discontinued in GCC 3.4.
We require using gas/binutils on all hppa platforms. Version 2.19 or *************** a list of the predefines used with each *** 445,451 ****
More specific information to ‘hppa*-hp-hpux*’ targets follows.
For hpux10.20, we highly recommend you pick up the latest sed patch
PHCO_19798
from HP.
More specific information to ‘hppa*-hp-hpux*’ targets follows.
For hpux10.20, we highly recommend you pick up the latest sed patch
PHCO_19798
from HP.
GCC 3.0 and up support HP-UX 11. GCC 2.95.x is not supported and cannot be used to compile GCC 3.0 and up.
--- 479,486 ---- with the one implemented under HP-UX 11 using secondary definitions.GCC 3.0 and up support HP-UX 11. GCC 2.95.x is not supported and cannot be used to compile GCC 3.0 and up.
*************** versioning with --disable-symvers< *** 558,570 **** supported, so --enable-threads=dce does not work.Versions of libstdc++-v3 starting with 3.2.1 require bug fixes present in glibc 2.2.5 and later. More information is available in the libstdc++-v3 documentation.
As of GCC 3.3, binutils 2.13.1 or later is required for this platform. See bug 10877 for more information.
--- 583,597 ---- supported, so --enable-threads=dce does not work.Versions of libstdc++-v3 starting with 3.2.1 require bug fixes present in glibc 2.2.5 and later. More information is available in the libstdc++-v3 documentation.
As of GCC 3.3, binutils 2.13.1 or later is required for this platform. See bug 10877 for more information.
*************** possible you have a hardware problem. F *** 573,579 **** found on www.bitwizard.nl.Use this for Solaris 11.3 or later on x86 and x86-64 systems. Starting with GCC 4.7, there is also a 64-bit ‘amd64-*-solaris2*’ or ‘x86_64-*-solaris2*’ configuration that corresponds to --- 600,607 ---- found on www.bitwizard.nl.
Use this for Solaris 11.3 or later on x86 and x86-64 systems. Starting
with GCC 4.7, there is also a 64-bit ‘amd64-*-solaris2*’ or
‘x86_64-*-solaris2*’ configuration that corresponds to
*************** to configure with --without-gnu-ld
*** 597,603 ****
guarantee use of Solaris ld
.
IA-64 processor (also known as IPF, or Itanium Processor Family) running GNU/Linux.
--- 625,632 ---- guarantee use of Solarisld
.
IA-64 processor (also known as IPF, or Itanium Processor Family) running GNU/Linux.
*************** As of version 3.1 GCC is believed to be *** 615,621 **** more major ABI changes are expected.Building GCC on this target requires the GNU Assembler. The bundled HP assembler will not work. To prevent GCC from using the wrong assembler, the option --with-gnu-as may be necessary. --- 644,651 ---- more major ABI changes are expected.
Building GCC on this target requires the GNU Assembler. The bundled HP assembler will not work. To prevent GCC from using the wrong assembler, the option --with-gnu-as may be necessary. *************** removed and the system libunwind library *** 628,634 ****
Support for AIX version 3 and older was discontinued in GCC 3.4. Support for AIX version 4.2 and older was discontinued in GCC 4.5.
--- 658,665 ----Support for AIX version 3 and older was discontinued in GCC 3.4. Support for AIX version 4.2 and older was discontinued in GCC 4.5.
*************** with an earlier release of GCC is recomm *** 645,652 **** requires a larger data segment, which can be enabled through the LDR_CNTRL environment variable, e.g., !% LDR_CNTRL=MAXDATA=0x50000000 % export LDR_CNTRL
% LDR_CNTRL=MAXDATA=0x50000000 % export LDR_CNTRL
To speed up the configuration phases of bootstrapping and installing GCC,
one may use GNU Bash instead of AIX /bin/sh
, e.g.,
% CONFIG_SHELL=/opt/freeware/bin/bash % export CONFIG_SHELL
To speed up the configuration phases of bootstrapping and installing GCC,
one may use GNU Bash instead of AIX /bin/sh
, e.g.,
% CONFIG_SHELL=/opt/freeware/bin/bash % export CONFIG_SHELL
‘libstdc++’ in GCC 3.4 increments the major version number of the shared object and GCC installation places the libstdc++.a shared library in a common location which will overwrite the and GCC 3.3 version of the shared library. Applications either need to be --- 739,745 ---- fix for another AIX Assembler bug and a co-dependent AIX Archiver fix referenced as APAR IY53606 (AIX 5.2) or as APAR IY54774 (AIX 5.1)
!‘libstdc++’ in GCC 3.4 increments the major version number of the shared object and GCC installation places the libstdc++.a shared library in a common location which will overwrite the and GCC 3.3 version of the shared library. Applications either need to be *************** multilib libstdc++.a instal *** 722,741 ****
Extract the shared objects from the currently installed libstdc++.a archive: !
% ar -x libstdc++.a libstdc++.so.4 libstdc++.so.5
Enable the ‘F_LOADONLY’ flag so that the shared object will be available for runtime dynamic loading, but not linking: !
% strip -e libstdc++.so.4 libstdc++.so.5
Archive the runtime-only shared object in the GCC 3.4 libstdc++.a archive: !
% ar -q libstdc++.a libstdc++.so.4 libstdc++.so.5
Eventually, the --- 753,772 ----
Extract the shared objects from the currently installed libstdc++.a archive: !
% ar -x libstdc++.a libstdc++.so.4 libstdc++.so.5
Enable the ‘F_LOADONLY’ flag so that the shared object will be available for runtime dynamic loading, but not linking: !
% strip -e libstdc++.so.4 libstdc++.so.5
Archive the runtime-only shared object in the GCC 3.4 libstdc++.a archive: !
% ar -q libstdc++.a libstdc++.so.4 libstdc++.so.5
Eventually, the *************** environment variable to ‘C *** 792,823 **** switch and using the configure option --with-cpu-cpu_type.
Vitesse IQ2000 processors. These are used in embedded applications. There are no standard Unix configurations.
Lattice Mico32 processor. This configuration is intended for embedded systems.
Lattice Mico32 processor. This configuration is intended for embedded systems running uClinux.
Renesas M32C processor. This configuration is intended for embedded systems.
Renesas M32R processor. This configuration is intended for embedded systems.
By default, ‘m68k-*-elf*’, ‘m68k-*-rtems’, ‘m68k-*-uclinux’ and ‘m68k-*-linux’ --- 823,860 ---- switch and using the configure option --with-cpu-cpu_type.
Vitesse IQ2000 processors. These are used in embedded applications. There are no standard Unix configurations.
Lattice Mico32 processor. This configuration is intended for embedded systems.
Lattice Mico32 processor. This configuration is intended for embedded systems running uClinux.
Renesas M32C processor. This configuration is intended for embedded systems.
Renesas M32R processor. This configuration is intended for embedded systems.
By default, ‘m68k-*-elf*’, ‘m68k-*-rtems’, ‘m68k-*-uclinux’ and ‘m68k-*-linux’ *************** be a -mcpu argument or one *** 843,861 ****
GCC requires at least binutils version 2.17 on these targets.
GCC 4.3 changed the uClinux configuration so that it uses the ‘m68k-linux-gnu’ ABI rather than the ‘m68k-elf’ ABI. It also added improved support for C++ and flat shared libraries, both of which were ABI changes.
Xilinx MicroBlaze processor. This configuration is intended for embedded systems.
If on a MIPS system you get an error message saying “does not have gp sections for all it’s [sic] sectons [sic]”, don’t worry about it. This happens whenever you use GAS with the MIPS linker, but there is not --- 880,901 ----
GCC requires at least binutils version 2.17 on these targets.
GCC 4.3 changed the uClinux configuration so that it uses the ‘m68k-linux-gnu’ ABI rather than the ‘m68k-elf’ ABI. It also added improved support for C++ and flat shared libraries, both of which were ABI changes.
Xilinx MicroBlaze processor. This configuration is intended for embedded systems.
If on a MIPS system you get an error message saying “does not have gp sections for all it’s [sic] sectons [sic]”, don’t worry about it. This happens whenever you use GAS with the MIPS linker, but there is not *************** the use of break, use the --with-d *** 895,905 **** use traps on systems that support them.
The moxie processor.
TI MSP430 processor. This configuration is intended for embedded systems.
--- 935,947 ---- use traps on systems that support them.The moxie processor.
TI MSP430 processor. This configuration is intended for embedded systems.
*************** in a minimal run-time environment by def *** 918,932 ****Andes NDS32 target in little endian mode.
Andes NDS32 target in big endian mode.
Nvidia PTX target.
Instead of GNU binutils, you will need to install --- 960,977 ----
Andes NDS32 target in little endian mode.
Andes NDS32 target in big endian mode.
Nvidia PTX target.
Instead of GNU binutils, you will need to install *************** the GCC sources. *** 944,966 **** --enable-newlib-io-long-long options when configuring.
The OpenRISC 1000 32-bit processor with delay slots. This configuration is intended for embedded systems.
The OpenRISC 1000 32-bit processor with delay slots.
You can specify a default version for the -mcpu=cpu_type switch by using the configure option --with-cpu-cpu_type.
You will need GNU binutils 2.20 or newer.
PowerPC running Darwin (Mac OS X kernel).
Pre-installed versions of Mac OS X may not include any developer tools, --- 989,1015 ---- --enable-newlib-io-long-long options when configuring.
The OpenRISC 1000 32-bit processor with delay slots. This configuration is intended for embedded systems.
The OpenRISC 1000 32-bit processor with delay slots.
You can specify a default version for the -mcpu=cpu_type switch by using the configure option --with-cpu-cpu_type.
You will need GNU binutils 2.20 or newer.
PowerPC running Darwin (Mac OS X kernel).
Pre-installed versions of Mac OS X may not include any developer tools, *************** cctools-590.36 package referenced from *** 974,1058 **** on systems older than 10.3.9 (aka darwin7.9.0).
PowerPC system in big endian mode, running System V.4.
PowerPC system in big endian mode running Linux.
PowerPC system in big endian mode running NetBSD.
Embedded PowerPC system in big endian mode for use in running under the PSIM simulator.
Embedded PowerPC system in big endian mode.
PowerPC system in little endian mode, running System V.4.
Embedded PowerPC system in little endian mode for use in running under the PSIM simulator.
Embedded PowerPC system in little endian mode.
The Renesas RL78 processor. This configuration is intended for embedded systems.
The RISC-V RV32 instruction set. This configuration is intended for embedded systems. This (and all other RISC-V) targets require the binutils 2.30 release.
The RISC-V RV32 instruction set running GNU/Linux. This (and all other RISC-V) targets require the binutils 2.30 release.
The RISC-V RV64 instruction set. This configuration is intended for embedded systems. This (and all other RISC-V) targets require the binutils 2.30 release.
The RISC-V RV64 instruction set running GNU/Linux. This (and all other RISC-V) targets require the binutils 2.30 release.
The Renesas RX processor.
S/390 system running GNU/Linux for S/390.
zSeries system (64-bit) running GNU/Linux for zSeries.
zSeries system (64-bit) running TPF. This platform is supported as cross-compilation target only.
Support for Solaris 10 has been removed in GCC 10. Support for Solaris 9 has been removed in GCC 5. Support for Solaris 8 has been removed in GCC 4.8. Support for Solaris 7 has been removed in GCC 4.6. --- 1023,1125 ---- on systems older than 10.3.9 (aka darwin7.9.0).
PowerPC system in big endian mode, running System V.4.
PowerPC system in big endian mode running Linux.
PowerPC system in big endian mode running NetBSD.
Embedded PowerPC system in big endian mode for use in running under the PSIM simulator.
Embedded PowerPC system in big endian mode.
PowerPC system in little endian mode, running System V.4.
Embedded PowerPC system in little endian mode for use in running under the PSIM simulator.
Embedded PowerPC system in little endian mode.
The Renesas RL78 processor. This configuration is intended for embedded systems.
The RISC-V RV32 instruction set. This configuration is intended for embedded systems. This (and all other RISC-V) targets require the binutils 2.30 release.
The RISC-V RV32 instruction set running GNU/Linux. This (and all other RISC-V) targets require the binutils 2.30 release.
The RISC-V RV64 instruction set. This configuration is intended for embedded systems. This (and all other RISC-V) targets require the binutils 2.30 release.
The RISC-V RV64 instruction set running GNU/Linux. This (and all other RISC-V) targets require the binutils 2.30 release.
The Renesas RX processor.
S/390 system running GNU/Linux for S/390.
zSeries system (64-bit) running GNU/Linux for zSeries.
zSeries system (64-bit) running TPF. This platform is supported as cross-compilation target only.
Support for Solaris 10 has been removed in GCC 10. Support for Solaris 9 has been removed in GCC 5. Support for Solaris 8 has been removed in GCC 4.8. Support for Solaris 7 has been removed in GCC 4.6. *************** you can install a pre-built GCC to boots *** 1067,1074 **** ‘libstdc++-v3’. We therefore recommend using the following initial sequence of commands
!% CONFIG_SHELL=/bin/ksh % export CONFIG_SHELL
% CONFIG_SHELL=/bin/ksh % export CONFIG_SHELL
This section contains general configuration information for all SPARC-based platforms. In addition to reading this section, please read all other sections that match your target. --- 1192,1199 ----
This section contains general configuration information for all SPARC-based platforms. In addition to reading this section, please read all other sections that match your target. *************** of the exact versions of these libraries *** 1137,1143 **** in the prerequisites.
When GCC is configured to use GNU binutils 2.14 or later, the binaries produced are smaller than the ones produced using Solaris native tools; this difference is quite significant for binaries containing debugging --- 1205,1212 ---- in the prerequisites.
When GCC is configured to use GNU binutils 2.14 or later, the binaries
produced are smaller than the ones produced using Solaris native tools;
this difference is quite significant for binaries containing debugging
*************** target triplet must be specified as the
*** 1157,1171 ****
configure line. This target triplet can be obtained by invoking ./config.guess
in the toplevel source directory of GCC (and
not that of GMP or MPFR or MPC). For example on a Solaris 11 system:
% ./configure --build=sparc-sun-solaris2.11 --prefix=xxx
When configuring a 64-bit-default GCC on Solaris/SPARC, you must use a
build compiler that generates 64-bit code, either by default or by
specifying ‘CC='gcc -m64' CXX='gcc-m64'’ to configure
.
--- 1226,1242 ----
configure line. This target triplet can be obtained by invoking ./config.guess
in the toplevel source directory of GCC (and
not that of GMP or MPFR or MPC). For example on a Solaris 11 system:
% ./configure --build=sparc-sun-solaris2.11 --prefix=xxx
When configuring a 64-bit-default GCC on Solaris/SPARC, you must use a
build compiler that generates 64-bit code, either by default or by
specifying ‘CC='gcc -m64' CXX='gcc-m64'’ to configure
.
*************** library or the MPC library, the canonica
*** 1178,1217 ****
as the build
parameter on the configure line. For example
on a Solaris 11 system:
% ./configure --build=sparc64-sun-solaris2.11 --prefix=xxx
This is a synonym for ‘sparc64-*-solaris2*’.
The C6X family of processors. This port requires binutils-2.22 or newer.
The TILE-Gx processor in little endian mode, running GNU/Linux. This port requires binutils-2.22 or newer.
The TILE-Gx processor in big endian mode, running GNU/Linux. This port requires binutils-2.23 or newer.
The TILEPro processor running GNU/Linux. This port requires binutils-2.22 or newer.
CDS VISIUMcore processor. This configuration is intended for embedded systems.
Support for VxWorks is in flux. At present GCC supports only the
very recent VxWorks 5.5 (aka Tornado 2.2) release, and only on PowerPC.
We welcome patches for other architectures supported by VxWorks 5.5.
--- 1249,1295 ----
as the build
parameter on the configure line. For example
on a Solaris 11 system:
% ./configure --build=sparc64-sun-solaris2.11 --prefix=xxx
This is a synonym for ‘sparc64-*-solaris2*’.
The C6X family of processors. This port requires binutils-2.22 or newer.
The TILE-Gx processor in little endian mode, running GNU/Linux. This port requires binutils-2.22 or newer.
The TILE-Gx processor in big endian mode, running GNU/Linux. This port requires binutils-2.23 or newer.
The TILEPro processor running GNU/Linux. This port requires binutils-2.22 or newer.
CDS VISIUMcore processor. This configuration is intended for embedded systems.
Support for VxWorks is in flux. At present GCC supports only the very recent VxWorks 5.5 (aka Tornado 2.2) release, and only on PowerPC. We welcome patches for other architectures supported by VxWorks 5.5. *************** that file to add the module to your kern *** 1244,1257 **** VxWorks will incorporate this module.)
GCC supports the x86-64 architecture implemented by the AMD64 processor (amd64-*-* is an alias for x86_64-*-*) on GNU/Linux, FreeBSD and NetBSD. On GNU/Linux the default is a bi-arch compiler which is able to generate both 64-bit x86-64 and 32-bit x86 code (via the -m32 switch).
GCC also supports the x86-64 architecture implemented by the AMD64 processor (‘amd64-*-*’ is an alias for ‘x86_64-*-*’) on Solaris 10 or later. Unlike other systems, without special options a --- 1322,1337 ---- VxWorks will incorporate this module.)
GCC supports the x86-64 architecture implemented by the AMD64 processor (amd64-*-* is an alias for x86_64-*-*) on GNU/Linux, FreeBSD and NetBSD. On GNU/Linux the default is a bi-arch compiler which is able to generate both 64-bit x86-64 and 32-bit x86 code (via the -m32 switch).
GCC also supports the x86-64 architecture implemented by the AMD64 processor (‘amd64-*-*’ is an alias for ‘x86_64-*-*’) on Solaris 10 or later. Unlike other systems, without special options a *************** as 64-bit code, configure with --t *** 1264,1270 **** and ‘CC=gcc -m64’.
This target is intended for embedded Xtensa systems using the ‘newlib’ C library. It uses ELF but does not support shared objects. Designed-defined instructions specified via the --- 1344,1351 ---- and ‘CC=gcc -m64’.
This target is intended for embedded Xtensa systems using the ‘newlib’ C library. It uses ELF but does not support shared objects. Designed-defined instructions specified via the *************** downloaded files include a customized co *** 1279,1285 **** which you can use to replace the default header file.
This target is for Xtensa systems running GNU/Linux. It supports ELF shared objects and the GNU C library (glibc). It also generates position-independent code (PIC) regardless of whether the --- 1360,1367 ---- which you can use to replace the default header file.
This target is for Xtensa systems running GNU/Linux. It supports ELF shared objects and the GNU C library (glibc). It also generates position-independent code (PIC) regardless of whether the *************** respects, this target is the same as the *** 1288,1303 **** ‘xtensa*-*-elf’ target.
The 16-bit versions of Microsoft Windows, such as Windows 3.1, are not supported.
However, the 32-bit port has limited support for Microsoft Windows 3.11 in the Win32s environment, as a target only. See below.
!The 32-bit versions of Windows, including Windows 95, Windows NT, Windows XP, and Windows Vista, are supported by several different target platforms. These targets differ in which Windows subsystem they target --- 1370,1388 ---- ‘xtensa*-*-elf’ target.
The 16-bit versions of Microsoft Windows, such as Windows 3.1, are not supported.
However, the 32-bit port has limited support for Microsoft Windows 3.11 in the Win32s environment, as a target only. See below.
! !The 32-bit versions of Windows, including Windows 95, Windows NT, Windows XP, and Windows Vista, are supported by several different target platforms. These targets differ in which Windows subsystem they target *************** the Win32 subsystem that provides a subs *** 1312,1329 **** https://www.mkssoftware.com for more information. !
GCC contains support for x86-64 using the mingw-w64 runtime library, available from http://mingw-w64.org/doku.php. This library should be used with the target triple x86_64-pc-mingw32.
Presently Windows for Itanium is not supported.
!Windows CE is supported as a target only on Hitachi SuperH (sh-wince-pe), and MIPS (mips-wince-pe).
!GCC no longer supports Windows NT on the Alpha or PowerPC.
GCC no longer supports the Windows POSIX subsystem. However, it does --- 1397,1417 ---- https://www.mkssoftware.com for more information. ! !
GCC contains support for x86-64 using the mingw-w64 runtime library, available from http://mingw-w64.org/doku.php. This library should be used with the target triple x86_64-pc-mingw32.
Presently Windows for Itanium is not supported.
! !Windows CE is supported as a target only on Hitachi SuperH (sh-wince-pe), and MIPS (mips-wince-pe).
! !GCC no longer supports Windows NT on the Alpha or PowerPC.
GCC no longer supports the Windows POSIX subsystem. However, it does
*************** be inactive. See Ports of GCC are included with the
Cygwin environment.
UWIN support has been removed due to a lack of maintenance.
*-*-cygwin
!
!
Ports of GCC are included with the Cygwin environment.
*************** the latest official GNU binutils release *** 1351,1363 **** or version 2.20 or above if building your own.GCC will build with and support only MinGW runtime 3.12 and later.
Earlier versions of headers are incompatible with the new default semantics
of extern inline
in -std=c99
and -std=gnu99
modes.
GCC contains support files for many older (1980s and early 1990s) Unix variants. For the most part, support for these systems has not been deliberately removed, but it has not been maintained for --- 1440,1454 ---- or version 2.20 or above if building your own.
GCC will build with and support only MinGW runtime 3.12 and later.
Earlier versions of headers are incompatible with the new default semantics
of extern inline
in -std=c99
and -std=gnu99
modes.
GCC contains support files for many older (1980s and early 1990s) Unix variants. For the most part, support for these systems has not been deliberately removed, but it has not been maintained for *************** about GCC on such systems (which may no *** 1400,1406 **** current GCC) is to be found in the GCC texinfo manual.
C++ support is significantly better on ELF targets if you use the GNU linker; duplicate copies of inlines, vtables and template instantiations will be discarded --- 1491,1498 ---- current GCC) is to be found in the GCC texinfo manual.
C++ support is significantly better on ELF targets if you use the GNU linker; duplicate copies of inlines, vtables and template instantiations will be discarded diff -Nrcpad gcc-10.4.0/INSTALL/test.html gcc-10.5.0/INSTALL/test.html *** gcc-10.4.0/INSTALL/test.html Tue Jun 28 08:55:12 2022 --- gcc-10.5.0/INSTALL/test.html Fri Jul 7 07:08:58 2023 *************** *** 1,8 **** - -
- + + +Before you install GCC, we encourage you to run the testsuites and to compare your results with results from a similar configuration that have --- 83,91 ---- ! ! !
Before you install GCC, we encourage you to run the testsuites and to
compare your results with results from a similar configuration that have
*************** installed are not in the PATH/usr/local
TCL_LIBRARY = /usr/local/share/tcl8.0 DEJAGNULIBS = /usr/local/share/dejagnu
TCL_LIBRARY = /usr/local/share/tcl8.0 DEJAGNULIBS = /usr/local/share/dejagnu
Finally, you can run the testsuite (which may take a long time): !
cd objdir; make -k check
This will test various components of GCC, such as compiler --- 126,133 ----
Finally, you can run the testsuite (which may take a long time): !
cd objdir; make -k check
This will test various components of GCC, such as compiler *************** might emit some harmless messages resemb *** 133,139 ****
If you are testing a cross-compiler, you may want to run the testsuite on a simulator as described at http://gcc.gnu.org/simtest-howto.html.
!In order to run sets of tests selectively, there are targets --- 139,145 ----
If you are testing a cross-compiler, you may want to run the testsuite on a simulator as described at http://gcc.gnu.org/simtest-howto.html.
!In order to run sets of tests selectively, there are targets *************** just run ‘make check& *** 148,162 ****
A more selective way to just run all gcc
execute tests in the
testsuite is to use
make check-gcc RUNTESTFLAGS="execute.exp other-options"
Likewise, in order to run only the g++
“old-deja” tests in
the testsuite with filenames matching ‘9805*’, you would use
make check-g++ RUNTESTFLAGS="old-deja.exp=9805* other-options"
The file-matching expression following filename.exp=
is treated
--- 154,168 ----
A more selective way to just run all gcc
execute tests in the
testsuite is to use
make check-gcc RUNTESTFLAGS="execute.exp other-options"
Likewise, in order to run only the g++
“old-deja” tests in
the testsuite with filenames matching ‘9805*’, you would use
make check-g++ RUNTESTFLAGS="old-deja.exp=9805* other-options"
The file-matching expression following filename.exp=
is treated
*************** as a series of whitespace-delimited glob
*** 164,171 ****
may be passed, although any whitespace must either be escaped or surrounded by
single quotes if multiple expressions are desired. For example,
make check-g++ RUNTESTFLAGS="old-deja.exp=9805*\ virtual2.c other-options" make check-g++ RUNTESTFLAGS="'old-deja.exp=9805* virtual2.c' other-options"
make check-g++ RUNTESTFLAGS="old-deja.exp=9805*\ virtual2.c other-options" make check-g++ RUNTESTFLAGS="'old-deja.exp=9805* virtual2.c' other-options"
You can pass multiple options to the testsuite using the --- 182,188 ---- output of ‘make check’ into a file and look at the ‘Running … .exp’ lines.
!You can pass multiple options to the testsuite using the
*************** output of ‘make check
*** 185,192 ****
‘RUNTESTFLAGS’, or directly to runtest
if you prefer to
work outside the makefiles. For example,
make check-g++ RUNTESTFLAGS="--target_board=unix/-O3/-fmerge-constants"
will run the standard g++
testsuites (“unix” is the target name
--- 190,197 ----
‘RUNTESTFLAGS’, or directly to runtest
if you prefer to
work outside the makefiles. For example,
make check-g++ RUNTESTFLAGS="--target_board=unix/-O3/-fmerge-constants"
will run the standard g++
testsuites (“unix” is the target name
*************** slashes separate options.
*** 197,212 ****
You can run the testsuites multiple times using combinations of options with a syntax similar to the brace expansion of popular shells:
!…"--target_board=arm-sim\{-mhard-float,-msoft-float\}\{-O1,-O2,-O3,\}"
(Note the empty option caused by the trailing comma in the final group.) The following will run each testsuite eight times using the ‘arm-sim’ target, as if you had specified all possible combinations yourself:
!--target_board='arm-sim/-mhard-float/-O1 \ arm-sim/-mhard-float/-O2 \ arm-sim/-mhard-float/-O3 \ arm-sim/-mhard-float \ --- 202,217 ----You can run the testsuites multiple times using combinations of options with a syntax similar to the brace expansion of popular shells:
!!…"--target_board=arm-sim\{-mhard-float,-msoft-float\}\{-O1,-O2,-O3,\}"(Note the empty option caused by the trailing comma in the final group.) The following will run each testsuite eight times using the ‘arm-sim’ target, as if you had specified all possible combinations yourself:
!!!--target_board='arm-sim/-mhard-float/-O1 \ arm-sim/-mhard-float/-O2 \ arm-sim/-mhard-float/-O3 \ arm-sim/-mhard-float \ *************** target, as if you had specified all poss *** 219,226 ****They can be combined as many times as you wish, in arbitrary ways. This list:
!!…"--target_board=unix/-Wextra\{-O3,-fno-strength\}\{-fomit-frame,\}"will generate four combinations, all involving ‘-Wextra’. --- 224,231 ----
They can be combined as many times as you wish, in arbitrary ways. This list:
!!…"--target_board=unix/-Wextra\{-O3,-fno-strength\}\{-fomit-frame,\}"will generate four combinations, all involving ‘-Wextra’. *************** parallel by having the shell perform the *** 232,245 **** do the parallel runs. Instead of using ‘--target_board’, use a special makefile target:
!!make -jN check-testsuite//test-target/option1/option2/…For example,
!!make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}will run three concurrent “make-gcc” testsuites, eventually testing all --- 237,250 ---- do the parallel runs. Instead of using ‘--target_board’, use a special makefile target:
!!make -jN check-testsuite//test-target/option1/option2/…For example,
!!make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}will run three concurrent “make-gcc” testsuites, eventually testing all *************** supported in the gcc subdir *** 248,255 **** typing
!echo
before the example given here.)!How to interpret test results
The result of running the testsuite are various *.sum and *.log --- 253,259 ---- typing
!echo
before the example given here.)How to interpret test results
The result of running the testsuite are various *.sum and *.log *************** over whether or not a test is expected t *** 274,288 **** be fixed in future releases.
!--- 306,312 ---- !Submitting test results
If you want to report the results to the GCC project, use the contrib/test_summary shell script. Start it in the objdir with
!!--- 278,291 ---- be fixed in future releases. !srcdir/contrib/test_summary -p your_commentary.txt \ -m gcc-testresults@gcc.gnu.org |shSubmitting test results
If you want to report the results to the GCC project, use the contrib/test_summary shell script. Start it in the objdir with
!!*************** messages may be automatically processed. *** 303,309 **** !srcdir/contrib/test_summary -p your_commentary.txt \ -m gcc-testresults@gcc.gnu.org |sh
diff -Nrcpad gcc-10.4.0/LAST_UPDATED gcc-10.5.0/LAST_UPDATED *** gcc-10.4.0/LAST_UPDATED Tue Jun 28 08:55:10 2022 --- gcc-10.5.0/LAST_UPDATED Fri Jul 7 07:08:57 2023 *************** *** 1 **** ! Obtained from git: releases/gcc-10.4.0 revision 7ff47281ce4f3699185b06a3430968eac2a5b0c6 --- 1 ---- ! Obtained from git: releases/gcc-10.5.0 revision d04fe5541c53cb16d1ca5c80da044b4c7633dbc6 diff -Nrcpad gcc-10.4.0/MD5SUMS gcc-10.5.0/MD5SUMS *** gcc-10.4.0/MD5SUMS Tue Jun 28 09:30:46 2022 --- gcc-10.5.0/MD5SUMS Fri Jul 7 07:23:52 2023 *************** *** 1,5 **** # This file contains the MD5 checksums of the files in the ! # gcc-10.4.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-10.5.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 *************** d0320fa024ec213600ee6dbf489abd65 .gitig *** 17,43 **** fe60d87048567d4fe8c8a0ed2448bcc8 COPYING.RUNTIME d32239bcb673463ab874e80d47fae504 COPYING3 6a6a8e020838b23406c81b19c1d46df6 COPYING3.LIB ! 6e7d6bcd61dea315e12af0b56eaf1bea ChangeLog fd4ecdf5d672efe2b0e409aca9cf9446 ChangeLog.jit 09538b708302f1735f6fa05b622ecf5e ChangeLog.tree-ssa 24ab760126489e69436a43185dc3d202 INSTALL/README ! 1c06be8540b85795303faa5186490767 INSTALL/binaries.html ! c3c421e1c73564e683d1912d09178242 INSTALL/build.html ! ed9ba39fdc63a2c6092487b0ecdb5f78 INSTALL/configure.html ! 71b5494f672ef1888930edbb71defbd9 INSTALL/download.html ! c330cfa3e24009efc60c76ccc852dbaa INSTALL/finalinstall.html ! 5786c31173880a7a14d83c2d3469623f INSTALL/gfdl.html ! f3c79bc16b7f61da06b42ab5d45d9925 INSTALL/index.html ! 45da48552d767144c7c59ff8cf78163b INSTALL/old.html ! e30701af4d51f69b6bb1c2eb4b70711e INSTALL/prerequisites.html ! e3f671ef58c9848f53e7ae123906a98c INSTALL/specific.html ! 85740f94bacd79a7e69e888dce5753de INSTALL/test.html ! d81345babf6e5cf3fa2115c5e7d28be5 LAST_UPDATED 4ccaac378eb9cf3fbfcf750473e826bf MAINTAINERS cb5edf936597133b680860a5356159ae Makefile.def 27d6ec707037e5745ef2223c4a3f9360 Makefile.in bd1b01226d5dc4857f2b8305a5af47b3 Makefile.tpl ! 87b17f3b6a94ff1d4ecfd1450bcfa7c0 NEWS 80d26bc3b1ad4f6969a96a24c9181bf5 README a657821f65bab77f4fbf3a75cdee6da9 ar-lib 500b9244caa7a7ab23ece1db37efa76d compile --- 17,43 ---- fe60d87048567d4fe8c8a0ed2448bcc8 COPYING.RUNTIME d32239bcb673463ab874e80d47fae504 COPYING3 6a6a8e020838b23406c81b19c1d46df6 COPYING3.LIB ! f15269999764549fd08edd68381450ea ChangeLog fd4ecdf5d672efe2b0e409aca9cf9446 ChangeLog.jit 09538b708302f1735f6fa05b622ecf5e ChangeLog.tree-ssa 24ab760126489e69436a43185dc3d202 INSTALL/README ! e1c93ceda3bbe87922603d635c313b8f INSTALL/binaries.html ! bc73295b6d9e4f3d9b92938ec40eb31d INSTALL/build.html ! eb0f66c515f528168811009a95e6251f INSTALL/configure.html ! d9fd48c7e3572c71d29718a822559709 INSTALL/download.html ! cadabbcbc80839856a250fb9718edd4a INSTALL/finalinstall.html ! e9fe891b162f4aa1b9dd2f6d32b041b5 INSTALL/gfdl.html ! 79e8d9191ad9b199665b9926001d2395 INSTALL/index.html ! 63764c6d871b587581a99d935f33bf5a INSTALL/old.html ! 9a15ddbf1b6937ce25f38e1ff5e1b54c INSTALL/prerequisites.html ! b837a1e2fb39ecd453886d9ca05a2786 INSTALL/specific.html ! aa64c5e8c1a4235d4d6ff2b96321a4a1 INSTALL/test.html ! 8353b940c4cc902cb9db9d83d4f78090 LAST_UPDATED 4ccaac378eb9cf3fbfcf750473e826bf MAINTAINERS cb5edf936597133b680860a5356159ae Makefile.def 27d6ec707037e5745ef2223c4a3f9360 Makefile.in bd1b01226d5dc4857f2b8305a5af47b3 Makefile.tpl ! 079381ccd71fd5136609acd03db878b1 NEWS 80d26bc3b1ad4f6969a96a24c9181bf5 README a657821f65bab77f4fbf3a75cdee6da9 ar-lib 500b9244caa7a7ab23ece1db37efa76d compile *************** a657821f65bab77f4fbf3a75cdee6da9 ar-lib *** 45,51 **** b3c47a769a12794661355d3a5dcfeb3d config.guess 040359150cf11493f973a46d8a25b06b config.rpath 8172cd8087c91ceb16a61a62c9d71ff1 config.sub ! ff300defbb21c05e66db2573ed302d6c config/ChangeLog 0fcd4badfe2a2191778bdf5ab94aa40c config/acinclude.m4 2ea0edfde0ce5ce69b49317a5650f048 config/acx.m4 6b030f5cf640bdd401ea739f54a667f8 config/asmcfi.m4 --- 45,51 ---- b3c47a769a12794661355d3a5dcfeb3d config.guess 040359150cf11493f973a46d8a25b06b config.rpath 8172cd8087c91ceb16a61a62c9d71ff1 config.sub ! f02e15b933bffea246193ba5a6b0e39d config/ChangeLog 0fcd4badfe2a2191778bdf5ab94aa40c config/acinclude.m4 2ea0edfde0ce5ce69b49317a5650f048 config/acx.m4 6b030f5cf640bdd401ea739f54a667f8 config/asmcfi.m4 *************** e2dc6b4fd62b77bff96b7951ef74f78f config *** 144,150 **** 0163b672c888aaf1c8ad3e867a0ec9f1 config/zlib.m4 c009c02627e52f6da0c8e85d79a04f79 configure 6503b83e283382eb3d11c0fbe430c34d configure.ac ! 87122df5eb58027c04140aeebf9d7cc2 contrib/ChangeLog 5fc435c7928f858246df931ea3f3ece7 contrib/ChangeLog.jit 7af8d2979bf1a7cfa88e30d05fa22be2 contrib/ChangeLog.tree-ssa 8498c0cdfe3f444ad6f540ec9e11cbec contrib/analyze_brprob.py --- 144,150 ---- 0163b672c888aaf1c8ad3e867a0ec9f1 config/zlib.m4 c009c02627e52f6da0c8e85d79a04f79 configure 6503b83e283382eb3d11c0fbe430c34d configure.ac ! 35f3c8600296c6114a246c2ccd3b4659 contrib/ChangeLog 5fc435c7928f858246df931ea3f3ece7 contrib/ChangeLog.jit 7af8d2979bf1a7cfa88e30d05fa22be2 contrib/ChangeLog.tree-ssa 8498c0cdfe3f444ad6f540ec9e11cbec contrib/analyze_brprob.py *************** e9bac7c82bdb5f92b354d9da854d463b contri *** 197,203 **** e462c83bdf45bf6e9b434d18fa9f66e4 contrib/git-fix-changelog.py 6996a054c7e7aaf9f27737c3d6f2518c contrib/git-undescr.sh 59304fc08afa489baa6b920cc76dc625 contrib/gthr_supp_vxw_5x.c ! c7f6fe6c2886edd657b64d6ee05262b7 contrib/header-tools/ChangeLog 4f7d3bf5dd67c6b144a7a1ea0bb4127b contrib/header-tools/README 05ef7fb87e90ba93ee04659be072a357 contrib/header-tools/count-headers ba0485a3c721bce9e32407ef996d2a9d contrib/header-tools/gcc-order-headers --- 197,203 ---- e462c83bdf45bf6e9b434d18fa9f66e4 contrib/git-fix-changelog.py 6996a054c7e7aaf9f27737c3d6f2518c contrib/git-undescr.sh 59304fc08afa489baa6b920cc76dc625 contrib/gthr_supp_vxw_5x.c ! 6f2ecb3c1fc55e5d647446655b953078 contrib/header-tools/ChangeLog 4f7d3bf5dd67c6b144a7a1ea0bb4127b contrib/header-tools/README 05ef7fb87e90ba93ee04659be072a357 contrib/header-tools/count-headers ba0485a3c721bce9e32407ef996d2a9d contrib/header-tools/gcc-order-headers *************** a34668cfad9dec733354503fbc67fb24 contri *** 222,228 **** 87a19b40fbd220938cf6c23c42c255e2 contrib/prepare_patch.sh 6bc8415291f74dbbb7994622ca9a7b28 contrib/prerequisites.md5 2a7fbcbf9b708ecbd31408646f9dd122 contrib/prerequisites.sha512 ! 7a3164f3afed40fdc6289071ec5aca65 contrib/reghunt/ChangeLog cf247a580e49d212518de409793db0a8 contrib/reghunt/bin/gcc-build-full 724e70ea3e80f87f2a201bbe2f1eef37 contrib/reghunt/bin/gcc-build-simple 3f2318bae7562a4ad1639e686916a545 contrib/reghunt/bin/gcc-cleanup --- 222,228 ---- 87a19b40fbd220938cf6c23c42c255e2 contrib/prepare_patch.sh 6bc8415291f74dbbb7994622ca9a7b28 contrib/prerequisites.md5 2a7fbcbf9b708ecbd31408646f9dd122 contrib/prerequisites.sha512 ! 04ec408787ae53bb825ad03bbadfe536 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 *** 281,287 **** e2829fc4af4f433a6a328a62d5ce8066 contrib/reghunt/examples/reg-watch afd863c2ec84c906e20f9b9787b1f0fe contrib/reghunt/examples/reg-watch.awk 8955535523d4b5f48006bcb851ba9b4b contrib/reghunt/examples/testall ! 2edae0119f89aea8085486504b8914cd 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 --- 281,287 ---- e2829fc4af4f433a6a328a62d5ce8066 contrib/reghunt/examples/reg-watch afd863c2ec84c906e20f9b9787b1f0fe contrib/reghunt/examples/reg-watch.awk 8955535523d4b5f48006bcb851ba9b4b contrib/reghunt/examples/testall ! 6a7742d3cd037de7dc8fddde12385e03 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 *************** a0d12be401961a2557883b7c09dc71eb contri *** 321,327 **** b99476ca28b484080c3ec5916a9ca3f9 contrib/vimrc da7aeedeb5a86ee6f5982e559a2d6dcc contrib/warn_summary 8b59f0d0a2dcdced14765c514fbad719 depcomp ! be878b66d84566f7311647d0ae4cfec9 fixincludes/ChangeLog 6de190723745dc3f75080144dfa2215e fixincludes/Makefile.in b6e3f4950abc6e254b467063381f6473 fixincludes/README 455903ad4ff71fa5c5340ef7ae41a0e6 fixincludes/README-fixinc --- 321,327 ---- b99476ca28b484080c3ec5916a9ca3f9 contrib/vimrc da7aeedeb5a86ee6f5982e559a2d6dcc contrib/warn_summary 8b59f0d0a2dcdced14765c514fbad719 depcomp ! 0332a69d2a916ea43ff8184508e5c572 fixincludes/ChangeLog 6de190723745dc3f75080144dfa2215e fixincludes/Makefile.in b6e3f4950abc6e254b467063381f6473 fixincludes/README 455903ad4ff71fa5c5340ef7ae41a0e6 fixincludes/README-fixinc *************** a319a505bde6920ddb4832cf41af3488 fixinc *** 334,346 **** a316c9d3351e61998fa688dceaf610a3 fixincludes/fixinc.in 1582ffd94ecc91318eebfb3b81e0bcb1 fixincludes/fixincl.c adf245e3714f799eafba40af16be8eb5 fixincludes/fixincl.tpl ! bb41b0e72c13cc48dbbf422a053f1f1b fixincludes/fixincl.x 545875b4fe1c26bc3e1befc75b34e9f5 fixincludes/fixlib.c 620c770139fc32c75b975b614d3156e8 fixincludes/fixlib.h 5b2c1fd3ef9d44fb6beb1a0d45ddd533 fixincludes/fixopts.c ed1415e9dbc8f421fd9288bde0d90ad1 fixincludes/fixtests.c 51e915676df084b64297d3c4fb0d9c18 fixincludes/genfixes ! 1be7b0f7be966d43d28d793c9400876d fixincludes/inclhack.def dd5ae70d9f725bcaf2a15212782db49a fixincludes/mkfixinc.sh 516608ac1550577d47f48809bb512629 fixincludes/mkheaders.in 3aa0563cd682ee61ecd9eb6eea0b0bce fixincludes/procopen.c --- 334,346 ---- a316c9d3351e61998fa688dceaf610a3 fixincludes/fixinc.in 1582ffd94ecc91318eebfb3b81e0bcb1 fixincludes/fixincl.c adf245e3714f799eafba40af16be8eb5 fixincludes/fixincl.tpl ! 22e58e1d30f83cb5b68bdf5f5e493c66 fixincludes/fixincl.x 545875b4fe1c26bc3e1befc75b34e9f5 fixincludes/fixlib.c 620c770139fc32c75b975b614d3156e8 fixincludes/fixlib.h 5b2c1fd3ef9d44fb6beb1a0d45ddd533 fixincludes/fixopts.c ed1415e9dbc8f421fd9288bde0d90ad1 fixincludes/fixtests.c 51e915676df084b64297d3c4fb0d9c18 fixincludes/genfixes ! 11f3d003d0f63c413bf70bbc1c8ec496 fixincludes/inclhack.def dd5ae70d9f725bcaf2a15212782db49a fixincludes/mkfixinc.sh 516608ac1550577d47f48809bb512629 fixincludes/mkheaders.in 3aa0563cd682ee61ecd9eb6eea0b0bce fixincludes/procopen.c *************** d2cbc665e9046f8acb42c1271592be47 fixinc *** 396,401 **** --- 396,402 ---- a911f5fbb127353024e77149fcf90596 fixincludes/tests/base/netdnet/dnetdb.h f690db296a82aeefa0bfe9ad74a2b71c fixincludes/tests/base/netinet/in.h 2649ccca3396541aeb5e612d4b4a3141 fixincludes/tests/base/netinet/ip.h + 209cd203eddb99971d08755fd4912558 fixincludes/tests/base/objc/runtime.h f4a72388e98f34c098a3467dce9aa4e1 fixincludes/tests/base/obstack.h c213736f179d8de08a09a9278e048d91 fixincludes/tests/base/os/availability.h c3da2b1720112f2adb1c2bbf65563364 fixincludes/tests/base/os/base.h *************** d2f1ddef1ca3edae298e37f7bc892941 fixinc *** 428,434 **** 563eddf934e21ec7f85628e18fb1c641 fixincludes/tests/base/stdint-hpux11.h cc3783f241fa992a305aced8e1195ee9 fixincludes/tests/base/stdint-newlib.h 1ee4e2b61ae5781d35271f3181927037 fixincludes/tests/base/stdint.h ! d47412644cdea4f030ba2744eca6d8ad fixincludes/tests/base/stdio.h 1887d8bc1711dae9922852cda6027877 fixincludes/tests/base/stdio_tag.h 63b7afc35517454fd4753b811e9b6e2e fixincludes/tests/base/stdlib.h 42a7de17fb8f2ac74bc30c7029199637 fixincludes/tests/base/string.h --- 429,435 ---- 563eddf934e21ec7f85628e18fb1c641 fixincludes/tests/base/stdint-hpux11.h cc3783f241fa992a305aced8e1195ee9 fixincludes/tests/base/stdint-newlib.h 1ee4e2b61ae5781d35271f3181927037 fixincludes/tests/base/stdint.h ! df6201177ee6354a4bb61b84de3f16b6 fixincludes/tests/base/stdio.h 1887d8bc1711dae9922852cda6027877 fixincludes/tests/base/stdio_tag.h 63b7afc35517454fd4753b811e9b6e2e fixincludes/tests/base/stdlib.h 42a7de17fb8f2ac74bc30c7029199637 fixincludes/tests/base/string.h *************** a5e817d35ded04a0fb03999b50c0e89e fixinc *** 461,472 **** 955462b555900ecd3934223c64e21fa7 fixincludes/tests/base/types/vxTypesBase.h 8baab8698bb83c6b90ef4091c00ddc1e fixincludes/tests/base/unistd.h 1ce72cc651f747fb639548ef7ebd9343 gcc/ABOUT-GCC-NLS ! 959d4d8d0d62b27e19b225036300d43d gcc/BASE-VER 59530bdf33659b29e73d4adb9f9f6552 gcc/COPYING a916467b91076e631dd8edb7424769c7 gcc/COPYING.LIB d32239bcb673463ab874e80d47fae504 gcc/COPYING3 6a6a8e020838b23406c81b19c1d46df6 gcc/COPYING3.LIB ! 17166c1f8c276093a40eedac8d6d75e0 gcc/ChangeLog a3b63c675afa7a655cc2bfa8a907af79 gcc/ChangeLog-1997 d9a88529352a010253c2e8fb1ed6023b gcc/ChangeLog-1998 240f08f81cb4699e8b49347db38233db gcc/ChangeLog-1999 --- 462,473 ---- 955462b555900ecd3934223c64e21fa7 fixincludes/tests/base/types/vxTypesBase.h 8baab8698bb83c6b90ef4091c00ddc1e fixincludes/tests/base/unistd.h 1ce72cc651f747fb639548ef7ebd9343 gcc/ABOUT-GCC-NLS ! 9853d83f7149652f91ed075f16e8ed03 gcc/BASE-VER 59530bdf33659b29e73d4adb9f9f6552 gcc/COPYING a916467b91076e631dd8edb7424769c7 gcc/COPYING.LIB d32239bcb673463ab874e80d47fae504 gcc/COPYING3 6a6a8e020838b23406c81b19c1d46df6 gcc/COPYING3.LIB ! dc8bdb11b05657b38d973c52b2d8ec83 gcc/ChangeLog a3b63c675afa7a655cc2bfa8a907af79 gcc/ChangeLog-1997 d9a88529352a010253c2e8fb1ed6023b gcc/ChangeLog-1998 240f08f81cb4699e8b49347db38233db gcc/ChangeLog-1999 *************** fb3fadb88e1d2b3b640cfaaa5ff11780 gcc/Ch *** 498,504 **** 3eb07e0b2e542409bf73d359f7f65609 gcc/ChangeLog.ptr e13638e26743ba41e6011b76cc00d9a9 gcc/ChangeLog.tree-ssa 739ab47f6425bcea1d05e4fc0542de54 gcc/ChangeLog.tuples ! 769f536015269fbdf03c8015200f7fe6 gcc/DATESTAMP d41d8cd98f00b204e9800998ecf8427e gcc/DEV-PHASE eb92e1ff5e982ca07e173e0eb286d243 gcc/FSFChangeLog 30e1e33411566388b3164558482dc5e6 gcc/FSFChangeLog.10 --- 499,505 ---- 3eb07e0b2e542409bf73d359f7f65609 gcc/ChangeLog.ptr e13638e26743ba41e6011b76cc00d9a9 gcc/ChangeLog.tree-ssa 739ab47f6425bcea1d05e4fc0542de54 gcc/ChangeLog.tuples ! f9020cecc8487ee2ed93ddc6a32bdf05 gcc/DATESTAMP d41d8cd98f00b204e9800998ecf8427e gcc/DEV-PHASE eb92e1ff5e982ca07e173e0eb286d243 gcc/FSFChangeLog 30e1e33411566388b3164558482dc5e6 gcc/FSFChangeLog.10 *************** ec6799501b2eb2923d5de6a66169dbd2 gcc/ON *** 509,515 **** b23b4202aae37888126f4e47d40b8fe9 gcc/README.Portability 44bcc4f9a8803d3dcc72b217421afef0 gcc/acinclude.m4 6879fc308101ea4a52d17fb89e463ec2 gcc/aclocal.m4 ! cec47ed31dbe78ce8e7ccdae94fc0621 gcc/ada/ChangeLog 683be0b07dc4f64f118fd5e8ae9cb30d gcc/ada/ChangeLog-2001 7aff25efb203be4136b8776cdc812956 gcc/ada/ChangeLog-2002 cd2379152000f40157d349018fb9364d gcc/ada/ChangeLog-2003 --- 510,516 ---- b23b4202aae37888126f4e47d40b8fe9 gcc/README.Portability 44bcc4f9a8803d3dcc72b217421afef0 gcc/acinclude.m4 6879fc308101ea4a52d17fb89e463ec2 gcc/aclocal.m4 ! d5248a71ab11fef323f181cb13fb6110 gcc/ada/ChangeLog 683be0b07dc4f64f118fd5e8ae9cb30d gcc/ada/ChangeLog-2001 7aff25efb203be4136b8776cdc812956 gcc/ada/ChangeLog-2002 cd2379152000f40157d349018fb9364d gcc/ada/ChangeLog-2003 *************** bf97b7f8e6545014e1b279ad0d620c83 gcc/ad *** 2700,2706 **** 08e25cef2848d0514379987946b6ca3a gcc/align.h c7cfb5850156fc8afe634563752d95a3 gcc/alloc-pool.c ee7f0ff2bee3fadcdee7a89a27acb71b gcc/alloc-pool.h ! fd6fa16abdfb5ce97cc21cc642d83357 gcc/analyzer/ChangeLog 77136ce027aa1a848c103c22012f4981 gcc/analyzer/analysis-plan.cc 1584264752cd434a0710f577b0dfa611 gcc/analyzer/analysis-plan.h 3a2b0d98433a870a9557dfdce96f66a9 gcc/analyzer/analyzer-logging.cc --- 2701,2707 ---- 08e25cef2848d0514379987946b6ca3a gcc/align.h c7cfb5850156fc8afe634563752d95a3 gcc/alloc-pool.c ee7f0ff2bee3fadcdee7a89a27acb71b gcc/alloc-pool.h ! 164d4580f3440f874a5c910642fcd9c2 gcc/analyzer/ChangeLog 77136ce027aa1a848c103c22012f4981 gcc/analyzer/analysis-plan.cc 1584264752cd434a0710f577b0dfa611 gcc/analyzer/analysis-plan.h 3a2b0d98433a870a9557dfdce96f66a9 gcc/analyzer/analyzer-logging.cc *************** d8c9aff92756dfb6bea625ad3991c6f4 gcc/an *** 2749,2755 **** 7fb862b48294ed6a0179f1e37e83e379 gcc/analyzer/supergraph.cc ae73cd9f21809df4536e52b1d362b94e gcc/analyzer/supergraph.h d311c2d7a0c5f301689d9840cec0a20a gcc/array-traits.h ! 855ead6b447cf993204b6628d0513f9f gcc/asan.c a2de801369a7f06644ece2df336529f1 gcc/asan.h 3c3a488f40039a38b62b0caa467387ae gcc/attribs.c f2cd647934c49497538483a30bc682d0 gcc/attribs.h --- 2750,2756 ---- 7fb862b48294ed6a0179f1e37e83e379 gcc/analyzer/supergraph.cc ae73cd9f21809df4536e52b1d362b94e gcc/analyzer/supergraph.h d311c2d7a0c5f301689d9840cec0a20a gcc/array-traits.h ! 02e6e8512a03a701b50e51392c53ddb4 gcc/asan.c a2de801369a7f06644ece2df336529f1 gcc/asan.h 3c3a488f40039a38b62b0caa467387ae gcc/attribs.c f2cd647934c49497538483a30bc682d0 gcc/attribs.h *************** f2cd647934c49497538483a30bc682d0 gcc/at *** 2758,2769 **** 99bc5c71d5fb4bf69a5e455f79128f74 gcc/auto-profile.h d9b93533583bd6d03ba50eb7ced289ec gcc/backend.h 5f05e2acbb25d4424e645fa90160db40 gcc/basic-block.h ! cf933c0e81e09ddcb384623eb6340d83 gcc/bb-reorder.c 18054ed38369e095ba2ef32684fd9dc2 gcc/bb-reorder.h f7b5eb17081fd36741c37e2fbae07255 gcc/bitmap.c 18c3da3fab8c769aed98aa69a2c72082 gcc/bitmap.h aa400898daf96dc45fdd63ffc02e43d9 gcc/brig-builtins.def ! 0920e3ba1195fa5dd5240b3526e643f8 gcc/brig/ChangeLog bab627d6443c1a1acc88dda9e6f6e709 gcc/brig/Make-lang.in 0b230923a4c2c3af6b4d7ce68c999bb7 gcc/brig/brig-builtins.h 774fc3b6756369a6579cac74f64c911f gcc/brig/brig-c.h --- 2759,2770 ---- 99bc5c71d5fb4bf69a5e455f79128f74 gcc/auto-profile.h d9b93533583bd6d03ba50eb7ced289ec gcc/backend.h 5f05e2acbb25d4424e645fa90160db40 gcc/basic-block.h ! 3b5f05b5bd5014ce7e1fd998b41cd77e gcc/bb-reorder.c 18054ed38369e095ba2ef32684fd9dc2 gcc/bb-reorder.h f7b5eb17081fd36741c37e2fbae07255 gcc/bitmap.c 18c3da3fab8c769aed98aa69a2c72082 gcc/bitmap.h aa400898daf96dc45fdd63ffc02e43d9 gcc/brig-builtins.def ! 1d70272bc6fc6a16566a43894646d407 gcc/brig/ChangeLog bab627d6443c1a1acc88dda9e6f6e709 gcc/brig/Make-lang.in 0b230923a4c2c3af6b4d7ce68c999bb7 gcc/brig/brig-builtins.h 774fc3b6756369a6579cac74f64c911f gcc/brig/brig-c.h *************** df2479761de54ed90a98e54f52fb50a2 gcc/br *** 2806,2820 **** 0d1a99c0e202b680ee608858701de0bf gcc/brig/lang.opt d3b19e5439825080ec7a33d50b0068df gcc/builtin-attrs.def 1be7e27be346b87cc4427d231810a8eb gcc/builtin-types.def ! a53ce347ce39cc70a2a3d5766b7f96fc gcc/builtins.c cf87a3e542aeb250ce5b39931e715fcd gcc/builtins.def 2ecd530cb8252acf75726a9febdb44db gcc/builtins.h ! c646c5262db075984549d61c313049e1 gcc/c-family/ChangeLog ea3fa1f4d7390a105fa3caab4f79aaf7 gcc/c-family/ChangeLog.gimple-classes 15beccd0d77567834582c6b0c51fd52a gcc/c-family/c-ada-spec.c 5dc1afd075cf7eaa7849b1835aaf5151 gcc/c-family/c-ada-spec.h 9d64ecd919e42f1fb8fedbf776b6a3bb gcc/c-family/c-attribs.c ! 74df8819e134ed94a6f76aee45691be3 gcc/c-family/c-common.c 0c8a813eb65969867173b24c30327a76 gcc/c-family/c-common.def ef53645c9103d1b6ceaf102c3a883946 gcc/c-family/c-common.h d5f855d41dfcb98f0d6feb33202debad gcc/c-family/c-cppbuiltin.c --- 2807,2821 ---- 0d1a99c0e202b680ee608858701de0bf gcc/brig/lang.opt d3b19e5439825080ec7a33d50b0068df gcc/builtin-attrs.def 1be7e27be346b87cc4427d231810a8eb gcc/builtin-types.def ! 40ae33fb34c1cd3a5a1480de82ff2766 gcc/builtins.c cf87a3e542aeb250ce5b39931e715fcd gcc/builtins.def 2ecd530cb8252acf75726a9febdb44db gcc/builtins.h ! 49bab4976d979467258a37d3028cf468 gcc/c-family/ChangeLog ea3fa1f4d7390a105fa3caab4f79aaf7 gcc/c-family/ChangeLog.gimple-classes 15beccd0d77567834582c6b0c51fd52a gcc/c-family/c-ada-spec.c 5dc1afd075cf7eaa7849b1835aaf5151 gcc/c-family/c-ada-spec.h 9d64ecd919e42f1fb8fedbf776b6a3bb gcc/c-family/c-attribs.c ! ae4aad8eb094359b73eb250d530ffe29 gcc/c-family/c-common.c 0c8a813eb65969867173b24c30327a76 gcc/c-family/c-common.def ef53645c9103d1b6ceaf102c3a883946 gcc/c-family/c-common.h d5f855d41dfcb98f0d6feb33202debad gcc/c-family/c-cppbuiltin.c *************** fc14322847441cb3667440bc87da3b52 gcc/c- *** 2840,2855 **** bfd80d2148106bac1d05ea7c2b9411eb gcc/c-family/c-target-def.h 7242045cebb1e11387757265413d5251 gcc/c-family/c-target.def 2aa125b135889f7a2184e6c67397c8cb gcc/c-family/c-target.h ! 4dabf2f881abddea3da78ee7e6183342 gcc/c-family/c-ubsan.c 7cf91a9589ce350e33ba2b47bb1a325f gcc/c-family/c-ubsan.h ! a16f65c4674ae5b380d92da924474737 gcc/c-family/c-warn.c a963b4151ab066656972c16278375da4 gcc/c-family/c.opt b43dece1279b57c11814d52a65e6b6ea gcc/c-family/cppspec.c 5c832c1af744d342632adae122b0c3ab gcc/c-family/known-headers.cc 01877474441e3959ec1e408406d4474a gcc/c-family/known-headers.h 9a481669d5130c0d3aa82564914e7783 gcc/c-family/name-hint.h 1773a72e335345c533ee83230093bc6c gcc/c-family/stub-objc.c ! 1a7731d4bfb67c7da261f41829b96acd gcc/c/ChangeLog f6929faadb53d5b9422199d45077f288 gcc/c/Make-lang.in 126762639055b3b1b86e5d430aa07db1 gcc/c/c-aux-info.c e377a3eb832170e8484be76c63e35536 gcc/c/c-convert.c --- 2841,2856 ---- bfd80d2148106bac1d05ea7c2b9411eb gcc/c-family/c-target-def.h 7242045cebb1e11387757265413d5251 gcc/c-family/c-target.def 2aa125b135889f7a2184e6c67397c8cb gcc/c-family/c-target.h ! e98526fa9fa6aa7eb776f14e387b69f0 gcc/c-family/c-ubsan.c 7cf91a9589ce350e33ba2b47bb1a325f gcc/c-family/c-ubsan.h ! 0a28901b4f3b24a889a2b7ddbac2bc3f gcc/c-family/c-warn.c a963b4151ab066656972c16278375da4 gcc/c-family/c.opt b43dece1279b57c11814d52a65e6b6ea gcc/c-family/cppspec.c 5c832c1af744d342632adae122b0c3ab gcc/c-family/known-headers.cc 01877474441e3959ec1e408406d4474a gcc/c-family/known-headers.h 9a481669d5130c0d3aa82564914e7783 gcc/c-family/name-hint.h 1773a72e335345c533ee83230093bc6c gcc/c-family/stub-objc.c ! 65aedd15a7dedcefbfc2ae5716be5d65 gcc/c/ChangeLog f6929faadb53d5b9422199d45077f288 gcc/c/Make-lang.in 126762639055b3b1b86e5d430aa07db1 gcc/c/c-aux-info.c e377a3eb832170e8484be76c63e35536 gcc/c/c-convert.c *************** ae73260f7f31cd757ce5b67753166db3 gcc/c/ *** 2860,2869 **** 8ff8157204a8c00a98837c8c608eb8d3 gcc/c/c-lang.h a923e8ff4b2e324962750726e86ee483 gcc/c/c-objc-common.c b99037c5342efcb88c484e69767809b8 gcc/c/c-objc-common.h ! 6a6621ec4fe222932af0d82dc0c81dee gcc/c/c-parser.c 4e3cefb76c65add787d87d68751b1a07 gcc/c/c-parser.h e9fc075c7931d694d1792d63eec30240 gcc/c/c-tree.h ! 37e5340a4ac0aaf918f5ec5b75fd62f2 gcc/c/c-typeck.c c775f0b0fdab664f9af6d91c50d00bf1 gcc/c/config-lang.in 315c046f9a968d163b235879526db9de gcc/c/gccspec.c 810ad966d180268d4d993296f973dd2a gcc/c/gimple-parser.c --- 2861,2870 ---- 8ff8157204a8c00a98837c8c608eb8d3 gcc/c/c-lang.h a923e8ff4b2e324962750726e86ee483 gcc/c/c-objc-common.c b99037c5342efcb88c484e69767809b8 gcc/c/c-objc-common.h ! f22b35bf1222b603340df8b3ddf7d118 gcc/c/c-parser.c 4e3cefb76c65add787d87d68751b1a07 gcc/c/c-parser.h e9fc075c7931d694d1792d63eec30240 gcc/c/c-tree.h ! b49a24d03acea3cd87ee031770b16af8 gcc/c/c-typeck.c c775f0b0fdab664f9af6d91c50d00bf1 gcc/c/config-lang.in 315c046f9a968d163b235879526db9de gcc/c/gccspec.c 810ad966d180268d4d993296f973dd2a gcc/c/gimple-parser.c *************** ca842079779fd4ad57902f8f2c010008 gcc/cf *** 2878,2884 **** 82eb42382bd27f495e40808042cf77c9 gcc/cfg.h b8a8f13511b2a58a92f6f88180478eed gcc/cfganal.c 323bf37c29b5e56113ce2ef1d930f53f gcc/cfganal.h ! 7545937c02f6a985cafd1ad68106530a gcc/cfgbuild.c 4ff5cc9e540613e104f270326dd30463 gcc/cfgbuild.h 33a44e2340091ed8621bc5b7e3c328cd gcc/cfgcleanup.c 18ca8e6def454559f2c04130a898ff21 gcc/cfgcleanup.h --- 2879,2885 ---- 82eb42382bd27f495e40808042cf77c9 gcc/cfg.h b8a8f13511b2a58a92f6f88180478eed gcc/cfganal.c 323bf37c29b5e56113ce2ef1d930f53f gcc/cfganal.h ! 3127da0fa4ab9a2ec7e0fe3a59fed4bf gcc/cfgbuild.c 4ff5cc9e540613e104f270326dd30463 gcc/cfgbuild.h 33a44e2340091ed8621bc5b7e3c328cd gcc/cfgcleanup.c 18ca8e6def454559f2c04130a898ff21 gcc/cfgcleanup.h *************** ec3e0c9cceed5cde000334a220d1fb2a gcc/cf *** 2896,2903 **** fde53137ba6eba2024e5c18c0b6cf126 gcc/cgraph.c 05f66df4f4ad23469d802fc5ff9e9407 gcc/cgraph.h 021c740e1daa2bdafc9ab317291049c2 gcc/cgraphbuild.c ! 4537dcaa864e307b8fc8c03fa97b7691 gcc/cgraphclones.c ! c8a675e59007c17716a525659fa4904d gcc/cgraphunit.c 5a7eddec9678673e57d3a69ff6af685a gcc/cif-code.def 5595308078fee082f4fe05d41d158b04 gcc/collect-utils.c d0e4b33a4a5624ecb4ca454449ef852e gcc/collect-utils.h --- 2897,2904 ---- fde53137ba6eba2024e5c18c0b6cf126 gcc/cgraph.c 05f66df4f4ad23469d802fc5ff9e9407 gcc/cgraph.h 021c740e1daa2bdafc9ab317291049c2 gcc/cgraphbuild.c ! 6a25435fc680f548dd21eb4a637974a9 gcc/cgraphclones.c ! f287ea0726984086f10263706e3bd9ab gcc/cgraphunit.c 5a7eddec9678673e57d3a69ff6af685a gcc/cif-code.def 5595308078fee082f4fe05d41d158b04 gcc/collect-utils.c d0e4b33a4a5624ecb4ca454449ef852e gcc/collect-utils.h *************** b998e3e42e990e538681c8211c40adb4 gcc/co *** 2933,2939 **** 93f9752c019903aa3b88af20d312a32a gcc/common/config/gcn/gcn-common.c f7b07b42faba07a6cd967478fb57b40c gcc/common/config/h8300/h8300-common.c 62f27ccd6014a10fcac9f9005b1a412a gcc/common/config/i386/i386-common.c ! 20f4d3f57481017d067c7437791054b3 gcc/common/config/i386/i386-cpuinfo.h f40a01d16708a5237ad64c2b1ee4ff00 gcc/common/config/ia64/ia64-common.c f9d2c3ee53d7c99a280e6f1442754992 gcc/common/config/iq2000/iq2000-common.c 12a26ad3144eb29c818970dba1363281 gcc/common/config/lm32/lm32-common.c --- 2934,2940 ---- 93f9752c019903aa3b88af20d312a32a gcc/common/config/gcn/gcn-common.c f7b07b42faba07a6cd967478fb57b40c gcc/common/config/h8300/h8300-common.c 62f27ccd6014a10fcac9f9005b1a412a gcc/common/config/i386/i386-common.c ! fae3d8ff7703a63de5cdc4b892eb2c78 gcc/common/config/i386/i386-cpuinfo.h f40a01d16708a5237ad64c2b1ee4ff00 gcc/common/config/ia64/ia64-common.c f9d2c3ee53d7c99a280e6f1442754992 gcc/common/config/iq2000/iq2000-common.c 12a26ad3144eb29c818970dba1363281 gcc/common/config/lm32/lm32-common.c *************** f6304e65f3c00a6a7aee195a39898f89 gcc/co *** 2968,2989 **** 8763e6612b3f349cca760cdd8226cddd gcc/compare-elim.c eab0d30a85465c8dfc86d5de1b6fbeb0 gcc/conditions.h c8cbeab9205c5362586933dd45dc115e gcc/config.build ! eca8c32a5be6aa0aba025ab99916e2ca gcc/config.gcc a0c075b392f11951c415335bdf967308 gcc/config.host d9c4940061976b97581faa8115f9bfcd gcc/config.in 8e697813dc96ca90f5d0f4c196efe2cc gcc/config/README e100e878ef9a128dbaa8fac0c0a00e15 gcc/config/aarch64/aarch64-arches.def d75c36a73f9ff426af3f63ac06794e39 gcc/config/aarch64/aarch64-bti-insert.c 1e3e6b0b4deb9c4d7ba78b9ec8c7947e gcc/config/aarch64/aarch64-builtins.c ! bebc910ea9166916d8b120860ae862a1 gcc/config/aarch64/aarch64-c.c ! de9ebc7005b685ffa5a8754830fa7028 gcc/config/aarch64/aarch64-cores.def ! 5c8cd25f4a4e8d19df2bff7cb2aafce7 gcc/config/aarch64/aarch64-cost-tables.h fadf3865cbccee62906724ea36f6575a gcc/config/aarch64/aarch64-d.c c8996ccf16af2d4d91b72e3d4cc4cdf7 gcc/config/aarch64/aarch64-elf-raw.h f6e31a2ec81adfc19e0d3eb53fa70a1f gcc/config/aarch64/aarch64-elf.h db5bb876150a15c836d4eaf710b1d33e gcc/config/aarch64/aarch64-errata.h 34627774713402fda34d84355eb62270 gcc/config/aarch64/aarch64-freebsd.h ! 691ea9b94d448180137f9ec4f4157d08 gcc/config/aarch64/aarch64-fusion-pairs.def cb7effd6ac34216caf447046a224313f gcc/config/aarch64/aarch64-ldpstp.md b9299f9c6d12537de258874dbfe343b6 gcc/config/aarch64/aarch64-linux.h 08bc178160775bbbd8fccc9c2347c8bd gcc/config/aarch64/aarch64-modes.def --- 2969,2990 ---- 8763e6612b3f349cca760cdd8226cddd gcc/compare-elim.c eab0d30a85465c8dfc86d5de1b6fbeb0 gcc/conditions.h c8cbeab9205c5362586933dd45dc115e gcc/config.build ! b223ad3a9656fb809089d2d58ee1bdf5 gcc/config.gcc a0c075b392f11951c415335bdf967308 gcc/config.host d9c4940061976b97581faa8115f9bfcd gcc/config.in 8e697813dc96ca90f5d0f4c196efe2cc gcc/config/README e100e878ef9a128dbaa8fac0c0a00e15 gcc/config/aarch64/aarch64-arches.def d75c36a73f9ff426af3f63ac06794e39 gcc/config/aarch64/aarch64-bti-insert.c 1e3e6b0b4deb9c4d7ba78b9ec8c7947e gcc/config/aarch64/aarch64-builtins.c ! 8f319b00aaef3a5ffe0895d90a1b4318 gcc/config/aarch64/aarch64-c.c ! e0b005ead4bc3ced4dfedd1ec4aecbba gcc/config/aarch64/aarch64-cores.def ! 55de99ddd93791e8d89faff77a051358 gcc/config/aarch64/aarch64-cost-tables.h fadf3865cbccee62906724ea36f6575a gcc/config/aarch64/aarch64-d.c c8996ccf16af2d4d91b72e3d4cc4cdf7 gcc/config/aarch64/aarch64-elf-raw.h f6e31a2ec81adfc19e0d3eb53fa70a1f gcc/config/aarch64/aarch64-elf.h db5bb876150a15c836d4eaf710b1d33e gcc/config/aarch64/aarch64-errata.h 34627774713402fda34d84355eb62270 gcc/config/aarch64/aarch64-freebsd.h ! 2f82baa65ca11c98877202936c48fbd0 gcc/config/aarch64/aarch64-fusion-pairs.def cb7effd6ac34216caf447046a224313f gcc/config/aarch64/aarch64-ldpstp.md b9299f9c6d12537de258874dbfe343b6 gcc/config/aarch64/aarch64-linux.h 08bc178160775bbbd8fccc9c2347c8bd gcc/config/aarch64/aarch64-modes.def *************** c97840e68a2ac3eb338dc9997e7112d1 gcc/co *** 2991,3000 **** 1bac6726009e0fb8452d559c3dd88e26 gcc/config/aarch64/aarch64-option-extensions.def fd4267a19928f12195f70461bd5c06c4 gcc/config/aarch64/aarch64-opts.h 2d3c997a76ea54fd838b69085e0a560b gcc/config/aarch64/aarch64-passes.def ! f0e19bf0c86ab241e64aea2f4367970c gcc/config/aarch64/aarch64-protos.h 2e263bfa2bd1fea303c37b04ce63eb60 gcc/config/aarch64/aarch64-simd-builtin-types.def e861473941caf234c01ffa1712e67f68 gcc/config/aarch64/aarch64-simd-builtins.def ! fd2dcbb95040d8a0e635b8cb46251cd6 gcc/config/aarch64/aarch64-simd.md effa2b4283bd899d74c40c2d2a83e79b gcc/config/aarch64/aarch64-speculation.cc 191b10e29119e1fe80e00715be2780bb gcc/config/aarch64/aarch64-sve-builtins-base.cc 8702c0c25fe5558a8c9f5dff4ad8a40d gcc/config/aarch64/aarch64-sve-builtins-base.def --- 2992,3001 ---- 1bac6726009e0fb8452d559c3dd88e26 gcc/config/aarch64/aarch64-option-extensions.def fd4267a19928f12195f70461bd5c06c4 gcc/config/aarch64/aarch64-opts.h 2d3c997a76ea54fd838b69085e0a560b gcc/config/aarch64/aarch64-passes.def ! 3d713e7def87513f7ee987bd00f53f4e gcc/config/aarch64/aarch64-protos.h 2e263bfa2bd1fea303c37b04ce63eb60 gcc/config/aarch64/aarch64-simd-builtin-types.def e861473941caf234c01ffa1712e67f68 gcc/config/aarch64/aarch64-simd-builtins.def ! 7fccbd0d1852ff9babbb710476568cf3 gcc/config/aarch64/aarch64-simd.md effa2b4283bd899d74c40c2d2a83e79b gcc/config/aarch64/aarch64-speculation.cc 191b10e29119e1fe80e00715be2780bb gcc/config/aarch64/aarch64-sve-builtins-base.cc 8702c0c25fe5558a8c9f5dff4ad8a40d gcc/config/aarch64/aarch64-sve-builtins-base.def *************** c94e53bffc6998ca046cd74f9e425e17 gcc/co *** 3005,3021 **** 0b43387d6c0d3a042a0a37a8037fae22 gcc/config/aarch64/aarch64-sve-builtins-sve2.cc 618643b7c84a6de14467802d82a5d2c2 gcc/config/aarch64/aarch64-sve-builtins-sve2.def 825f04b0d5062963df3bbc66157d46d3 gcc/config/aarch64/aarch64-sve-builtins-sve2.h ! ac068e7497068050097af24e4524dbb7 gcc/config/aarch64/aarch64-sve-builtins.cc abe33f03faf6cbe321c71fda2b57c71f gcc/config/aarch64/aarch64-sve-builtins.def b53d707b8cc17ce59ac8a275884d1584 gcc/config/aarch64/aarch64-sve-builtins.h ! c915fa6ccecc9e8fb1a19fce69f6c8eb gcc/config/aarch64/aarch64-sve.md 58533c161280fb74a5faa1e7075cbe1c gcc/config/aarch64/aarch64-sve2.md ! d98960533bbb2b4e07e4fa669fc35414 gcc/config/aarch64/aarch64-tune.md ! 9be3f2134bfe0325d95ce4a8e484c851 gcc/config/aarch64/aarch64-tuning-flags.def 284de9008114b29d2b3367a8907cabc9 gcc/config/aarch64/aarch64-vxworks.h ! fb97bded2ac89424a5d5c2f8ecfd7f81 gcc/config/aarch64/aarch64.c ! 77a28f34959cb9ea2609b78316480192 gcc/config/aarch64/aarch64.h ! 68c064fb342fc1947a5d1cc7c47401b4 gcc/config/aarch64/aarch64.md 6c72acb73d060e176a5b91a92c729680 gcc/config/aarch64/aarch64.opt 50f832b6b6b6912cdbcecf928e8bd3de gcc/config/aarch64/arm_acle.h beb001d25963acd80ffd85765795da0f gcc/config/aarch64/arm_bf16.h --- 3006,3022 ---- 0b43387d6c0d3a042a0a37a8037fae22 gcc/config/aarch64/aarch64-sve-builtins-sve2.cc 618643b7c84a6de14467802d82a5d2c2 gcc/config/aarch64/aarch64-sve-builtins-sve2.def 825f04b0d5062963df3bbc66157d46d3 gcc/config/aarch64/aarch64-sve-builtins-sve2.h ! fbced7b9f888a68544e0ade21cedcc88 gcc/config/aarch64/aarch64-sve-builtins.cc abe33f03faf6cbe321c71fda2b57c71f gcc/config/aarch64/aarch64-sve-builtins.def b53d707b8cc17ce59ac8a275884d1584 gcc/config/aarch64/aarch64-sve-builtins.h ! 3af76ea25486f100b8951c3f0f906507 gcc/config/aarch64/aarch64-sve.md 58533c161280fb74a5faa1e7075cbe1c gcc/config/aarch64/aarch64-sve2.md ! 09faa14353866894f1c7e0bbd7d53ff9 gcc/config/aarch64/aarch64-tune.md ! 91e5d08e745e113e4d1d7cb2eb34dcea gcc/config/aarch64/aarch64-tuning-flags.def 284de9008114b29d2b3367a8907cabc9 gcc/config/aarch64/aarch64-vxworks.h ! e9701683086211446bd541d5b32b2bcf gcc/config/aarch64/aarch64.c ! 3256a36a11daded70fa7df44e702c3b5 gcc/config/aarch64/aarch64.h ! 4587adabd2495b787da3f725aa170d55 gcc/config/aarch64/aarch64.md 6c72acb73d060e176a5b91a92c729680 gcc/config/aarch64/aarch64.opt 50f832b6b6b6912cdbcecf928e8bd3de gcc/config/aarch64/arm_acle.h beb001d25963acd80ffd85765795da0f gcc/config/aarch64/arm_bf16.h *************** ff5515782bebfacde1bf17e778e04041 gcc/co *** 3028,3039 **** 60c2456961e828947f52d5537ffe1906 gcc/config/aarch64/check-sve-md.awk d6b4bcd1976a38548f182f79fee0a58e gcc/config/aarch64/constraints.md 9f627aa983d4d8c1e657bc80da0f60b6 gcc/config/aarch64/cortex-a57-fma-steering.c ! 652344702d20655bb320d62fe6a88de8 gcc/config/aarch64/driver-aarch64.c 6a676d12724ddaa2ac94f19291b424e6 gcc/config/aarch64/falkor-tag-collision-avoidance.c 792daee1b1c6682c2179f76a7c1f0966 gcc/config/aarch64/falkor.md e34211047f88b2c15a2d06ed84d68cb2 gcc/config/aarch64/geniterators.sh df0891baf7b5b4a6518824ae9bc70a4e gcc/config/aarch64/gentune.sh ! 9677fac82c3e25a1be66e6b2ccf4496d gcc/config/aarch64/iterators.md 52269092b238bd0fa24fc117eda7723a gcc/config/aarch64/predicates.md 6e7d185b76922a87ae30f2ff6904d3e0 gcc/config/aarch64/rtems.h f9247c06e620b0ace1c5a3e9d3bb9000 gcc/config/aarch64/saphira.md --- 3029,3040 ---- 60c2456961e828947f52d5537ffe1906 gcc/config/aarch64/check-sve-md.awk d6b4bcd1976a38548f182f79fee0a58e gcc/config/aarch64/constraints.md 9f627aa983d4d8c1e657bc80da0f60b6 gcc/config/aarch64/cortex-a57-fma-steering.c ! 54e7b4f4dc288d5b1d670742b08aab95 gcc/config/aarch64/driver-aarch64.c 6a676d12724ddaa2ac94f19291b424e6 gcc/config/aarch64/falkor-tag-collision-avoidance.c 792daee1b1c6682c2179f76a7c1f0966 gcc/config/aarch64/falkor.md e34211047f88b2c15a2d06ed84d68cb2 gcc/config/aarch64/geniterators.sh df0891baf7b5b4a6518824ae9bc70a4e gcc/config/aarch64/gentune.sh ! 58dc928d740212e180bf5c63198db0f5 gcc/config/aarch64/iterators.md 52269092b238bd0fa24fc117eda7723a gcc/config/aarch64/predicates.md 6e7d185b76922a87ae30f2ff6904d3e0 gcc/config/aarch64/rtems.h f9247c06e620b0ace1c5a3e9d3bb9000 gcc/config/aarch64/saphira.md *************** a3ce364c42d20501f7ff53cea9c94af3 gcc/co *** 3366,3373 **** 73063d81d9e8ccfb36b462a062f0f3da gcc/config/darwin-ppc-ldouble-patch.def bf622b24f99b32a50572bc7a96cfe612 gcc/config/darwin-protos.h 69e84f6bd9c7313a9ae6893ebbb889d7 gcc/config/darwin-sections.def ! c0064773917e263b67dfab93c68f7e1f gcc/config/darwin.c ! 5390518b50e0a967755fd4eef1cf1ae4 gcc/config/darwin.h d8c7012757245e277db480f7772ef9f7 gcc/config/darwin.opt 22ef11e2b04fb7440bd17058f103745f gcc/config/dbx.h 3af56e740de05f1af8d575ff940e0c76 gcc/config/dbxcoff.h --- 3367,3374 ---- 73063d81d9e8ccfb36b462a062f0f3da gcc/config/darwin-ppc-ldouble-patch.def bf622b24f99b32a50572bc7a96cfe612 gcc/config/darwin-protos.h 69e84f6bd9c7313a9ae6893ebbb889d7 gcc/config/darwin-sections.def ! 8e145c6d9ec6a7e4567a78388513797d gcc/config/darwin.c ! eb635041437184816859520b4990024d gcc/config/darwin.h d8c7012757245e277db480f7772ef9f7 gcc/config/darwin.opt 22ef11e2b04fb7440bd17058f103745f gcc/config/dbx.h 3af56e740de05f1af8d575ff940e0c76 gcc/config/dbxcoff.h *************** a272fd26d6041bc4515b6896c00c0a72 gcc/co *** 3572,3588 **** 8bfef5d9a38354650eff6c97569a2b3d gcc/config/i386/host-mingw32.c 7c05e9e74dcafa1fbe9d1675caea25f6 gcc/config/i386/i386-builtin-types.awk ec29ccbc1d26aeb4e0ec2191e078e9ba gcc/config/i386/i386-builtin-types.def ! 5ab7f189cd953b5beee2d6f0c6edeb15 gcc/config/i386/i386-builtin.def 3defe9579bdfc8b73dade84e73328e2f gcc/config/i386/i386-builtins.c aaba1d7f3051425031a61c126ca09427 gcc/config/i386/i386-builtins.h d92b63960664e87350adffa54bc9614e gcc/config/i386/i386-c.c 0716ad09835ba6d14c45620bd88d07f9 gcc/config/i386/i386-d.c ! 8946ee03d1901bacff463415edc68bf9 gcc/config/i386/i386-expand.c a6e63c2f63741f10d6b63d604468a9df gcc/config/i386/i386-expand.h ! d61c17f8e6169b83fc0be7d562ccd661 gcc/config/i386/i386-features.c 608d27b39a4b79afc971e416cb13f3f8 gcc/config/i386/i386-features.h a3fef6d6bd5891a01b6b7acc146b63bd gcc/config/i386/i386-modes.def ! 18b18735366745ed5e8799a8bd0e9068 gcc/config/i386/i386-options.c b3e9baa55fb8746055ad945e5fbe38b8 gcc/config/i386/i386-options.h 924c47602884a3f6573760aad71baf6c gcc/config/i386/i386-opts.h 942113f86f41f99e3b37fa463f0e076d gcc/config/i386/i386-passes.def --- 3573,3589 ---- 8bfef5d9a38354650eff6c97569a2b3d gcc/config/i386/host-mingw32.c 7c05e9e74dcafa1fbe9d1675caea25f6 gcc/config/i386/i386-builtin-types.awk ec29ccbc1d26aeb4e0ec2191e078e9ba gcc/config/i386/i386-builtin-types.def ! d76b65318d612c7e92d3f4fc6fd26875 gcc/config/i386/i386-builtin.def 3defe9579bdfc8b73dade84e73328e2f gcc/config/i386/i386-builtins.c aaba1d7f3051425031a61c126ca09427 gcc/config/i386/i386-builtins.h d92b63960664e87350adffa54bc9614e gcc/config/i386/i386-c.c 0716ad09835ba6d14c45620bd88d07f9 gcc/config/i386/i386-d.c ! 12e47b5aaa498b2eaf32329b1e6dd1ae gcc/config/i386/i386-expand.c a6e63c2f63741f10d6b63d604468a9df gcc/config/i386/i386-expand.h ! 95efca4fe1b759a5f29e9b4a7f74d297 gcc/config/i386/i386-features.c 608d27b39a4b79afc971e416cb13f3f8 gcc/config/i386/i386-features.h a3fef6d6bd5891a01b6b7acc146b63bd gcc/config/i386/i386-modes.def ! e67b2af1e60ed168bf0a741815a5ef71 gcc/config/i386/i386-options.c b3e9baa55fb8746055ad945e5fbe38b8 gcc/config/i386/i386-options.h 924c47602884a3f6573760aad71baf6c gcc/config/i386/i386-opts.h 942113f86f41f99e3b37fa463f0e076d gcc/config/i386/i386-passes.def *************** d769072cfcdf88a307ad4c7cea4c3a1b gcc/co *** 3642,3648 **** b536f806896e5b96bf8c7ca33d07c56e gcc/config/i386/sgxintrin.h 00b9c683cb79fd3a2089dc16592e72d2 gcc/config/i386/shaintrin.h f6b0a9b38fc804adcd8a679d1d1a298d gcc/config/i386/slm.md ! 4530deeaee608a58494762629aba3c83 gcc/config/i386/smmintrin.h 59a6647bb24abb7905b8ebad61cdf12b gcc/config/i386/sol2.h cc39af3c507dc63bc5aae9769239219a gcc/config/i386/sse.md 25052628dbb6b92ee7352816628eafbc gcc/config/i386/ssemath.h --- 3643,3649 ---- b536f806896e5b96bf8c7ca33d07c56e gcc/config/i386/sgxintrin.h 00b9c683cb79fd3a2089dc16592e72d2 gcc/config/i386/shaintrin.h f6b0a9b38fc804adcd8a679d1d1a298d gcc/config/i386/slm.md ! b421c12b285f8efdec57f833056b54e9 gcc/config/i386/smmintrin.h 59a6647bb24abb7905b8ebad61cdf12b gcc/config/i386/sol2.h cc39af3c507dc63bc5aae9769239219a gcc/config/i386/sse.md 25052628dbb6b92ee7352816628eafbc gcc/config/i386/ssemath.h *************** d5339d6e5a09a02383903f617230e19e gcc/co *** 3659,3665 **** dbfc6d08f57c8020eb85b1a709835fbf gcc/config/i386/t-freebsd64 3a1c0dac7740fd9ef48c7bdf5f313c9d gcc/config/i386/t-gmm_malloc d5939c6bccbf8957206c63308ce628a6 gcc/config/i386/t-gnu ! 09eb3a1e2b6cac6acf65855a0510264c gcc/config/i386/t-i386 c3fde04ef47ddd6ec0a60c98d7f55224 gcc/config/i386/t-intelmic 51dcf9826007c01cfd67be11d5f0d538 gcc/config/i386/t-kfreebsd 39ad69cb2a2e67aa8d46664a75b02789 gcc/config/i386/t-linux --- 3660,3666 ---- dbfc6d08f57c8020eb85b1a709835fbf gcc/config/i386/t-freebsd64 3a1c0dac7740fd9ef48c7bdf5f313c9d gcc/config/i386/t-gmm_malloc d5939c6bccbf8957206c63308ce628a6 gcc/config/i386/t-gnu ! 5caa82dd665fe91df0c71838adfe403f gcc/config/i386/t-i386 c3fde04ef47ddd6ec0a60c98d7f55224 gcc/config/i386/t-intelmic 51dcf9826007c01cfd67be11d5f0d538 gcc/config/i386/t-kfreebsd 39ad69cb2a2e67aa8d46664a75b02789 gcc/config/i386/t-linux *************** b1dd3bb66ec6a2729fd8f218492bd12f gcc/co *** 4080,4088 **** c2aabf1e8738380511a66426506fe906 gcc/config/nvptx/nvptx-modes.def f69e8296d0faf31ac6e0c63114465e34 gcc/config/nvptx/nvptx-opts.h 6bc8bb882a5681c91d3230b7025912fa gcc/config/nvptx/nvptx-protos.h ! 759f0b3b228fc78cd6d628b68dd69fdb gcc/config/nvptx/nvptx.c ! 57339b7de27558e634bb329734f050d2 gcc/config/nvptx/nvptx.h ! 391495ed22dce89f4982984d68ac1335 gcc/config/nvptx/nvptx.md 99e673a4a625e68b02c366b8775cd2ab gcc/config/nvptx/nvptx.opt ac2c4d3eacbb8dc2222e17bc88fe3be4 gcc/config/nvptx/offload.h 161bfe9f99d4d18fdb67553220ba175a gcc/config/nvptx/t-nvptx --- 4081,4089 ---- c2aabf1e8738380511a66426506fe906 gcc/config/nvptx/nvptx-modes.def f69e8296d0faf31ac6e0c63114465e34 gcc/config/nvptx/nvptx-opts.h 6bc8bb882a5681c91d3230b7025912fa gcc/config/nvptx/nvptx-protos.h ! cb2de54acfa36aff63c0c5363e1c2fde gcc/config/nvptx/nvptx.c ! 6808bfdae39f262b78e662696da80dbf gcc/config/nvptx/nvptx.h ! f180f5b1d05af71ac0f096b99244f022 gcc/config/nvptx/nvptx.md 99e673a4a625e68b02c366b8775cd2ab gcc/config/nvptx/nvptx.opt ac2c4d3eacbb8dc2222e17bc88fe3be4 gcc/config/nvptx/offload.h 161bfe9f99d4d18fdb67553220ba175a gcc/config/nvptx/t-nvptx *************** b8ee5c8677ab43e55b9f7e62764c4a04 gcc/co *** 4127,4133 **** 600cc6b55002e21d4f050a4ffa931a47 gcc/config/pa/pa-protos.h 4eed25740d2f252c2127973493e76427 gcc/config/pa/pa.c 729ac301be06873dad20c162c59219d4 gcc/config/pa/pa.h ! cd7bb163f20674428581348567e76c88 gcc/config/pa/pa.md 37c733417df67fda01071ce53eb5d250 gcc/config/pa/pa.opt cc3cc3d1899ff4f5cb88c2f9bafacd29 gcc/config/pa/pa32-linux.h 06da5dd5b5dd2bc20c1c12095a44d29a gcc/config/pa/pa32-netbsd.h --- 4128,4134 ---- 600cc6b55002e21d4f050a4ffa931a47 gcc/config/pa/pa-protos.h 4eed25740d2f252c2127973493e76427 gcc/config/pa/pa.c 729ac301be06873dad20c162c59219d4 gcc/config/pa/pa.h ! fed676b4373612ee6d3d93ac7ea582f4 gcc/config/pa/pa.md 37c733417df67fda01071ce53eb5d250 gcc/config/pa/pa.opt cc3cc3d1899ff4f5cb88c2f9bafacd29 gcc/config/pa/pa32-linux.h 06da5dd5b5dd2bc20c1c12095a44d29a gcc/config/pa/pa32-netbsd.h *************** ed1fdbe0c1c20ab8b5dcf70240fcf773 gcc/co *** 4194,4200 **** d8ae7bee35ef1ecd77143535da9aae78 gcc/config/riscv/t-linux 1ed181a166b1d0e206c4a4e0024cce2a gcc/config/riscv/t-linux-multilib 88d091028dad5704f548cef50bdb36d0 gcc/config/riscv/t-riscv ! 7dbd61c5a07b1adefe5429a41008fda5 gcc/config/riscv/t-rtems 97a182737ed075d29be4ab1e848de420 gcc/config/riscv/t-withmultilib 486709f8942421d456e5b94085284446 gcc/config/riscv/withmultilib.h 80160be866129dce3d0d56e5a53404de gcc/config/rl78/constraints.md --- 4195,4201 ---- d8ae7bee35ef1ecd77143535da9aae78 gcc/config/riscv/t-linux 1ed181a166b1d0e206c4a4e0024cce2a gcc/config/riscv/t-linux-multilib 88d091028dad5704f548cef50bdb36d0 gcc/config/riscv/t-riscv ! b46131fe425be428d4d66c8f653f3d13 gcc/config/riscv/t-rtems 97a182737ed075d29be4ab1e848de420 gcc/config/riscv/t-withmultilib 486709f8942421d456e5b94085284446 gcc/config/riscv/withmultilib.h 80160be866129dce3d0d56e5a53404de gcc/config/rl78/constraints.md *************** fbd21a42c0d3b5f25bda9e10bf0cd98f gcc/co *** 4230,4236 **** 970bd741336f3b6ad6cfc92047dda24d gcc/config/rs6000/aix71.h 3c332f07ff88aa9b8b7a951dfefb7edd gcc/config/rs6000/aix72.h 975f12ffc6142ba7007e18bffb8b74a9 gcc/config/rs6000/altivec.h ! ee08238bb2eff082213c3fc4e1476fed gcc/config/rs6000/altivec.md 174cef0139277020d6daf3b4321db0a7 gcc/config/rs6000/amo.h 7ad82036aad04f9e4b357a24e5c58941 gcc/config/rs6000/biarch64.h a9aaa787bd2443098906c961fd8b8977 gcc/config/rs6000/bmi2intrin.h --- 4231,4237 ---- 970bd741336f3b6ad6cfc92047dda24d gcc/config/rs6000/aix71.h 3c332f07ff88aa9b8b7a951dfefb7edd gcc/config/rs6000/aix72.h 975f12ffc6142ba7007e18bffb8b74a9 gcc/config/rs6000/altivec.h ! 2a6e2d3ca482aefb75fd1cb4ec53f70f gcc/config/rs6000/altivec.md 174cef0139277020d6daf3b4321db0a7 gcc/config/rs6000/amo.h 7ad82036aad04f9e4b357a24e5c58941 gcc/config/rs6000/biarch64.h a9aaa787bd2443098906c961fd8b8977 gcc/config/rs6000/bmi2intrin.h *************** aab6a02122e8086655ea2092bf5e8277 gcc/co *** 4271,4277 **** 28eb56aa72960c68f1ce93a0dcbbb50a gcc/config/rs6000/lynx.h 0cc3c5f9101501b8253ce3176c3ffce4 gcc/config/rs6000/milli.exp 98f09db1ffe97c8473d50fb913fd6ab8 gcc/config/rs6000/mm_malloc.h ! 8e6de36e638d6e0c31a610ea612b77db gcc/config/rs6000/mma.md 903bfc71f26415e8a7cc0fd94e81ac0d gcc/config/rs6000/mmintrin.h 61382586f43f8c34149111f3808e03ea gcc/config/rs6000/mpc.md a24c854cbca4a77aa796b28b86a7a75d gcc/config/rs6000/netbsd.h --- 4272,4278 ---- 28eb56aa72960c68f1ce93a0dcbbb50a gcc/config/rs6000/lynx.h 0cc3c5f9101501b8253ce3176c3ffce4 gcc/config/rs6000/milli.exp 98f09db1ffe97c8473d50fb913fd6ab8 gcc/config/rs6000/mm_malloc.h ! 6a9ca22bb5efe16a7fa2a89d46da15fa gcc/config/rs6000/mma.md 903bfc71f26415e8a7cc0fd94e81ac0d gcc/config/rs6000/mmintrin.h 61382586f43f8c34149111f3808e03ea gcc/config/rs6000/mpc.md a24c854cbca4a77aa796b28b86a7a75d gcc/config/rs6000/netbsd.h *************** b363744cf555db6f21cf65583a9f1d22 gcc/co *** 4288,4315 **** 60e0334a510e1ca34a137e003ab080c5 gcc/config/rs6000/ppc-auxv.h 211f86e3790aaa31e29fab4dd00a1963 gcc/config/rs6000/ppu_intrinsics.h 7e6fd595a1bb7a2b1d7f28e57371bf76 gcc/config/rs6000/predicates.md ! b06b4c14ef553fb94b2752881acc1e96 gcc/config/rs6000/rs6000-builtin.def f6f55a2f1cdc9dc92c82f727c8adc32f gcc/config/rs6000/rs6000-c.c ! 9d0a1b571c870005758432518a2845c5 gcc/config/rs6000/rs6000-call.c 24fc94e29ab1ae855818c037fa366b61 gcc/config/rs6000/rs6000-cpus.def 48f25a13b4c16bbf8abc640b18baaf04 gcc/config/rs6000/rs6000-d.c 6ca6ecc62264d6525efb0303f303fbcb gcc/config/rs6000/rs6000-internal.h 0680e4bef9d435c70ff0b0346875dc7e gcc/config/rs6000/rs6000-linux.c ! aab54ac81dac88e8d89473d3573a122b gcc/config/rs6000/rs6000-logue.c 6019ce43647fb67478f67b0014f9e197 gcc/config/rs6000/rs6000-modes.def 74d680e195ea101592ac1b6839d532c6 gcc/config/rs6000/rs6000-modes.h 478e6c4e3fffd52cc5f65d8201180f4e gcc/config/rs6000/rs6000-opts.h ! f7884f4cd0dd4f9cfc379ac21ac69663 gcc/config/rs6000/rs6000-p8swap.c 5deaf0e53bbb270a90617edbf89b93c3 gcc/config/rs6000/rs6000-passes.def ! 563c0ef0afd159a301260d7c6cda4949 gcc/config/rs6000/rs6000-protos.h d6ec81c1ffdb5849dc866b5ef0282b43 gcc/config/rs6000/rs6000-string.c 6cd7b03a52d165ce37498421647b2870 gcc/config/rs6000/rs6000-tables.opt ! ffe366bf96fd9c4aa5ba72c1168a3c1d gcc/config/rs6000/rs6000.c ! fd2cd530c3bbd8742e0822bf27d471a6 gcc/config/rs6000/rs6000.h ! 90a382b8e502b89311ca1fc96763da99 gcc/config/rs6000/rs6000.md ae694700cb8a354c30bddf5dbacf3a24 gcc/config/rs6000/rs6000.opt f783f97dd8ba81866de4caa94379cf5d gcc/config/rs6000/rs64.md ! d243ba917805636d3fe964e1bf471023 gcc/config/rs6000/rtems.h fdcf290afcca6a9a881bc2a4e2329ef2 gcc/config/rs6000/secureplt.h 06e7b5a5cd00206c607e731c8069a07a gcc/config/rs6000/si2vmx.h 40c534235601ca14258240455fa44c7b gcc/config/rs6000/smmintrin.h --- 4289,4316 ---- 60e0334a510e1ca34a137e003ab080c5 gcc/config/rs6000/ppc-auxv.h 211f86e3790aaa31e29fab4dd00a1963 gcc/config/rs6000/ppu_intrinsics.h 7e6fd595a1bb7a2b1d7f28e57371bf76 gcc/config/rs6000/predicates.md ! 45b9280b5c28e6e21961e5f0c2a542df gcc/config/rs6000/rs6000-builtin.def f6f55a2f1cdc9dc92c82f727c8adc32f gcc/config/rs6000/rs6000-c.c ! 88359cf31e9f91968c39c0d88c33d759 gcc/config/rs6000/rs6000-call.c 24fc94e29ab1ae855818c037fa366b61 gcc/config/rs6000/rs6000-cpus.def 48f25a13b4c16bbf8abc640b18baaf04 gcc/config/rs6000/rs6000-d.c 6ca6ecc62264d6525efb0303f303fbcb gcc/config/rs6000/rs6000-internal.h 0680e4bef9d435c70ff0b0346875dc7e gcc/config/rs6000/rs6000-linux.c ! 0be21fbd32ac5b42ee8098ed86994434 gcc/config/rs6000/rs6000-logue.c 6019ce43647fb67478f67b0014f9e197 gcc/config/rs6000/rs6000-modes.def 74d680e195ea101592ac1b6839d532c6 gcc/config/rs6000/rs6000-modes.h 478e6c4e3fffd52cc5f65d8201180f4e gcc/config/rs6000/rs6000-opts.h ! f042d7982dece766624f0b0536c12baf gcc/config/rs6000/rs6000-p8swap.c 5deaf0e53bbb270a90617edbf89b93c3 gcc/config/rs6000/rs6000-passes.def ! 8148221ccb0cbbc98bf695325e899eeb gcc/config/rs6000/rs6000-protos.h d6ec81c1ffdb5849dc866b5ef0282b43 gcc/config/rs6000/rs6000-string.c 6cd7b03a52d165ce37498421647b2870 gcc/config/rs6000/rs6000-tables.opt ! c47760aa531aa033e7fa492b3d7ff6fe gcc/config/rs6000/rs6000.c ! b27c7bda12d8eb0ec4800af7696c02e8 gcc/config/rs6000/rs6000.h ! a563b14ebee4c0a05cdba9a28c65d3ab gcc/config/rs6000/rs6000.md ae694700cb8a354c30bddf5dbacf3a24 gcc/config/rs6000/rs6000.opt f783f97dd8ba81866de4caa94379cf5d gcc/config/rs6000/rs64.md ! 4e710728b03e6b25f9488fff05df48cb gcc/config/rs6000/rtems.h fdcf290afcca6a9a881bc2a4e2329ef2 gcc/config/rs6000/secureplt.h 06e7b5a5cd00206c607e731c8069a07a gcc/config/rs6000/si2vmx.h 40c534235601ca14258240455fa44c7b gcc/config/rs6000/smmintrin.h *************** c8849c51ed697da336c77957f6ff07ad gcc/co *** 4335,4349 **** cc35ccf5fc7ee9c6021fbb9a4518a5e8 gcc/config/rs6000/t-ppcgas 1b8aba690a39464c4ea9c647d73d6983 gcc/config/rs6000/t-ppcos 7c55af762efc55837b20c85b5651a767 gcc/config/rs6000/t-rs6000 ! f26fbf7a1adb516aabc60b157bff7620 gcc/config/rs6000/t-rtems 3a287ff0e99ea59191a91f04d86ca948 gcc/config/rs6000/t-vxworks f11925c88524d2fd457bf77944da1302 gcc/config/rs6000/t-vxworksae 3f0601a68de7a0aee8264b538228d943 gcc/config/rs6000/t-vxworksmils 9107271d48c741591ed5e4a92925d84b gcc/config/rs6000/titan.md 2ca41cab19b6389c4c67d9dedf3e7cf9 gcc/config/rs6000/tmmintrin.h 9376354b2d5ece1437c8903ce64d70ad gcc/config/rs6000/vec_types.h ! 7071fb4ff78f27f75390163fc4cf4df3 gcc/config/rs6000/vector.md ! 69b1644a956e3d3ef91b856c86941ccb gcc/config/rs6000/vsx.md 6d50c0c76d5f156088c6f113c2ef3f81 gcc/config/rs6000/vxworks.h b6ff8b73a277bd9533ebb88d01316d55 gcc/config/rs6000/vxworksae.h 193beb2307a726d77214fcb2aa344f2e gcc/config/rs6000/vxworksmils.h --- 4336,4350 ---- cc35ccf5fc7ee9c6021fbb9a4518a5e8 gcc/config/rs6000/t-ppcgas 1b8aba690a39464c4ea9c647d73d6983 gcc/config/rs6000/t-ppcos 7c55af762efc55837b20c85b5651a767 gcc/config/rs6000/t-rs6000 ! 09d4c110ee93ffc64f0e393619e896b9 gcc/config/rs6000/t-rtems 3a287ff0e99ea59191a91f04d86ca948 gcc/config/rs6000/t-vxworks f11925c88524d2fd457bf77944da1302 gcc/config/rs6000/t-vxworksae 3f0601a68de7a0aee8264b538228d943 gcc/config/rs6000/t-vxworksmils 9107271d48c741591ed5e4a92925d84b gcc/config/rs6000/titan.md 2ca41cab19b6389c4c67d9dedf3e7cf9 gcc/config/rs6000/tmmintrin.h 9376354b2d5ece1437c8903ce64d70ad gcc/config/rs6000/vec_types.h ! 7b6f6e2f22bdddde4b0f665523ea9e24 gcc/config/rs6000/vector.md ! eb5fd1e903648f3e986f2491cc8c9a6d gcc/config/rs6000/vsx.md 6d50c0c76d5f156088c6f113c2ef3f81 gcc/config/rs6000/vxworks.h b6ff8b73a277bd9533ebb88d01316d55 gcc/config/rs6000/vxworksae.h 193beb2307a726d77214fcb2aa344f2e gcc/config/rs6000/vxworksmils.h *************** e3e94c066797685d8a2622b1c5957f4d gcc/co *** 4393,4399 **** 20208c81b581795dd2ba29f268618abc gcc/config/s390/s390-opts.h 6b36763d67c9b5c42e44faf743a3f705 gcc/config/s390/s390-passes.def b0455af5364399ae3ba243b620c905d9 gcc/config/s390/s390-protos.h ! a004804c184ed76916393fe8a1947b8a gcc/config/s390/s390.c 0941f9097350fe7d34af5c92f0ecb0e4 gcc/config/s390/s390.h f938a4b95c73cf651790b4e15cff273a gcc/config/s390/s390.md db7d06c04b3bf2d126240250a0a51879 gcc/config/s390/s390.opt --- 4394,4400 ---- 20208c81b581795dd2ba29f268618abc gcc/config/s390/s390-opts.h 6b36763d67c9b5c42e44faf743a3f705 gcc/config/s390/s390-passes.def b0455af5364399ae3ba243b620c905d9 gcc/config/s390/s390-protos.h ! 349fafb44c3f4a86de58470c09260214 gcc/config/s390/s390.c 0941f9097350fe7d34af5c92f0ecb0e4 gcc/config/s390/s390.h f938a4b95c73cf651790b4e15cff273a gcc/config/s390/s390.md db7d06c04b3bf2d126240250a0a51879 gcc/config/s390/s390.opt *************** fc603009a619faa01c2b790df75e63b3 gcc/co *** 4487,4493 **** e9790562d31de19ef25166f5f8cb69b1 gcc/config/sparc/sparc-opts.h 6f520a376e0a7395f5c6f882a8e027c8 gcc/config/sparc/sparc-passes.def cd0869635ffc187db2e3827d1dd73fb8 gcc/config/sparc/sparc-protos.h ! 4a032bdecf716b5dc2199a932799647d gcc/config/sparc/sparc.c 9d78520dc64c812bfd259a6688446709 gcc/config/sparc/sparc.h 29cc662e876c7f700c37d0e163fe5539 gcc/config/sparc/sparc.md dc2e1551d2beb89c3ecab8a5b7124bd8 gcc/config/sparc/sparc.opt --- 4488,4494 ---- e9790562d31de19ef25166f5f8cb69b1 gcc/config/sparc/sparc-opts.h 6f520a376e0a7395f5c6f882a8e027c8 gcc/config/sparc/sparc-passes.def cd0869635ffc187db2e3827d1dd73fb8 gcc/config/sparc/sparc-protos.h ! 5f0159dbdaddf464ae428e62f10dfdd4 gcc/config/sparc/sparc.c 9d78520dc64c812bfd259a6688446709 gcc/config/sparc/sparc.h 29cc662e876c7f700c37d0e163fe5539 gcc/config/sparc/sparc.md dc2e1551d2beb89c3ecab8a5b7124bd8 gcc/config/sparc/sparc.opt *************** cc47dc829b58cf28ea4a0d34724ef655 gcc/co *** 4681,4687 **** ccc965b70117adaa9e520ce66d2cdc1c gcc/coroutine-passes.cc d8b8dbf4da9c1bc99c07c6ea7c400198 gcc/coverage.c 1929f2519bcd6977e0d213f459d3b40c gcc/coverage.h ! dff5236c84e19ff01fe01b2d47ad7413 gcc/cp/ChangeLog d271e3663538ba1f3281cab3838e92cd gcc/cp/ChangeLog-1993 f5a44adbc05521162350ca409d1d95ce gcc/cp/ChangeLog-1994 ac55db48d964cb5469ff03c1cd3ee04d gcc/cp/ChangeLog-1995 --- 4682,4688 ---- ccc965b70117adaa9e520ce66d2cdc1c gcc/coroutine-passes.cc d8b8dbf4da9c1bc99c07c6ea7c400198 gcc/coverage.c 1929f2519bcd6977e0d213f459d3b40c gcc/coverage.h ! 5e537d20b47879beef29682ff886505d gcc/cp/ChangeLog d271e3663538ba1f3281cab3838e92cd gcc/cp/ChangeLog-1993 f5a44adbc05521162350ca409d1d95ce gcc/cp/ChangeLog-1994 ac55db48d964cb5469ff03c1cd3ee04d gcc/cp/ChangeLog-1995 *************** d12910a05989c8bde6d3f96115742601 gcc/cp *** 4718,4748 **** 37c2b7bedf298de9dac0cafb46f58d9b gcc/cp/cfns.h 466944e0e572eb3f44a4f9b9fb91be8a gcc/cp/class.c 8aaf367382ec0ba58ec54105f81bae4c gcc/cp/config-lang.in ! ba2eb711d742729700d4cec81f3259a5 gcc/cp/constexpr.c 019ae23b54cdc082c0b9d13205f0edef gcc/cp/constraint.cc 44e730c275906ff2db829f5b9994298e gcc/cp/coroutines.cc ! 4734755e299b745c6e17c73b318ff8e0 gcc/cp/cp-gimplify.c eab55c7f7088d85452230ea3e4fb6e0b gcc/cp/cp-lang.c 1b652554949dd65ee7cf9f3033110264 gcc/cp/cp-name-hint.h 172ce9c8be17744f898dc4d87767f723 gcc/cp/cp-objcp-common.c 867dac9005ac1106eeacfcb9bfb19498 gcc/cp/cp-objcp-common.h 942c4d40b949ce9d5caf97e8afd8c883 gcc/cp/cp-tree.def ! daf4cd2f7d9fff3beba4e5f35f7c73b6 gcc/cp/cp-tree.h 1fdd2540a34a8d3711868857e16b12ea gcc/cp/cp-ubsan.c ! 4c457ba4298e4c8b0d88685a019ee425 gcc/cp/cvt.c eb2e3a9c14c44c0cc5c5dbcc9c82618d gcc/cp/cxx-pretty-print.c b5cc2e7a6254261a168bd34a412a0fc6 gcc/cp/cxx-pretty-print.h ! 930226c25a54545fd53ae10dccf13037 gcc/cp/decl.c 5c07af228d899d28c4a7a4096ae1ae34 gcc/cp/decl.h ! 2a6334e2cc9a923eaf3312d0f168d207 gcc/cp/decl2.c 98c98b8f005396a75738d141023feafe gcc/cp/dump.c 31839945a2103c24d966396fc5d42f75 gcc/cp/error.c 02eb1ec1cd5fd4b24715607e961d1cc7 gcc/cp/except.c ! 261b11524fe961d2434aa9cc367ecdb7 gcc/cp/expr.c ! 01b0de4604aab6440ec5ea83f09fb4d6 gcc/cp/friend.c acc27a3f2e7fed4b7ba30986e3dbf8e9 gcc/cp/g++spec.c 35e393a5d1ec04ca99cca8042af7d4ed gcc/cp/init.c ! c32ff0c4edb1cd11b2b9d57eed2886b0 gcc/cp/lambda.c 2395c9f9b982880dfc925c3cbd76a4bc gcc/cp/lang-specs.h 8c0a7e69fc667bef06ad7bdf5b6d4a32 gcc/cp/lex.c 88f9b3b7adcb56a71c281373d1c5643e gcc/cp/logic.cc --- 4719,4749 ---- 37c2b7bedf298de9dac0cafb46f58d9b gcc/cp/cfns.h 466944e0e572eb3f44a4f9b9fb91be8a gcc/cp/class.c 8aaf367382ec0ba58ec54105f81bae4c gcc/cp/config-lang.in ! 12730b93510f20af969ed43eacb50179 gcc/cp/constexpr.c 019ae23b54cdc082c0b9d13205f0edef gcc/cp/constraint.cc 44e730c275906ff2db829f5b9994298e gcc/cp/coroutines.cc ! 47d8ae88568b1ad52162eff8ee224307 gcc/cp/cp-gimplify.c eab55c7f7088d85452230ea3e4fb6e0b gcc/cp/cp-lang.c 1b652554949dd65ee7cf9f3033110264 gcc/cp/cp-name-hint.h 172ce9c8be17744f898dc4d87767f723 gcc/cp/cp-objcp-common.c 867dac9005ac1106eeacfcb9bfb19498 gcc/cp/cp-objcp-common.h 942c4d40b949ce9d5caf97e8afd8c883 gcc/cp/cp-tree.def ! eb5b0c43c8378008e1eb50d877dc1ec9 gcc/cp/cp-tree.h 1fdd2540a34a8d3711868857e16b12ea gcc/cp/cp-ubsan.c ! e28a1ed2508d1fc6d197013505caf2bf gcc/cp/cvt.c eb2e3a9c14c44c0cc5c5dbcc9c82618d gcc/cp/cxx-pretty-print.c b5cc2e7a6254261a168bd34a412a0fc6 gcc/cp/cxx-pretty-print.h ! 7a4055317dba02f790f2a0222cf47c62 gcc/cp/decl.c 5c07af228d899d28c4a7a4096ae1ae34 gcc/cp/decl.h ! 5e9ca1bcdb2c9bd6780d110e48b8475f gcc/cp/decl2.c 98c98b8f005396a75738d141023feafe gcc/cp/dump.c 31839945a2103c24d966396fc5d42f75 gcc/cp/error.c 02eb1ec1cd5fd4b24715607e961d1cc7 gcc/cp/except.c ! 02577284b3d084816fc82e3c6b94bd1a gcc/cp/expr.c ! 7c7a091e5defa13f915111dc8b744b17 gcc/cp/friend.c acc27a3f2e7fed4b7ba30986e3dbf8e9 gcc/cp/g++spec.c 35e393a5d1ec04ca99cca8042af7d4ed gcc/cp/init.c ! 270f1f893ddaa81c244739de0eb25355 gcc/cp/lambda.c 2395c9f9b982880dfc925c3cbd76a4bc gcc/cp/lang-specs.h 8c0a7e69fc667bef06ad7bdf5b6d4a32 gcc/cp/lex.c 88f9b3b7adcb56a71c281373d1c5643e gcc/cp/logic.cc *************** a51ae59c8e9c36a935788923a339dd31 gcc/cp *** 4752,4767 **** f09435d1b0c974cfe45f48bfc0669984 gcc/cp/name-lookup.h a7154f7d3b54c0184476a88977d4ab3c gcc/cp/operators.def 2786790fbafb8faefa78a7b85b81022b gcc/cp/optimize.c ! 1b987a2c137584ff79dbf6ce9e93ab53 gcc/cp/parser.c bb1759eb82ec59c0a317878693eb4f45 gcc/cp/parser.h ! f01c0b9500a5c384a8150ed15f03cf98 gcc/cp/pt.c 322572fac27749e839caf803dad33025 gcc/cp/ptree.c 7ff8a27380a1e6717713246bd546b2d3 gcc/cp/rtti.c 248c55ec535b81679b9f77b9773863ab gcc/cp/search.c ! c9603afa7178fa6a1e00b948064864e9 gcc/cp/semantics.c ! 8ebad01cebf90a3255edb82664b6da5d gcc/cp/tree.c cae322bfce187ac1a745d5219629864a gcc/cp/type-utils.h ! 05e4213ca2fac32ee1bb38b826a86872 gcc/cp/typeck.c 188b29c2dbfcb6513d4fd24f3f318c9a gcc/cp/typeck2.c 06da302baeb2dc3b6a3cf7b842ae87fe gcc/cp/vtable-class-hierarchy.c 3fb2d72bc2ca089b8759ce3e4ef4e807 gcc/cppbuiltin.c --- 4753,4768 ---- f09435d1b0c974cfe45f48bfc0669984 gcc/cp/name-lookup.h a7154f7d3b54c0184476a88977d4ab3c gcc/cp/operators.def 2786790fbafb8faefa78a7b85b81022b gcc/cp/optimize.c ! c1a87363824648f913cb8611a5f38b6f gcc/cp/parser.c bb1759eb82ec59c0a317878693eb4f45 gcc/cp/parser.h ! d5b610539c877b385033d5a3f5d6dfef gcc/cp/pt.c 322572fac27749e839caf803dad33025 gcc/cp/ptree.c 7ff8a27380a1e6717713246bd546b2d3 gcc/cp/rtti.c 248c55ec535b81679b9f77b9773863ab gcc/cp/search.c ! 0fa7dea662aa8ca09471ceea95fe9777 gcc/cp/semantics.c ! 7b9d17cdb7bd0fce6108c594471f23a3 gcc/cp/tree.c cae322bfce187ac1a745d5219629864a gcc/cp/type-utils.h ! 789d8aaa4dc1e142484ac4c2864ae8db gcc/cp/typeck.c 188b29c2dbfcb6513d4fd24f3f318c9a gcc/cp/typeck2.c 06da302baeb2dc3b6a3cf7b842ae87fe gcc/cp/vtable-class-hierarchy.c 3fb2d72bc2ca089b8759ce3e4ef4e807 gcc/cppbuiltin.c *************** cae322bfce187ac1a745d5219629864a gcc/cp *** 4769,4779 **** d810e2056298f1078b649030d36a60dc gcc/cppdefault.c 76e05bdfb378e95d27c573bb828f9c12 gcc/cppdefault.h e6f2a13a28bd6c3b79c29f828dbf1a9e gcc/cprop.c ! 3f3696ca93d11e0760804c479f5d0009 gcc/cse.c 664b6e294e2b28b39aeea0b3336fbca3 gcc/cselib.c ec27fbd17f014711211a34a157aaaff3 gcc/cselib.h 1ded054093de910d9786c62bc4fe8cc6 gcc/cstamp-h.in ! fa1b2e5137739614265889d88086c3de gcc/d/ChangeLog 86f687c485111eedca2eb048294f957e gcc/d/ChangeLog-2006 70ed1c47fd9b3f5dd95055642ed79265 gcc/d/ChangeLog-2007 a7090ab2dd83aa4f44823c17566b83ef gcc/d/ChangeLog-2008 --- 4770,4780 ---- d810e2056298f1078b649030d36a60dc gcc/cppdefault.c 76e05bdfb378e95d27c573bb828f9c12 gcc/cppdefault.h e6f2a13a28bd6c3b79c29f828dbf1a9e gcc/cprop.c ! f45d56a740125bf582b304cb02b2700a gcc/cse.c 664b6e294e2b28b39aeea0b3336fbca3 gcc/cselib.c ec27fbd17f014711211a34a157aaaff3 gcc/cselib.h 1ded054093de910d9786c62bc4fe8cc6 gcc/cstamp-h.in ! 775d18a851df9e434845f394c3d7e9e5 gcc/d/ChangeLog 86f687c485111eedca2eb048294f957e gcc/d/ChangeLog-2006 70ed1c47fd9b3f5dd95055642ed79265 gcc/d/ChangeLog-2007 a7090ab2dd83aa4f44823c17566b83ef gcc/d/ChangeLog-2008 *************** a19568c9e376fa3deab3a175f14443a2 gcc/d/ *** 4794,4800 **** cd46a07008703f3011cf3fc599a24da1 gcc/d/d-attribs.cc 5fdf99ce1ae4de233e2719c9dfcabe98 gcc/d/d-builtins.cc a19a6f711214b48b73a4a6f10c45a053 gcc/d/d-codegen.cc ! fde409ebb102caa1f051bb654f17d131 gcc/d/d-convert.cc 7140c135d6faa5ac2b4d4541c7451952 gcc/d/d-diagnostic.cc b0892dae217f671746b12323dbfdb22c gcc/d/d-frontend.cc 6d4172dbc76a861d1c70b5a3061e128a gcc/d/d-incpath.cc --- 4795,4801 ---- cd46a07008703f3011cf3fc599a24da1 gcc/d/d-attribs.cc 5fdf99ce1ae4de233e2719c9dfcabe98 gcc/d/d-builtins.cc a19a6f711214b48b73a4a6f10c45a053 gcc/d/d-codegen.cc ! a8c1015fb543c83c9665165143fd0cdb gcc/d/d-convert.cc 7140c135d6faa5ac2b4d4541c7451952 gcc/d/d-diagnostic.cc b0892dae217f671746b12323dbfdb22c gcc/d/d-frontend.cc 6d4172dbc76a861d1c70b5a3061e128a gcc/d/d-incpath.cc *************** b1b4a601abe642a38842d18ec9c4a1f3 gcc/d/ *** 4808,4814 **** f6be21ab2346d2541839e048e3f4a06d gcc/d/d-target.h 69794a5bb5ef563bb29567fef3ef24e3 gcc/d/d-tree.def 2d79161b6cb8614f7217956b845f84ff gcc/d/d-tree.h ! a641aa8e7ef890aeb513a6a7c0f6d3bb gcc/d/decl.cc bb43b09505bba37d2c084b519c8d89a5 gcc/d/dmd/MERGE 094ef829e65f40de6ff4b765b3ca0aba gcc/d/dmd/access.c 1a1309d17942e7ece838aa8b9019864e gcc/d/dmd/aggregate.h --- 4809,4815 ---- f6be21ab2346d2541839e048e3f4a06d gcc/d/d-target.h 69794a5bb5ef563bb29567fef3ef24e3 gcc/d/d-tree.def 2d79161b6cb8614f7217956b845f84ff gcc/d/d-tree.h ! ae76b166bc82515a2a17dafd30a8855b gcc/d/decl.cc bb43b09505bba37d2c084b519c8d89a5 gcc/d/dmd/MERGE 094ef829e65f40de6ff4b765b3ca0aba gcc/d/dmd/access.c 1a1309d17942e7ece838aa8b9019864e gcc/d/dmd/aggregate.h *************** f961e06eea77022ef0afbf95788f8404 gcc/d/ *** 4838,4844 **** 5a7c717f181ee24ab602f9840351150d gcc/d/dmd/delegatize.c a49adabd6aa48af49bb679336a57d2d3 gcc/d/dmd/denum.c c8feb4a7b8143de030b53ba5295519ba gcc/d/dmd/dimport.c ! bc1e90d1199f0394df3e8f3eb35c3448 gcc/d/dmd/dinterpret.c 7deff36a83845e52a8c9847a7cba9170 gcc/d/dmd/dmacro.c 37ba1a4108dbe079aea76894644b7c16 gcc/d/dmd/dmangle.c 4d37ecf79a73ea949e07baaa3fc2f9ed gcc/d/dmd/dmodule.c --- 4839,4845 ---- 5a7c717f181ee24ab602f9840351150d gcc/d/dmd/delegatize.c a49adabd6aa48af49bb679336a57d2d3 gcc/d/dmd/denum.c c8feb4a7b8143de030b53ba5295519ba gcc/d/dmd/dimport.c ! 5806efbe770bbb3ac721cc572eeb1106 gcc/d/dmd/dinterpret.c 7deff36a83845e52a8c9847a7cba9170 gcc/d/dmd/dmacro.c 37ba1a4108dbe079aea76894644b7c16 gcc/d/dmd/dmangle.c 4d37ecf79a73ea949e07baaa3fc2f9ed gcc/d/dmd/dmodule.c *************** b51bf064e22dde0a02049ba02cfc1c3b gcc/d/ *** 4856,4862 **** 8966a99836d97acba39cd471926927c6 gcc/d/dmd/escape.c 741d3931e021319ef6b4ae7d98c2f56c gcc/d/dmd/expression.c 002d4c5ebc847adb5c25fe1adeb0faf0 gcc/d/dmd/expression.h ! 2d1fdd39912fc7d647cd5519acb4911d gcc/d/dmd/expressionsem.c 8ccd6562dee14a44a3b18f83de41c7e6 gcc/d/dmd/func.c aa8bdbd09e2a54e6a89ea90aaad8d409 gcc/d/dmd/globals.h 7dd635952261e678b949533d3d2abdc4 gcc/d/dmd/hdrgen.c --- 4857,4863 ---- 8966a99836d97acba39cd471926927c6 gcc/d/dmd/escape.c 741d3931e021319ef6b4ae7d98c2f56c gcc/d/dmd/expression.c 002d4c5ebc847adb5c25fe1adeb0faf0 gcc/d/dmd/expression.h ! b0dec1e94bce765f92f658287abe7d89 gcc/d/dmd/expressionsem.c 8ccd6562dee14a44a3b18f83de41c7e6 gcc/d/dmd/func.c aa8bdbd09e2a54e6a89ea90aaad8d409 gcc/d/dmd/globals.h 7dd635952261e678b949533d3d2abdc4 gcc/d/dmd/hdrgen.c *************** b6b97848ff841c2ba786e35a155e7969 gcc/d/ *** 4940,4948 **** 892df329899d0581aea17c5742a9652a gcc/d/dmd/utils.c a8f7c4f694d68924d68d98d7d2c17d09 gcc/d/dmd/version.h ee40ca13e71f17c1810a03367e9f8b1b gcc/d/dmd/visitor.h ! 955d0cf488664d232687eadf0c28abea gcc/d/expr.cc ! 68181946228b38dfb5d6fccf924382c4 gcc/d/gdc.texi ! a3c0cc319f091942f45eea92a6af41ff gcc/d/imports.cc eba82f3bc8e120da884c4e286247b5ec gcc/d/intrinsics.cc 0a8e8941af328b030e83d1e9cc0b9065 gcc/d/intrinsics.def fc37be5fab470b465ee72bc78fb30ee1 gcc/d/lang-specs.h --- 4941,4949 ---- 892df329899d0581aea17c5742a9652a gcc/d/dmd/utils.c a8f7c4f694d68924d68d98d7d2c17d09 gcc/d/dmd/version.h ee40ca13e71f17c1810a03367e9f8b1b gcc/d/dmd/visitor.h ! adbadbf6e00746a0738a07e274fdb08b gcc/d/expr.cc ! 2b6a62f5d486c4c03ad661ccf5f70cff gcc/d/gdc.texi ! f678f62d0184946fd1aa39ec41aae949 gcc/d/imports.cc eba82f3bc8e120da884c4e286247b5ec gcc/d/intrinsics.cc 0a8e8941af328b030e83d1e9cc0b9065 gcc/d/intrinsics.def fc37be5fab470b465ee72bc78fb30ee1 gcc/d/lang-specs.h *************** a085b5c31a34e6c194c3108b96c1e203 gcc/d/ *** 4951,4957 **** 68484f70c484e6e0f6edd6ed23c6edaa gcc/d/modules.cc 4cf8cc279a987b0fda776077fd53061f gcc/d/runtime.cc 9c2b70944203746f17b8754ba2109510 gcc/d/runtime.def ! b860ba3324520aff7268d00ff5a3b2f4 gcc/d/toir.cc a8d69052162e9ee53fb1390a2354f76f gcc/d/typeinfo.cc 833a6b769ba1bb6f9756f95475c95a80 gcc/d/types.cc ffe6cb4083340e61aa80419c3ac2f84a gcc/d/verstr.h --- 4952,4958 ---- 68484f70c484e6e0f6edd6ed23c6edaa gcc/d/modules.cc 4cf8cc279a987b0fda776077fd53061f gcc/d/runtime.cc 9c2b70944203746f17b8754ba2109510 gcc/d/runtime.def ! fc82962c5b41e96e3e1499ec22e8db44 gcc/d/toir.cc a8d69052162e9ee53fb1390a2354f76f gcc/d/typeinfo.cc 833a6b769ba1bb6f9756f95475c95a80 gcc/d/types.cc ffe6cb4083340e61aa80419c3ac2f84a gcc/d/verstr.h *************** c18771821b3c0277be8874098ef0a496 gcc/do *** 5001,5038 **** 0aeda9bf1c0b3e2f6f82916a118096d8 gcc/doc/configterms.texi 591c43bd3e0acf5e1319e6a54b9797dd gcc/doc/contrib.texi 9d45c807a3aa05e4129599f4144c79d3 gcc/doc/contribute.texi ! 4111bb183ce82c3e6121a69a4c3d64f9 gcc/doc/cpp.1 ! 1d711bac74d5d50e6dd2205f2e079033 gcc/doc/cpp.info b0ec3515657fc0165ae21602af7f2e82 gcc/doc/cpp.texi 0de35fd948c2d1bfadf0b56403bcd70c gcc/doc/cppdiropts.texi ec4caf3825b9937f10f1dde42b534a68 gcc/doc/cppenv.texi ! 3cfc7301ee64f6a2b78c771bb8cec21d gcc/doc/cppinternals.info c0d6abb8d561540b8519a01789ab20e4 gcc/doc/cppinternals.texi ! 1592fa0920a0202b757dece389015e3f gcc/doc/cppopts.texi 314fc175d338403fc1a2d890f6f325b7 gcc/doc/cppwarnopts.texi ! 12e8c9f596335b8fd0344243c336004a gcc/doc/extend.texi 470b981de977916fd30c8a64c80b7fde gcc/doc/fragments.texi 20adbdf5bf9edc8cb6efd4a9cfc1a5c8 gcc/doc/frontends.texi ! a1f6d18b92aa013a748dfb7697fb41e4 gcc/doc/fsf-funding.7 ! 73458887fe66018650e5c02a8e57aaa9 gcc/doc/g++.1 ! 73458887fe66018650e5c02a8e57aaa9 gcc/doc/gcc.1 ! 77d5dfe4e42e3d43a9474c41ba016e58 gcc/doc/gcc.info 7a4d49e66462ecaddb8c3d35a4be3ce7 gcc/doc/gcc.texi ! 7b13b5ec00f710379a04abd689f39595 gcc/doc/gccinstall.info ! 970d0e5aacac99c5865dd5b32863d7ec gcc/doc/gccint.info 4c3bb0ef5f4f8fd8a877cebf249596fa gcc/doc/gccint.texi ! 856bc88531e4c045e49e38fb2eeff2d8 gcc/doc/gcov-dump.1 d0a4d191b48a6c48c8e5d1d6673aca45 gcc/doc/gcov-dump.texi ! 6dd8d0cbd743d880a4b8699b317d0098 gcc/doc/gcov-tool.1 51792fbbdc63c819a9ca77e38c002af9 gcc/doc/gcov-tool.texi ! 183d0b3b54308b9ca887cf46cca38d22 gcc/doc/gcov.1 7b5042f630659261fc8686377fa6b034 gcc/doc/gcov.texi e92265395b7daf7dc7ce05d3ec64a376 gcc/doc/generic.texi ! 5c48a60e6521c6d343fc11df209f54fb gcc/doc/gfdl.7 ! 8bc3aaa17f27f51d62112c604aa5ce9f gcc/doc/gfortran.1 af5c4e3c5b6e9491191874ab81bae52b gcc/doc/gimple.texi 290370669f02bef1502ada9273e5261f gcc/doc/gnu.texi ! 45beaa7ba7ed48e5565a2dace7e77123 gcc/doc/gpl.7 7cdd885d331cff4af22305f97d7c2f90 gcc/doc/gty.texi 791902062ac528ae5e40ab627fddda4a gcc/doc/headerdirs.texi 5965b4c8e9b7704d12a73ce2dd213ed5 gcc/doc/hostconfig.texi --- 5002,5039 ---- 0aeda9bf1c0b3e2f6f82916a118096d8 gcc/doc/configterms.texi 591c43bd3e0acf5e1319e6a54b9797dd gcc/doc/contrib.texi 9d45c807a3aa05e4129599f4144c79d3 gcc/doc/contribute.texi ! fda5bd9483f9ac9f1cf347468d5bbfd6 gcc/doc/cpp.1 ! 071de8016e3c5a9481dc6b9aa8d1fe85 gcc/doc/cpp.info b0ec3515657fc0165ae21602af7f2e82 gcc/doc/cpp.texi 0de35fd948c2d1bfadf0b56403bcd70c gcc/doc/cppdiropts.texi ec4caf3825b9937f10f1dde42b534a68 gcc/doc/cppenv.texi ! 853cfd24195656e2b0cb2dc824537be0 gcc/doc/cppinternals.info c0d6abb8d561540b8519a01789ab20e4 gcc/doc/cppinternals.texi ! c28ddcc67cabfb1efed60ecff10f04db gcc/doc/cppopts.texi 314fc175d338403fc1a2d890f6f325b7 gcc/doc/cppwarnopts.texi ! a7676b884ce61884ea674890cbb64f7d gcc/doc/extend.texi 470b981de977916fd30c8a64c80b7fde gcc/doc/fragments.texi 20adbdf5bf9edc8cb6efd4a9cfc1a5c8 gcc/doc/frontends.texi ! d2b249804a07357191c448bc34471ea9 gcc/doc/fsf-funding.7 ! 6709722f7f56395469ff3cbd2dfcedea gcc/doc/g++.1 ! 6709722f7f56395469ff3cbd2dfcedea gcc/doc/gcc.1 ! 6750d154c8e95dc3403d9e4230ed7402 gcc/doc/gcc.info 7a4d49e66462ecaddb8c3d35a4be3ce7 gcc/doc/gcc.texi ! a050da47657674c5a09758bc25abc302 gcc/doc/gccinstall.info ! 7ccee6590efbdee3be5e33841e4e59f6 gcc/doc/gccint.info 4c3bb0ef5f4f8fd8a877cebf249596fa gcc/doc/gccint.texi ! 2292dcee52fb4173d1c3a4e0e673c697 gcc/doc/gcov-dump.1 d0a4d191b48a6c48c8e5d1d6673aca45 gcc/doc/gcov-dump.texi ! 516314bd7d765ee994eacdcf96a88ae3 gcc/doc/gcov-tool.1 51792fbbdc63c819a9ca77e38c002af9 gcc/doc/gcov-tool.texi ! caec8417ab289d2d2e0c28d00a20cc15 gcc/doc/gcov.1 7b5042f630659261fc8686377fa6b034 gcc/doc/gcov.texi e92265395b7daf7dc7ce05d3ec64a376 gcc/doc/generic.texi ! e7d000bb1ebba9875f275ec1f4f3dd01 gcc/doc/gfdl.7 ! 4657d78adeef7ae65a03940dd357c436 gcc/doc/gfortran.1 af5c4e3c5b6e9491191874ab81bae52b gcc/doc/gimple.texi 290370669f02bef1502ada9273e5261f gcc/doc/gnu.texi ! 8bf9e5a4dfce80a2a55e6afcacbf2d6d gcc/doc/gpl.7 7cdd885d331cff4af22305f97d7c2f90 gcc/doc/gty.texi 791902062ac528ae5e40ab627fddda4a gcc/doc/headerdirs.texi 5965b4c8e9b7704d12a73ce2dd213ed5 gcc/doc/hostconfig.texi *************** b6389c8331319f90193f11ac084e86e4 gcc/do *** 5047,5057 **** 5df442b76396a3197f5ce631ed59f48e gcc/doc/install.texi 7a4b82d3eebd4858aa30fe0f4404d548 gcc/doc/install.texi2html 31edfbf55a9d3df130c88d68f0169c39 gcc/doc/interface.texi ! 58401cb12c3b4a3806b5ca1687a0cc28 gcc/doc/invoke.texi 3a49345ce16cd33f59d6cf7e0ee815ab gcc/doc/languages.texi 268b9397afea988eadd93ce81b1bb9a2 gcc/doc/libgcc.texi e02b5aa8f429c0957c133e264c9dc3ec gcc/doc/loop.texi ! 3eb4004fbad030d7b482189799ab452e gcc/doc/lto-dump.1 b99bd8da5b02b02634f7d9a942ffbe71 gcc/doc/lto-dump.texi f18a876be44fd2b5c38b7c10dcf2bc94 gcc/doc/lto.texi a8f68d3e6eec459c1c1d361c337737a3 gcc/doc/makefile.texi --- 5048,5058 ---- 5df442b76396a3197f5ce631ed59f48e gcc/doc/install.texi 7a4b82d3eebd4858aa30fe0f4404d548 gcc/doc/install.texi2html 31edfbf55a9d3df130c88d68f0169c39 gcc/doc/interface.texi ! d914dd90561f41a607814069e434a67b gcc/doc/invoke.texi 3a49345ce16cd33f59d6cf7e0ee815ab gcc/doc/languages.texi 268b9397afea988eadd93ce81b1bb9a2 gcc/doc/libgcc.texi e02b5aa8f429c0957c133e264c9dc3ec gcc/doc/loop.texi ! 2b0813d1d9eb31cdeea18341615ba216 gcc/doc/lto-dump.1 b99bd8da5b02b02634f7d9a942ffbe71 gcc/doc/lto-dump.texi f18a876be44fd2b5c38b7c10dcf2bc94 gcc/doc/lto.texi a8f68d3e6eec459c1c1d361c337737a3 gcc/doc/makefile.texi *************** c6370f22bbfcbcb87187c92f76076171 gcc/ex *** 5107,5113 **** 8c8476ba0f61914dffce238540c59b95 gcc/explow.h add1e4cb369e0520484abd0b715bc767 gcc/expmed.c 5e0174392e3f3a8cc0a63391e02aa772 gcc/expmed.h ! 4ceca65ed0e7d617a2f7bb8a783da67a gcc/expr.c 39274814d6e8332f62ce66e987da6dcd gcc/expr.h a89ff289b70e8fa646431a2b2cd439d3 gcc/fibonacci_heap.c 9bcdbc3fe605cab6b77a06f781d4a583 gcc/fibonacci_heap.h --- 5108,5114 ---- 8c8476ba0f61914dffce238540c59b95 gcc/explow.h add1e4cb369e0520484abd0b715bc767 gcc/expmed.c 5e0174392e3f3a8cc0a63391e02aa772 gcc/expmed.h ! 79fcdbde2ff60498223616334b0fb007 gcc/expr.c 39274814d6e8332f62ce66e987da6dcd gcc/expr.h a89ff289b70e8fa646431a2b2cd439d3 gcc/fibonacci_heap.c 9bcdbc3fe605cab6b77a06f781d4a583 gcc/fibonacci_heap.h *************** c7818ea72561a6c3ef3613f1f94eef57 gcc/fi *** 5124,5130 **** 16906a527f09ac9bf549f3acfa4223cd gcc/fold-const-call.h 7fc5dfef3abeab38d8d3f917a3dd8d73 gcc/fold-const.c abc79786bf3632dfb6fbaa4020b7260a gcc/fold-const.h ! e6cafcaf569c837a520f8f487e0116a7 gcc/fortran/ChangeLog 3330102ad3a0217cba963be6b5eefd58 gcc/fortran/ChangeLog-2002 d000ab985b1eeb1ad5749f98b8fef99f gcc/fortran/ChangeLog-2003 bf42f94f0c51dcc7d8051cc7fda1efdc gcc/fortran/ChangeLog-2004 --- 5125,5131 ---- 16906a527f09ac9bf549f3acfa4223cd gcc/fold-const-call.h 7fc5dfef3abeab38d8d3f917a3dd8d73 gcc/fold-const.c abc79786bf3632dfb6fbaa4020b7260a gcc/fold-const.h ! 12945af0eaeef675bee80cc2b8913316 gcc/fortran/ChangeLog 3330102ad3a0217cba963be6b5eefd58 gcc/fortran/ChangeLog-2002 d000ab985b1eeb1ad5749f98b8fef99f gcc/fortran/ChangeLog-2003 bf42f94f0c51dcc7d8051cc7fda1efdc gcc/fortran/ChangeLog-2004 *************** a71efd3e199a80ee07c7f350cc8fcf91 gcc/fo *** 5147,5155 **** 5c6f2ebe741a0ada8c3033e2ea5d2ad7 gcc/fortran/Make-lang.in 5909b9f6e71710f62afe91d5f67898f7 gcc/fortran/arith.c ca8b1e108aefbac2b7ac57c153617f6c gcc/fortran/arith.h ! b05deab2c992671d980cfe3478e519f9 gcc/fortran/array.c 22a0a106380de68c4cdc48f21e8df1eb gcc/fortran/bbt.c ! ec3ecfb4fcfde5919a0f4f68e3d2b285 gcc/fortran/check.c a8a6bab62f224890f29d51f5f16aefd3 gcc/fortran/class.c ff1762e0971ecf2d08fcffa2311224bd gcc/fortran/config-lang.in d0f92e4c6353c809d59a8b3d9f6c1b82 gcc/fortran/constructor.c --- 5148,5156 ---- 5c6f2ebe741a0ada8c3033e2ea5d2ad7 gcc/fortran/Make-lang.in 5909b9f6e71710f62afe91d5f67898f7 gcc/fortran/arith.c ca8b1e108aefbac2b7ac57c153617f6c gcc/fortran/arith.h ! c48b4a29489189b6a3a63e5a66dc84d3 gcc/fortran/array.c 22a0a106380de68c4cdc48f21e8df1eb gcc/fortran/bbt.c ! f7595284d48db08119e05a75bfa63a29 gcc/fortran/check.c a8a6bab62f224890f29d51f5f16aefd3 gcc/fortran/class.c ff1762e0971ecf2d08fcffa2311224bd gcc/fortran/config-lang.in d0f92e4c6353c809d59a8b3d9f6c1b82 gcc/fortran/constructor.c *************** d74f46867c50e9065742294cf7981112 gcc/fo *** 5159,5192 **** b36a6c41c7be94c6ecabf570d20ef218 gcc/fortran/cpp.h f014f88abd3f67ba65654dfb86f07d39 gcc/fortran/data.c 4577ffbed1dda4ed381606219c395ead gcc/fortran/data.h ! 3a93d2749eed9e47bc0d1ecdf1175c46 gcc/fortran/decl.c ! ff2a9c749b3cdddd0069d2681223f4b0 gcc/fortran/dependency.c c44b979760eb69c741f2153783e81265 gcc/fortran/dependency.h 3e38fbef8d1fa77431311f2c23b04486 gcc/fortran/dump-parse-tree.c 339cf2cc8c2a7445bbf46589cfd8565c gcc/fortran/error.c ! b54645eec62d2d184469ef591d0e7406 gcc/fortran/expr.c ! d7765a920ed5575a88d4db604b220ae8 gcc/fortran/f95-lang.c dbade9a0443babcb6841e422e4bd90ec gcc/fortran/frontend-passes.c 4a9175c58f9890ba356a1a7a096d5080 gcc/fortran/gfc-diagnostic.def 6185d88092feb0bfe9da2dd3a00c4a9b gcc/fortran/gfc-internals.texi 210ea7941b8ac304a8a9dc59d1f21775 gcc/fortran/gfortran.h ! 9475f1be32fdf8423fa1288030b62aae gcc/fortran/gfortran.info ba78f919c059d2c39dea6fd637ec60c4 gcc/fortran/gfortran.texi 4cc401504b7e658fab348681169c32a4 gcc/fortran/gfortranspec.c ! fdaa35d24d70de3a8ac5f13bf9d76599 gcc/fortran/interface.c 829eaa0082269f5b5febfdb18143a3dc gcc/fortran/intrinsic.c ceea3037f74de08ef111da7bb019ed4c gcc/fortran/intrinsic.h 9f9aec12ab6a67091b66c4f231a3e1f8 gcc/fortran/intrinsic.texi a06453ed65fec3338fa1b2817ff8957b gcc/fortran/invoke.texi fca17b96a19a1afac83ccfb428b5da99 gcc/fortran/io.c 6d5e915cff913cdb02ba2baa120b8fe8 gcc/fortran/ioparm.def ! 2bee38469d4ce1098c8c91e20abe8440 gcc/fortran/iresolve.c 06cbd27c3b0bbe8982f480c02560715c gcc/fortran/iso-c-binding.def 1bc68fc9ea57d5448d32e38f470839ef gcc/fortran/iso-fortran-env.def 4704c3c4e98e7f39a242215740f10a69 gcc/fortran/lang-specs.h e283f0937fc450e80999166335b17244 gcc/fortran/lang.opt 226cf6b14c1286da7bf2193ae58b56d2 gcc/fortran/libgfortran.h ! 76fa60e2c6b43c01900148ad1c2229c8 gcc/fortran/match.c 828ba0a275b20969ca5988535d6e958a gcc/fortran/match.h be55c16cc142b0c725759a753b87bf54 gcc/fortran/matchexp.c a7b0953cc8a68adc1bb8bbae3cfe218d gcc/fortran/mathbuiltins.def --- 5160,5193 ---- b36a6c41c7be94c6ecabf570d20ef218 gcc/fortran/cpp.h f014f88abd3f67ba65654dfb86f07d39 gcc/fortran/data.c 4577ffbed1dda4ed381606219c395ead gcc/fortran/data.h ! 75aa9f17309e292b057d5a01a9408a71 gcc/fortran/decl.c ! 45d096184a417d9efa8ed444da783998 gcc/fortran/dependency.c c44b979760eb69c741f2153783e81265 gcc/fortran/dependency.h 3e38fbef8d1fa77431311f2c23b04486 gcc/fortran/dump-parse-tree.c 339cf2cc8c2a7445bbf46589cfd8565c gcc/fortran/error.c ! a58b595a14abc74da4ff9079aa01ecae gcc/fortran/expr.c ! cae1fea774b2ac4af8e64e5c9a4fbd56 gcc/fortran/f95-lang.c dbade9a0443babcb6841e422e4bd90ec gcc/fortran/frontend-passes.c 4a9175c58f9890ba356a1a7a096d5080 gcc/fortran/gfc-diagnostic.def 6185d88092feb0bfe9da2dd3a00c4a9b gcc/fortran/gfc-internals.texi 210ea7941b8ac304a8a9dc59d1f21775 gcc/fortran/gfortran.h ! 1b627b78375ba0ef99d0e6e89e3cceb7 gcc/fortran/gfortran.info ba78f919c059d2c39dea6fd637ec60c4 gcc/fortran/gfortran.texi 4cc401504b7e658fab348681169c32a4 gcc/fortran/gfortranspec.c ! 2cf9f47781dc0c2907113863264bdb51 gcc/fortran/interface.c 829eaa0082269f5b5febfdb18143a3dc gcc/fortran/intrinsic.c ceea3037f74de08ef111da7bb019ed4c gcc/fortran/intrinsic.h 9f9aec12ab6a67091b66c4f231a3e1f8 gcc/fortran/intrinsic.texi a06453ed65fec3338fa1b2817ff8957b gcc/fortran/invoke.texi fca17b96a19a1afac83ccfb428b5da99 gcc/fortran/io.c 6d5e915cff913cdb02ba2baa120b8fe8 gcc/fortran/ioparm.def ! c6c50f11aa53e0c86e93ed5fe97ed1bf gcc/fortran/iresolve.c 06cbd27c3b0bbe8982f480c02560715c gcc/fortran/iso-c-binding.def 1bc68fc9ea57d5448d32e38f470839ef gcc/fortran/iso-fortran-env.def 4704c3c4e98e7f39a242215740f10a69 gcc/fortran/lang-specs.h e283f0937fc450e80999166335b17244 gcc/fortran/lang.opt 226cf6b14c1286da7bf2193ae58b56d2 gcc/fortran/libgfortran.h ! 94cbea047cd59fbf43fd018341cdd4d3 gcc/fortran/match.c 828ba0a275b20969ca5988535d6e958a gcc/fortran/match.h be55c16cc142b0c725759a753b87bf54 gcc/fortran/matchexp.c a7b0953cc8a68adc1bb8bbae3cfe218d gcc/fortran/mathbuiltins.def *************** a7b0953cc8a68adc1bb8bbae3cfe218d gcc/fo *** 5194,5208 **** fa7960ce4e6f31518d07f43fab0064fb gcc/fortran/module.c 98073c8b0067e3f1cf86cfcbedea3d4b gcc/fortran/openmp.c a846edad604c36aca8373eca299f9003 gcc/fortran/options.c ! 977acb907d69546a8fe4d2f9cf6497a8 gcc/fortran/parse.c be3bc61c20fd3fe95f04b104478ae250 gcc/fortran/parse.h ! 0213a860b48912534c8d5b479e6a7ca4 gcc/fortran/primary.c ! 94c458f91306bac2e0b519ed4baea33c gcc/fortran/resolve.c 9210d7371a77a15b79b659e8719ab872 gcc/fortran/scanner.c 679740af5fd1779d09bad19b2a37b9cf gcc/fortran/scanner.h ! 113545e00223632c0e6f76240f1aee08 gcc/fortran/simplify.c c992b80ea1e122025853709b9349485d gcc/fortran/st.c ! 68eda559c17fe42472ac86c38c28a099 gcc/fortran/symbol.c 006ae369e32fd80bae953a25b64ef9b1 gcc/fortran/target-memory.c 2079251ce04664a8bcacf6d0d1b9c63d gcc/fortran/target-memory.h 1c6d1da63a3d9a455d0f808df3710c0f gcc/fortran/trans-array.c --- 5195,5209 ---- fa7960ce4e6f31518d07f43fab0064fb gcc/fortran/module.c 98073c8b0067e3f1cf86cfcbedea3d4b gcc/fortran/openmp.c a846edad604c36aca8373eca299f9003 gcc/fortran/options.c ! 2bbc854869f72f583061d1cca2f99f61 gcc/fortran/parse.c be3bc61c20fd3fe95f04b104478ae250 gcc/fortran/parse.h ! 33327083c040fe8dbfcaeb146094fe70 gcc/fortran/primary.c ! 7b9230daab04db277154a46cbcca2a67 gcc/fortran/resolve.c 9210d7371a77a15b79b659e8719ab872 gcc/fortran/scanner.c 679740af5fd1779d09bad19b2a37b9cf gcc/fortran/scanner.h ! b11f5b78f7ccfdddc755cde4a31d7653 gcc/fortran/simplify.c c992b80ea1e122025853709b9349485d gcc/fortran/st.c ! 6ec236ceb5f880a4fa687c2355e2672c gcc/fortran/symbol.c 006ae369e32fd80bae953a25b64ef9b1 gcc/fortran/target-memory.c 2079251ce04664a8bcacf6d0d1b9c63d gcc/fortran/target-memory.h 1c6d1da63a3d9a455d0f808df3710c0f gcc/fortran/trans-array.c *************** c992b80ea1e122025853709b9349485d gcc/fo *** 5210,5234 **** 3b24f22e64661b57edc88f7be8c0e39d gcc/fortran/trans-common.c 7067790d4cb3a5061b0d1ce2e9c343e9 gcc/fortran/trans-const.c b56b11f97407d25ca49b09760f059abe gcc/fortran/trans-const.h ! 32a307a8fca44beb944d31727152aaba gcc/fortran/trans-decl.c ! c5faf10720af7ecee39bc4460c4ff0aa gcc/fortran/trans-expr.c ! 7c56cc8a0fe94ecd22b4f344a3edcd52 gcc/fortran/trans-intrinsic.c 8b2a38b5821ecb86b2d2c64402eab26a gcc/fortran/trans-io.c a74d6a9935c305f1edb58fb8465761de gcc/fortran/trans-openmp.c 67bac98c6f4d0bb710fb422590553f43 gcc/fortran/trans-stmt.c 5bf228024f266738a2c924e3b4c3c159 gcc/fortran/trans-stmt.h ! b4109643c92ddd2e089c7aab89c6de51 gcc/fortran/trans-types.c 9c69f1144a81294c83c5dfccf059e4c4 gcc/fortran/trans-types.h d64a1b4f0cf5fc8fb67e745e08325f43 gcc/fortran/trans.c ! 81530ead86dd639638783c7081dd79d5 gcc/fortran/trans.h 125b02d4dda231478bb8db64c9539602 gcc/fortran/trigd_fe.inc 58b4d60332325e7af086f8737b608276 gcc/fortran/types.def 1b79283e54291d237be28ab4ae4b3f1d gcc/fp-test.c 0016a094a47192e17ab43316c6b81e77 gcc/function-abi.cc f5575b9b4148e14a06bd15e48a059fe9 gcc/function-abi.h 1d1c7fefe6627b480bdca65a93572b85 gcc/function-tests.c ! 8d7a3430127b1531b249ae8f38a04f63 gcc/function.c ! 471a2138d677294e0d8b0ad39fdac18d gcc/function.h be4b170ee267123479f1e1f21b624f1b gcc/fwprop.c dedbe8a6eb31269c6155407f0628b3dd gcc/gcc-ar.c 56dd7d0a4ae49da481226f30c2fe7f5b gcc/gcc-main.c --- 5211,5235 ---- 3b24f22e64661b57edc88f7be8c0e39d gcc/fortran/trans-common.c 7067790d4cb3a5061b0d1ce2e9c343e9 gcc/fortran/trans-const.c b56b11f97407d25ca49b09760f059abe gcc/fortran/trans-const.h ! 465e0764d21ed891707b49e883814ac6 gcc/fortran/trans-decl.c ! 7abbde3e7ba1d3661e003cdfd618cf3b gcc/fortran/trans-expr.c ! f3f5d5955cd603bea5ff23302ccf9fd2 gcc/fortran/trans-intrinsic.c 8b2a38b5821ecb86b2d2c64402eab26a gcc/fortran/trans-io.c a74d6a9935c305f1edb58fb8465761de gcc/fortran/trans-openmp.c 67bac98c6f4d0bb710fb422590553f43 gcc/fortran/trans-stmt.c 5bf228024f266738a2c924e3b4c3c159 gcc/fortran/trans-stmt.h ! f771a545fd164141f7a3fb76b23663c4 gcc/fortran/trans-types.c 9c69f1144a81294c83c5dfccf059e4c4 gcc/fortran/trans-types.h d64a1b4f0cf5fc8fb67e745e08325f43 gcc/fortran/trans.c ! 030cdf313044cf96e422f24973dc4767 gcc/fortran/trans.h 125b02d4dda231478bb8db64c9539602 gcc/fortran/trigd_fe.inc 58b4d60332325e7af086f8737b608276 gcc/fortran/types.def 1b79283e54291d237be28ab4ae4b3f1d gcc/fp-test.c 0016a094a47192e17ab43316c6b81e77 gcc/function-abi.cc f5575b9b4148e14a06bd15e48a059fe9 gcc/function-abi.h 1d1c7fefe6627b480bdca65a93572b85 gcc/function-tests.c ! 65a95fab516c91e92e819418bb557622 gcc/function.c ! 0de1800d7d635e2bfee3a65ace0990ae gcc/function.h be4b170ee267123479f1e1f21b624f1b gcc/fwprop.c dedbe8a6eb31269c6155407f0628b3dd gcc/gcc-ar.c 56dd7d0a4ae49da481226f30c2fe7f5b gcc/gcc-main.c *************** cfff649691185f367fd2b8e73ac7ad99 gcc/gc *** 5236,5242 **** 62560119c356b251cca1099cb4c0e36e gcc/gcc-rich-location.c 833829dec49e2b78c0ce9e6ff94ed95e gcc/gcc-rich-location.h 1e7a8acabfe981225ee07f2ca2588326 gcc/gcc-symtab.h ! 001ba31c288a6eb84d2c513fa9e853d0 gcc/gcc.c bd03f9afb8e7458acac40b10fd781d0a gcc/gcc.h bbb1c23e69c2fe3a3d5ad53c86e1ecb6 gcc/gcov-counter.def f54685150224625db645d8f0a852916f gcc/gcov-dump.c --- 5237,5243 ---- 62560119c356b251cca1099cb4c0e36e gcc/gcc-rich-location.c 833829dec49e2b78c0ce9e6ff94ed95e gcc/gcc-rich-location.h 1e7a8acabfe981225ee07f2ca2588326 gcc/gcc-symtab.h ! 1c31b9b25c5e7577bd18d0ee9d97b355 gcc/gcc.c bd03f9afb8e7458acac40b10fd781d0a gcc/gcc.h bbb1c23e69c2fe3a3d5ad53c86e1ecb6 gcc/gcov-counter.def f54685150224625db645d8f0a852916f gcc/gcov-dump.c *************** b3839103fa0b153f5f766d5e9c0fff08 gcc/ge *** 5266,5277 **** 5d82a21c27e4fc31eb9121e941ab44ed gcc/genconstants.c 643b236075127cb3912a428241d7045e gcc/genemit.c a121314dddd509799e606d5c36ef4f21 gcc/genenums.c ! a1e549f76fdae9e7751ece58813a2001 gcc/generic-match-head.c 29bf3289ba360de671cfcd854cf59a22 gcc/generic-match.h 512811c4f04c2a6b3ee96bd1050c8254 gcc/genextract.c 6b1b20df0e1c1d98bbb87eda8feb1aa9 gcc/genflags.c d5ba0558db6b0ab6fa6173d1928e95a8 gcc/gengenrtl.c ! a47d7712b14bcc384e3ad4607724c775 gcc/gengtype-lex.c 790251f979c35416aba2f02f062588a3 gcc/gengtype-lex.l 50e413eeb1665bf9eb5c8f68ac1b3513 gcc/gengtype-parse.c 0f39be6bb5abe83175ebce4bd00ad8b8 gcc/gengtype-state.c --- 5267,5278 ---- 5d82a21c27e4fc31eb9121e941ab44ed gcc/genconstants.c 643b236075127cb3912a428241d7045e gcc/genemit.c a121314dddd509799e606d5c36ef4f21 gcc/genenums.c ! a7bbd182b520d52de58488d7efb941a4 gcc/generic-match-head.c 29bf3289ba360de671cfcd854cf59a22 gcc/generic-match.h 512811c4f04c2a6b3ee96bd1050c8254 gcc/genextract.c 6b1b20df0e1c1d98bbb87eda8feb1aa9 gcc/genflags.c d5ba0558db6b0ab6fa6173d1928e95a8 gcc/gengenrtl.c ! 346e16f0d92d88367ffb0c90ca4380f2 gcc/gengtype-lex.c 790251f979c35416aba2f02f062588a3 gcc/gengtype-lex.l 50e413eeb1665bf9eb5c8f68ac1b3513 gcc/gengtype-parse.c 0f39be6bb5abe83175ebce4bd00ad8b8 gcc/gengtype-state.c *************** ed17d1c5e9fc48436a080788ce2b0ef1 gcc/gi *** 5324,5330 **** 52b5e409d797ce70c64b4786ee0bf3b8 gcc/gimple-ssa-nonnull-compare.c c7c49b9d0297fb5d524ed3f7394f0968 gcc/gimple-ssa-split-paths.c bf48772e4c10881b67ac229cd00aff50 gcc/gimple-ssa-sprintf.c ! 52c66d872308f8c14949eb95700ba5cd gcc/gimple-ssa-store-merging.c 8960c3cbca38a2eaf05bd32e3ecf4854 gcc/gimple-ssa-strength-reduction.c 83fd2fdd73077218ec13ec004aef5ab0 gcc/gimple-ssa-warn-alloca.c f72a465e49a5175b7273d87fd391f004 gcc/gimple-ssa-warn-restrict.c --- 5325,5331 ---- 52b5e409d797ce70c64b4786ee0bf3b8 gcc/gimple-ssa-nonnull-compare.c c7c49b9d0297fb5d524ed3f7394f0968 gcc/gimple-ssa-split-paths.c bf48772e4c10881b67ac229cd00aff50 gcc/gimple-ssa-sprintf.c ! 399a1b42b2b009951f3f8eccc40b2dcf gcc/gimple-ssa-store-merging.c 8960c3cbca38a2eaf05bd32e3ecf4854 gcc/gimple-ssa-strength-reduction.c 83fd2fdd73077218ec13ec004aef5ab0 gcc/gimple-ssa-warn-alloca.c f72a465e49a5175b7273d87fd391f004 gcc/gimple-ssa-warn-restrict.c *************** a7b6c54cea96cb12874d9565e58bab5a gcc/gi *** 5357,5373 **** 0608636acf1496b7f55fd44f5db0b82b gcc/ginclude/unwind-arm-common.h 8d9ecf0d6ef93c79623ce1d27a32a2cb gcc/ginclude/varargs.h f68ba128faa37699b34eabd954dec2e7 gcc/glimits.h ! 80bbfa396dc7079b85d255ebec831415 gcc/go/ChangeLog 7704e902d7eca77c3c54d4b0d74e1280 gcc/go/Make-lang.in 60ea054548c83c7f66170073f9f3e74c gcc/go/README.gcc ba1d1d5398ab441ac25b708319bb4d33 gcc/go/config-lang.in b6812433e2bf40a03c8504f580a5b3ec gcc/go/gccgo.texi ! cafbcde405852de043f309f5e2ac94bd gcc/go/go-backend.c 6f9ac459ff5936a3d21de3435d396d78 gcc/go/go-c.h acff316a0e8db218432f2764fe58cb08 gcc/go/go-gcc-diagnostics.cc d3eb3a363d2930cfe4aece1e0fecfa5b gcc/go/go-gcc.cc f855b94c159262d963922f45595f57c2 gcc/go/go-gcc.h ! 3499471e15b7bebf09eb4c8d732e38e1 gcc/go/go-lang.c c5d6aaa7e913ef205113a2bba2e5206f gcc/go/go-linemap.cc 91c7a6773e207cc086ae0888826cc3c4 gcc/go/go-location.h 46f49e79ed5bd91f45e19fb1abf77ce3 gcc/go/go-sha1.cc --- 5358,5374 ---- 0608636acf1496b7f55fd44f5db0b82b gcc/ginclude/unwind-arm-common.h 8d9ecf0d6ef93c79623ce1d27a32a2cb gcc/ginclude/varargs.h f68ba128faa37699b34eabd954dec2e7 gcc/glimits.h ! b15ac791ab8b3634c0dd907bc2da9d27 gcc/go/ChangeLog 7704e902d7eca77c3c54d4b0d74e1280 gcc/go/Make-lang.in 60ea054548c83c7f66170073f9f3e74c gcc/go/README.gcc ba1d1d5398ab441ac25b708319bb4d33 gcc/go/config-lang.in b6812433e2bf40a03c8504f580a5b3ec gcc/go/gccgo.texi ! 99519616f08115cf6ddb6494d5368b92 gcc/go/go-backend.c 6f9ac459ff5936a3d21de3435d396d78 gcc/go/go-c.h acff316a0e8db218432f2764fe58cb08 gcc/go/go-gcc-diagnostics.cc d3eb3a363d2930cfe4aece1e0fecfa5b gcc/go/go-gcc.cc f855b94c159262d963922f45595f57c2 gcc/go/go-gcc.h ! 774d9a1ddb384359d8a599c50b4d039a gcc/go/go-lang.c c5d6aaa7e913ef205113a2bba2e5206f gcc/go/go-linemap.cc 91c7a6773e207cc086ae0888826cc3c4 gcc/go/go-location.h 46f49e79ed5bd91f45e19fb1abf77ce3 gcc/go/go-sha1.cc *************** f61bfa11e5056710d46d3ef576f21438 gcc/hs *** 5468,5474 **** ba4bc2226879e0be934d32f6f2aadeaa gcc/hw-doloop.h 909d931869b7d5535696c8f9e6fbc58d gcc/hwint.c 53f6c7822d2955059f5474124b89c8d8 gcc/hwint.h ! 468e9ae5cdbbc736482dfec69c96549c gcc/ifcvt.c 7cf51303d986638791f93b75b6e05e25 gcc/ifcvt.h c7a8101076016714491228c2c888df88 gcc/inchash.c 1a0d7710c9a7b84ecbb544fedf87876c gcc/inchash.h --- 5469,5475 ---- ba4bc2226879e0be934d32f6f2aadeaa gcc/hw-doloop.h 909d931869b7d5535696c8f9e6fbc58d gcc/hwint.c 53f6c7822d2955059f5474124b89c8d8 gcc/hwint.h ! 3258a1975db1c2231bb90c34e00e18e7 gcc/ifcvt.c 7cf51303d986638791f93b75b6e05e25 gcc/ifcvt.h c7a8101076016714491228c2c888df88 gcc/inchash.c 1a0d7710c9a7b84ecbb544fedf87876c gcc/inchash.h *************** f055de76a5a05f54d00a80ac20759a93 gcc/ip *** 5519,5525 **** 07a2becdd98104b287d8d760fcf0f7cd gcc/ipa-visibility.c 98e8832e00f0aa9d1e5319aac879cfa8 gcc/ipa.c ba0f8a4827b070b9b7f97d9d09936884 gcc/ira-build.c ! 433798122aec602e970402e8b960d598 gcc/ira-color.c 8d2f4b9c89bc42d97800f26301dcdc10 gcc/ira-conflicts.c b2c01e63c584a9f375c6026f80aa6c14 gcc/ira-costs.c b1c18acf2cccfa59fdbf8d8ca83dae19 gcc/ira-emit.c --- 5520,5526 ---- 07a2becdd98104b287d8d760fcf0f7cd gcc/ipa-visibility.c 98e8832e00f0aa9d1e5319aac879cfa8 gcc/ipa.c ba0f8a4827b070b9b7f97d9d09936884 gcc/ira-build.c ! c8a8aae82dcca62b4013236809117c88 gcc/ira-color.c 8d2f4b9c89bc42d97800f26301dcdc10 gcc/ira-conflicts.c b2c01e63c584a9f375c6026f80aa6c14 gcc/ira-costs.c b1c18acf2cccfa59fdbf8d8ca83dae19 gcc/ira-emit.c *************** b8e3c890bc1ccade77558f2eba0dce60 gcc/ir *** 5528,5534 **** 94db6b40114ccb20995ee760399d65f5 gcc/ira.c bcf6b7eea8ae7e6b363a86565178be1f gcc/ira.h 7a4e770c6d51b1f35bb2994ca37824aa gcc/is-a.h ! e12ef1275522c09fceaa51e02d162a93 gcc/jit/ChangeLog 6071bdf04fb356c5ac99a99ec00c9a12 gcc/jit/ChangeLog.jit 1ab65eadbc8d42b650bf4bce38d0ac8d gcc/jit/Make-lang.in fd0d76b6467c987f813d430a35d4760a gcc/jit/TODO.rst --- 5529,5535 ---- 94db6b40114ccb20995ee760399d65f5 gcc/ira.c bcf6b7eea8ae7e6b363a86565178be1f gcc/ira.h 7a4e770c6d51b1f35bb2994ca37824aa gcc/is-a.h ! 3237c23cba0f5cb8de7d712e37fb26db gcc/jit/ChangeLog 6071bdf04fb356c5ac99a99ec00c9a12 gcc/jit/ChangeLog.jit 1ab65eadbc8d42b650bf4bce38d0ac8d gcc/jit/Make-lang.in fd0d76b6467c987f813d430a35d4760a gcc/jit/TODO.rst *************** ba663f306c0c9dc5e602465aa6d791f4 gcc/li *** 5626,5632 **** 30b8e3e407f46ad2cb39260ec4bab9f6 gcc/lock-and-run.sh fa0e89979a1d8c821d2594597ddc309b gcc/loop-doloop.c 899e33ea3264342544a1a784e8d2532c gcc/loop-init.c ! 028b4c116ea87138be3800b6e6663580 gcc/loop-invariant.c c157087005c8286392f4367214245e9f gcc/loop-iv.c 3996431341adbc53210b6c9e8d0e4236 gcc/loop-unroll.c a5e0549da42bf024e74e0520d5360537 gcc/loop-unroll.h --- 5627,5633 ---- 30b8e3e407f46ad2cb39260ec4bab9f6 gcc/lock-and-run.sh fa0e89979a1d8c821d2594597ddc309b gcc/loop-doloop.c 899e33ea3264342544a1a784e8d2532c gcc/loop-init.c ! 69e08190b2c8371b3431d3d1721b214f gcc/loop-invariant.c c157087005c8286392f4367214245e9f gcc/loop-iv.c 3996431341adbc53210b6c9e8d0e4236 gcc/loop-unroll.c a5e0549da42bf024e74e0520d5360537 gcc/loop-unroll.h *************** fcbfbec19f2e07d0f1dc4d1032b5ae3c gcc/lt *** 5649,5660 **** f601534108bd7d15ecfcf5db1692890f gcc/lto-section-in.c 97dbb324bc66497e90859cdd69f25c91 gcc/lto-section-names.h 25a5d56053984a5dd00d68af10f528e4 gcc/lto-section-out.c ! 61996695ed1a7e1a968d13c6444854eb gcc/lto-streamer-in.c 2af05e42cf3672b695a784eebaa19f26 gcc/lto-streamer-out.c 6322b1521fdaf76be3c90f339ba47a75 gcc/lto-streamer.c 138480b5ae8ef56e2e180063755ed01e gcc/lto-streamer.h ! 3bc10d0f98328d53593b7a5c6118b7ca gcc/lto-wrapper.c ! 9c069eaddec7bf47b82c975f930e2d8a gcc/lto/ChangeLog ff902999e2da9680340e8d0cace7ec16 gcc/lto/Make-lang.in 6bb73fcbce79fbfce7649ed545fd08e2 gcc/lto/common.c 12eb383f6e35176f4a54226df1009acf gcc/lto/common.h --- 5650,5661 ---- f601534108bd7d15ecfcf5db1692890f gcc/lto-section-in.c 97dbb324bc66497e90859cdd69f25c91 gcc/lto-section-names.h 25a5d56053984a5dd00d68af10f528e4 gcc/lto-section-out.c ! ffa79160e0dd8084e753876f568fd34b gcc/lto-streamer-in.c 2af05e42cf3672b695a784eebaa19f26 gcc/lto-streamer-out.c 6322b1521fdaf76be3c90f339ba47a75 gcc/lto-streamer.c 138480b5ae8ef56e2e180063755ed01e gcc/lto-streamer.h ! 0fc7e8ac41fe9037fa01456a8684facd gcc/lto-wrapper.c ! 1319829788873fa720de19521d9195ee gcc/lto/ChangeLog ff902999e2da9680340e8d0cace7ec16 gcc/lto/Make-lang.in 6bb73fcbce79fbfce7649ed545fd08e2 gcc/lto/common.c 12eb383f6e35176f4a54226df1009acf gcc/lto/common.h *************** ae1f5f39ba98a3c7758fa9933bb5e230 gcc/lt *** 5676,5682 **** b13745c2d7c8d78a175492fe7e3feb8d gcc/machmode.def b3dde66d1523f50e15e4e0229fcf13f1 gcc/machmode.h b05eff1a563e18d9d927004e16b2ce00 gcc/main.c ! a053080c1b8c188948f0f19bfa055995 gcc/match.pd 1cc67605dff78497d108bb65aec8efb3 gcc/mcf.c 25a428eb0074bcb4e34a5faa06b0cc4d gcc/mem-stats-traits.h f67514301092d230fdc3a545f4b3bfc9 gcc/mem-stats.h --- 5677,5683 ---- b13745c2d7c8d78a175492fe7e3feb8d gcc/machmode.def b3dde66d1523f50e15e4e0229fcf13f1 gcc/machmode.h b05eff1a563e18d9d927004e16b2ce00 gcc/main.c ! d596cc21fe4ad7511a8cae904f4aaf26 gcc/match.pd 1cc67605dff78497d108bb65aec8efb3 gcc/mcf.c 25a428eb0074bcb4e34a5faa06b0cc4d gcc/mem-stats-traits.h f67514301092d230fdc3a545f4b3bfc9 gcc/mem-stats.h *************** eabfaa5f3f130f5eecd38b7e0fabf3bb gcc/mk *** 5688,5694 **** 07afcffe769aaf6f4c2700740fb1def3 gcc/mode-switching.c 88d37b5a99a5f0472de63b2dc4e32242 gcc/modulo-sched.c 2e0b84cc43cf21e916fc5727f4b74ff1 gcc/multiple_target.c ! f0286e85afed045fa1460dea51054718 gcc/objc/ChangeLog fcd05e1453dc56982727d6b4728d6ca9 gcc/objc/Make-lang.in 88d6d4c884e7d92ad2d64ce7e15b9e97 gcc/objc/config-lang.in ac21dc9666c05c196265804e425f0312 gcc/objc/lang-specs.h --- 5689,5695 ---- 07afcffe769aaf6f4c2700740fb1def3 gcc/mode-switching.c 88d37b5a99a5f0472de63b2dc4e32242 gcc/modulo-sched.c 2e0b84cc43cf21e916fc5727f4b74ff1 gcc/multiple_target.c ! 612192c0b57a452ddee335b07a848ec7 gcc/objc/ChangeLog fcd05e1453dc56982727d6b4728d6ca9 gcc/objc/Make-lang.in 88d6d4c884e7d92ad2d64ce7e15b9e97 gcc/objc/config-lang.in ac21dc9666c05c196265804e425f0312 gcc/objc/lang-specs.h *************** ba8bb35eefefe34c0ef8e803ad1e613f gcc/ob *** 5707,5713 **** 95c767443f3ea23a2864aa66efab6760 gcc/objc/objc-runtime-shared-support.c 9626708ffde2a801337d858ad9f4b9f1 gcc/objc/objc-runtime-shared-support.h 0996fe056d9bbb9cd033a1c4cc77e561 gcc/objc/objc-tree.def ! 3b66e11e9f9056120decae03d02662d1 gcc/objcp/ChangeLog 3cbc95bd25fa86ffaff1f83e52772e28 gcc/objcp/Make-lang.in c7ddd8c51d7e8c1428875a246dc4cb33 gcc/objcp/config-lang.in ded26818173a53d24e4db8138bb737cf gcc/objcp/lang-specs.h --- 5708,5714 ---- 95c767443f3ea23a2864aa66efab6760 gcc/objc/objc-runtime-shared-support.c 9626708ffde2a801337d858ad9f4b9f1 gcc/objc/objc-runtime-shared-support.h 0996fe056d9bbb9cd033a1c4cc77e561 gcc/objc/objc-tree.def ! 0b19adf8c577421abd0fc8ba4e58fae3 gcc/objcp/ChangeLog 3cbc95bd25fa86ffaff1f83e52772e28 gcc/objcp/Make-lang.in c7ddd8c51d7e8c1428875a246dc4cb33 gcc/objcp/config-lang.in ded26818173a53d24e4db8138bb737cf gcc/objcp/lang-specs.h *************** be872037f2be317642757dff9ee4e7e9 gcc/ob *** 5715,5727 **** 4d6c6650decaa2d51b88c66909397347 gcc/objcp/objcp-decl.h 004a8fa747c0865adad4be841a260d0d gcc/objcp/objcp-lang.c 0886e27233c32e6179a7381c27d8b4c2 gcc/omp-builtins.def ! 7ec494cf806ea91ea351a905aa707943 gcc/omp-expand.c d5c5e7983604146d429dd7d971026ffc gcc/omp-expand.h 996e3f954aeeb8d7543e5f2fea44df7d gcc/omp-general.c 9b5747816823c44340c559fe9034bd42 gcc/omp-general.h eec49c45264ffe98078e1790dde1d085 gcc/omp-grid.c 58dec197c27b0fe6b637589c91ce6570 gcc/omp-grid.h ! bd45d4573e85107519ec5b683388510f gcc/omp-low.c d8bb78f41734f384394b7458c6980f00 gcc/omp-low.h c44ad711e41ca3278cc397873a44b2fd gcc/omp-offload.c fc27509534cd1450c6222e58845bcdbc gcc/omp-offload.h --- 5716,5728 ---- 4d6c6650decaa2d51b88c66909397347 gcc/objcp/objcp-decl.h 004a8fa747c0865adad4be841a260d0d gcc/objcp/objcp-lang.c 0886e27233c32e6179a7381c27d8b4c2 gcc/omp-builtins.def ! 17cd0d13cb9c2d68fb2af04cc2806815 gcc/omp-expand.c d5c5e7983604146d429dd7d971026ffc gcc/omp-expand.h 996e3f954aeeb8d7543e5f2fea44df7d gcc/omp-general.c 9b5747816823c44340c559fe9034bd42 gcc/omp-general.h eec49c45264ffe98078e1790dde1d085 gcc/omp-grid.c 58dec197c27b0fe6b637589c91ce6570 gcc/omp-grid.h ! 772b9b0314cb4a4fa9f4eb76cf1780f4 gcc/omp-low.c d8bb78f41734f384394b7458c6980f00 gcc/omp-low.h c44ad711e41ca3278cc397873a44b2fd gcc/omp-offload.c fc27509534cd1450c6222e58845bcdbc gcc/omp-offload.h *************** ce3203c7c65c8263219fbffa1ff0ef86 gcc/op *** 5741,5759 **** 1f74c7600f0c443bd2a7cdca35da4876 gcc/optabs-query.h 23481dbab0df3d241ff9621eefb0f5c3 gcc/optabs-tree.c 94e973433ee0ce514bc9f632a4c19f18 gcc/optabs-tree.h ! 96a6beaa95b43c879f010718817d9521 gcc/optabs.c a630396c73c1da2c58720ee05affceab gcc/optabs.def 223e4d121c4d9d6d042026e30b09fd70 gcc/optabs.h a0dde41e8d529a09be349c6cef989ef7 gcc/optc-gen.awk ! a338c39751f95cfbf684b502ef6e0c48 gcc/optc-save-gen.awk 6df41233837644dd3bdc263f625fb944 gcc/opth-gen.awk 48520c0760111cf85fb1be4912b78d8a gcc/optinfo-emit-json.cc d287cce3219121596e708cf96a5379e3 gcc/optinfo-emit-json.h 92d593cb5e650fa79d86c14117ac794a gcc/optinfo.cc aced1909ce22d0d2abaf931cb20a7d9c gcc/optinfo.h ! c3ba56dedec8e14dcfb5d90c45476fac gcc/opts-common.c 1df7723e0e429b5782fab606f607a6ed gcc/opts-diagnostic.h 4d01c863898bf8c7c8ae1e51a829c669 gcc/opts-global.c 4f86708eb9ba3499c3e2cf786f37aca8 gcc/opts.c b9db66046cc8d424df631c6e6125c3ad gcc/opts.h dad5ae63231bd35e23b9877dbb8c82ae gcc/ordered-hash-map-tests.cc --- 5742,5761 ---- 1f74c7600f0c443bd2a7cdca35da4876 gcc/optabs-query.h 23481dbab0df3d241ff9621eefb0f5c3 gcc/optabs-tree.c 94e973433ee0ce514bc9f632a4c19f18 gcc/optabs-tree.h ! ec07c4219a59c129cea8256bc6bb4278 gcc/optabs.c a630396c73c1da2c58720ee05affceab gcc/optabs.def 223e4d121c4d9d6d042026e30b09fd70 gcc/optabs.h a0dde41e8d529a09be349c6cef989ef7 gcc/optc-gen.awk ! 4cb7a90a6dd0d5c0182967b836a0f7b3 gcc/optc-save-gen.awk 6df41233837644dd3bdc263f625fb944 gcc/opth-gen.awk 48520c0760111cf85fb1be4912b78d8a gcc/optinfo-emit-json.cc d287cce3219121596e708cf96a5379e3 gcc/optinfo-emit-json.h 92d593cb5e650fa79d86c14117ac794a gcc/optinfo.cc aced1909ce22d0d2abaf931cb20a7d9c gcc/optinfo.h ! 48f2c436bda6b349fc403c07f9478bd1 gcc/opts-common.c 1df7723e0e429b5782fab606f607a6ed gcc/opts-diagnostic.h 4d01c863898bf8c7c8ae1e51a829c669 gcc/opts-global.c + abb990f120fd8b648831963db6ecec8c gcc/opts-jobserver.h 4f86708eb9ba3499c3e2cf786f37aca8 gcc/opts.c b9db66046cc8d424df631c6e6125c3ad gcc/opts.h dad5ae63231bd35e23b9877dbb8c82ae gcc/ordered-hash-map-tests.cc *************** f9634d3f1151e564d7cb0fc885b12d5e gcc/pa *** 5766,5772 **** 1f2be2b4db63158092aa9a432324b9f4 gcc/plugin.c 1a2ee442016e04c400c5b1ecfa2b6f7a gcc/plugin.def d57e52d4dd66ce4213264b80d2489b27 gcc/plugin.h ! 05b85e067c3c82a4712a30397cf623b3 gcc/po/ChangeLog 1c98342dfff1dce80a9f3dd527d40985 gcc/po/EXCLUDES df8eb609dbb028d033b7d05185cc0715 gcc/po/be.gmo f0d7b1b3080241060878bfbc2536042b gcc/po/be.po --- 5768,5774 ---- 1f2be2b4db63158092aa9a432324b9f4 gcc/plugin.c 1a2ee442016e04c400c5b1ecfa2b6f7a gcc/plugin.def d57e52d4dd66ce4213264b80d2489b27 gcc/plugin.h ! 0017318759ac8dc48ffdbe2b292a3bdc gcc/po/ChangeLog 1c98342dfff1dce80a9f3dd527d40985 gcc/po/EXCLUDES df8eb609dbb028d033b7d05185cc0715 gcc/po/be.gmo f0d7b1b3080241060878bfbc2536042b gcc/po/be.po *************** b00cda2a43bec932dc26a7a62d2433e4 gcc/po *** 5812,5818 **** 653045738566582cf810de3860dc9cb8 gcc/poly-int.h b63265778fad2e12ae472e77541500e0 gcc/postreload-gcse.c cf68dd5d621e98ff7a6600dd831ecae8 gcc/postreload.c ! f2c1800ed41bd812f0023ec9476be06f gcc/predict.c 2d7027b865f15345d18016536def0e97 gcc/predict.def 3ffe5c036e76418548382910f68886ff gcc/predict.h ffa0ac5f57de240c2aff1e32b7a30632 gcc/prefix.c --- 5814,5820 ---- 653045738566582cf810de3860dc9cb8 gcc/poly-int.h b63265778fad2e12ae472e77541500e0 gcc/postreload-gcse.c cf68dd5d621e98ff7a6600dd831ecae8 gcc/postreload.c ! a6724b54f9eb80cfe30c4d8f27c9722c gcc/predict.c 2d7027b865f15345d18016536def0e97 gcc/predict.def 3ffe5c036e76418548382910f68886ff gcc/predict.h ffa0ac5f57de240c2aff1e32b7a30632 gcc/prefix.c *************** eba2922f65dc437f981d495af9aea3e3 gcc/re *** 5843,5855 **** 92b92805d57b18955d48576ec085dd07 gcc/realmpfr.h ea54106d519e178742fdc5983d50e3a3 gcc/recog.c f9b0b9ccb8dce0dc6e8bd42ac39df744 gcc/recog.h ! 8e54776d694e025778117e5c6cd2b732 gcc/ree.c befe5e6a24516f07a0b1a18ea35c02d6 gcc/reg-notes.def ! bb6e216fc486b5cadc4ece706f7f2121 gcc/reg-stack.c a4113db63806c0f59f4609855b310ec3 gcc/regcprop.c bde5467e48834f6809fe9cb47c41a8ca gcc/regcprop.h 1420eec348e2fde96d1e5acc37e1d4b6 gcc/reginfo.c ! 8f4fe2c17357e9685afb16fbfadd234d gcc/regrename.c bcbdd3b92acf14e4567d6d593f2135c7 gcc/regrename.h 0e8e6cb957a6286f48af42a43766157c gcc/regs.h 54bdd1fa2150c00899466f5e44c3be07 gcc/regset.h --- 5845,5857 ---- 92b92805d57b18955d48576ec085dd07 gcc/realmpfr.h ea54106d519e178742fdc5983d50e3a3 gcc/recog.c f9b0b9ccb8dce0dc6e8bd42ac39df744 gcc/recog.h ! 13b601f358fb0936341507675500fcec gcc/ree.c befe5e6a24516f07a0b1a18ea35c02d6 gcc/reg-notes.def ! 80e4c090284f2fac2d78f97d7172e4c7 gcc/reg-stack.c a4113db63806c0f59f4609855b310ec3 gcc/regcprop.c bde5467e48834f6809fe9cb47c41a8ca gcc/regcprop.h 1420eec348e2fde96d1e5acc37e1d4b6 gcc/reginfo.c ! 77ffb1da89ad79e20a2ef2dd657e26ce gcc/regrename.c bcbdd3b92acf14e4567d6d593f2135c7 gcc/regrename.h 0e8e6cb957a6286f48af42a43766157c gcc/regs.h 54bdd1fa2150c00899466f5e44c3be07 gcc/regset.h *************** e9a50b2c00f0d8821b4f357433f75ddf gcc/rt *** 5878,5884 **** 0116c6ac7b1b875e47af238fec34212c gcc/run-rtl-passes.h 5dfa17f81fb7790b86c349c236b4f44e gcc/sancov.c f240987e980f287b9805cfc2d5fd984a gcc/sanitizer.def ! b3b3edd8d449c633bc57a13b92adaf4c gcc/sanopt.c 373f74032e8a5f451fed82a6278199be gcc/sbitmap.c 483913290dec10f928e898c49a41451a gcc/sbitmap.h 557abf726d1b4112b7487455dca2835d gcc/sched-deps.c --- 5880,5886 ---- 0116c6ac7b1b875e47af238fec34212c gcc/run-rtl-passes.h 5dfa17f81fb7790b86c349c236b4f44e gcc/sancov.c f240987e980f287b9805cfc2d5fd984a gcc/sanitizer.def ! 4d16770be4b87b92bda1fe15b8163f01 gcc/sanopt.c 373f74032e8a5f451fed82a6278199be gcc/sbitmap.c 483913290dec10f928e898c49a41451a gcc/sbitmap.h 557abf726d1b4112b7487455dca2835d gcc/sched-deps.c *************** b1acddcdb2c4787992303ad7d35aa2d5 gcc/se *** 5891,5897 **** 0913097b5f6ecae7b8a67c820b11c507 gcc/sel-sched-ir.h 08d85de316f6a959a7d7305e10681aef gcc/sel-sched.c 275948e3a332ad16e6906f53167f589a gcc/sel-sched.h ! d02d17a85e55fa53a7b465e813d7c4ab gcc/selftest-diagnostic.c a89173f7d4cb511e9eb93ef251ea5e11 gcc/selftest-diagnostic.h 74da6a05d71b05ca05670ee73c0d04cb gcc/selftest-rtl.c 93aa8133ebc4486ccc93e798fe8ca630 gcc/selftest-rtl.h --- 5893,5899 ---- 0913097b5f6ecae7b8a67c820b11c507 gcc/sel-sched-ir.h 08d85de316f6a959a7d7305e10681aef gcc/sel-sched.c 275948e3a332ad16e6906f53167f589a gcc/sel-sched.h ! 3298f2610d3dffd3db54b50e42085413 gcc/selftest-diagnostic.c a89173f7d4cb511e9eb93ef251ea5e11 gcc/selftest-diagnostic.h 74da6a05d71b05ca05670ee73c0d04cb gcc/selftest-rtl.c 93aa8133ebc4486ccc93e798fe8ca630 gcc/selftest-rtl.h *************** cbb758f617ea43fc42398026a1f8180e gcc/st *** 5931,5937 **** bfdca4569d35709ce75da33b94ac2e70 gcc/stringpool.h 9e6308f2e503cd91a233707e5ed2ce2b gcc/substring-locations.c e4a560b5e6e370fac3e19056516f5d6a gcc/substring-locations.h ! 4ed30ac7489a61ef5a3917e251049626 gcc/symbol-summary.h 6a6e3a4f5b2ad563805d660e4cee5687 gcc/symtab.c 15199dc71e42c38afeb48e52386cd7c9 gcc/sync-builtins.def 7cbf7fc7e93019e864ca3804aadb5329 gcc/system.h --- 5933,5939 ---- bfdca4569d35709ce75da33b94ac2e70 gcc/stringpool.h 9e6308f2e503cd91a233707e5ed2ce2b gcc/substring-locations.c e4a560b5e6e370fac3e19056516f5d6a gcc/substring-locations.h ! d870a1c4f70fc4fbe65ca2a548affcde gcc/symbol-summary.h 6a6e3a4f5b2ad563805d660e4cee5687 gcc/symtab.c 15199dc71e42c38afeb48e52386cd7c9 gcc/sync-builtins.def 7cbf7fc7e93019e864ca3804aadb5329 gcc/system.h *************** e2164620d88b7b5e86874b70ea560f64 gcc/ta *** 5945,5951 **** d4582a9831d4b16fe13326c8c145c4e5 gcc/targhooks.c 7bbf8e5d152f6a9369b8fad9f737885a gcc/targhooks.h f39fcaa8197187283ccfed40107b426d gcc/testsuite/.gitattributes ! 4ac36cd7082157fc2a61769c67f655b4 gcc/testsuite/ChangeLog 862f04afbd87da2cc6bc432c3f28430f gcc/testsuite/ChangeLog-1993-2007 029a5d8dacd25eb5d4711452ac448e5b gcc/testsuite/ChangeLog-2008 13ac28c41d51b66b4ec40dba6bd50f39 gcc/testsuite/ChangeLog-2009 --- 5947,5953 ---- d4582a9831d4b16fe13326c8c145c4e5 gcc/targhooks.c 7bbf8e5d152f6a9369b8fad9f737885a gcc/targhooks.h f39fcaa8197187283ccfed40107b426d gcc/testsuite/.gitattributes ! d0b5249fc7459541cd6b02992019f14d gcc/testsuite/ChangeLog 862f04afbd87da2cc6bc432c3f28430f gcc/testsuite/ChangeLog-1993-2007 029a5d8dacd25eb5d4711452ac448e5b gcc/testsuite/ChangeLog-2008 13ac28c41d51b66b4ec40dba6bd50f39 gcc/testsuite/ChangeLog-2009 *************** e68c59b3c604b0f464d1f4c02629a7a5 gcc/te *** 8740,8745 **** --- 8742,8748 ---- fc40f165305f408a7e0fc682ac4e4e21 gcc/testsuite/c-c++-common/Wshift-overflow-8.c f6687e96d1a359321b94d5babcf73720 gcc/testsuite/c-c++-common/Wshift-overflow-9.c 2095424b6b86a7ddbae9c94c16fa2157 gcc/testsuite/c-c++-common/Wsign-compare-1.c + baefeae8b123d7fff8e835b68ec75bf4 gcc/testsuite/c-c++-common/Wsign-compare-2.c 40bc1e540d092c06d14dc9842ee9cd03 gcc/testsuite/c-c++-common/Wsign-conversion-1.c de15cabafc30a00e81c083c9a9428ac8 gcc/testsuite/c-c++-common/Wsizeof-pointer-div.c 32df34b1472bcfdea6e41e9ce2f31d7c gcc/testsuite/c-c++-common/Wsizeof-pointer-memaccess1.c *************** ef95b2391ac4310fde10257ba4f7463b gcc/te *** 8953,8958 **** --- 8956,8962 ---- 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 + 856043e4093da5eee730f0219ccb9f99 gcc/testsuite/c-c++-common/cold-2.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 *************** f10bae63863004428ff4b3fbefab335e gcc/te *** 9382,9387 **** --- 9386,9392 ---- f0e8744f81b4bd363089960ae8a6bbb6 gcc/testsuite/c-c++-common/gomp/doacross-2.c c9f7d4328381112d463ae5d7abf05d6b gcc/testsuite/c-c++-common/gomp/doacross-3.c b80b407c1b236d995633edd987b92089 gcc/testsuite/c-c++-common/gomp/doacross-4.c + db5184f418f1fcff4229563335cdcac7 gcc/testsuite/c-c++-common/gomp/doacross-8.c 5a70f931f3d1911a210ec6155240d4dc gcc/testsuite/c-c++-common/gomp/element-1.c b4b404945f33512628e60c9ebd9b767a gcc/testsuite/c-c++-common/gomp/flush-1.c 3ed4af2aec57a7165a1a730e299b4935 gcc/testsuite/c-c++-common/gomp/flush-2.c *************** c8eb196146424dae7866984b548de18b gcc/te *** 9434,9439 **** --- 9439,9446 ---- 345ac275dfe65e2e8ba683d2c389ebc3 gcc/testsuite/c-c++-common/gomp/pr101535-1.c b3c3fe5a4ecc31231711cb240274d62c gcc/testsuite/c-c++-common/gomp/pr101535-2.c 5d5843e74a197943e19c270c43a913e1 gcc/testsuite/c-c++-common/gomp/pr102431.c + 1164bc26f7382179d1bd6b607af1d336 gcc/testsuite/c-c++-common/gomp/pr106981.c + 8f995161beda01326e712ba172a760f8 gcc/testsuite/c-c++-common/gomp/pr107001.c e16ef156ad193ef1f3cba60ad16e57ab gcc/testsuite/c-c++-common/gomp/pr51360.c 84c977571aeb43c0224137efe7f5b213 gcc/testsuite/c-c++-common/gomp/pr53580.c 28bfd873981083756a16f70fdb0b86db gcc/testsuite/c-c++-common/gomp/pr54017.c *************** ae2fa528701d8a7118d0446869032faa gcc/te *** 9575,9580 **** --- 9582,9589 ---- 3b77bbb422eaff74de51c6cd92512232 gcc/testsuite/c-c++-common/pr103881.c f7797890edb72db96871a3c3582464f4 gcc/testsuite/c-c++-common/pr105186.c d5189fe9f7cb5f4a822563c9d438762d gcc/testsuite/c-c++-common/pr105998.c + 01a09737cb2c3c4ba35d97feda5c3aeb gcc/testsuite/c-c++-common/pr107358.c + e1ef9c58498f72552b0ec84751024b54 gcc/testsuite/c-c++-common/pr107465.c f5dce8e27cfb8a6bfffe57596fecb796 gcc/testsuite/c-c++-common/pr19807-1.c 325d7c32f3748e10d55ba2faba3f1ce2 gcc/testsuite/c-c++-common/pr19807-2.c fb902cfe5a28251e99c554d18fb797e4 gcc/testsuite/c-c++-common/pr19807-3.c *************** e0634fac709f26330953f3dcafaa2394 gcc/te *** 9778,9783 **** --- 9787,9793 ---- 87b3bbe050a2e54c8aa76908ea34822d gcc/testsuite/c-c++-common/pr95903.c 0ff677a7f94c47b0db47cc14f3e6f746 gcc/testsuite/c-c++-common/pr96369.c e7da4642e25c14b28d3cbf86173d69a5 gcc/testsuite/c-c++-common/pr96545.c + 81e319f6287462f1138a4fa254bcfda0 gcc/testsuite/c-c++-common/pr97498.c 7859693e4c5c966ac09c6aa874fe5eb9 gcc/testsuite/c-c++-common/pr98556.c b0ba836310044e7b419ef679f0b48d6f gcc/testsuite/c-c++-common/raw-string-1.c 554e7071d2525351de28445762633866 gcc/testsuite/c-c++-common/raw-string-10.c *************** e421ddf2d69b41e79c4238d86ca23e02 gcc/te *** 10024,10029 **** --- 10034,10040 ---- 701ee447bdcb3bdd63f4e19e0aa275c7 gcc/testsuite/c-c++-common/ubsan/div-by-zero-5.c f1d5ba00cab5b6e91752dc500c497bad gcc/testsuite/c-c++-common/ubsan/div-by-zero-6.c be42c7c0119ada6c8b75859883b7947d gcc/testsuite/c-c++-common/ubsan/div-by-zero-7.c + 1a58dcff8d9551745c7d182be6aae836 gcc/testsuite/c-c++-common/ubsan/div-by-zero-8.c 8d9e9d9d9f81061daf513b5ba1554c80 gcc/testsuite/c-c++-common/ubsan/float-cast-overflow-1.c 96159bb28961f7d226730c47d4f46b1c gcc/testsuite/c-c++-common/ubsan/float-cast-overflow-10.c 412e240273773d78a1d355e70f1bb47f gcc/testsuite/c-c++-common/ubsan/float-cast-overflow-11.c *************** a5ce11f6f7a1de2ab9382765eaae19a9 gcc/te *** 11856,11861 **** --- 11867,11873 ---- 9b22329501cdc0c04eb177944b0b9482 gcc/testsuite/g++.dg/cpp0x/constexpr-pedantic.C 21cafe90c117f963b0c4d2102a2109a0 gcc/testsuite/g++.dg/cpp0x/constexpr-pmf1.C a53083b794641f9adbc3c1129a42b34c gcc/testsuite/g++.dg/cpp0x/constexpr-pmf2.C + ed870223b56ec38bcfc2366465b34c09 gcc/testsuite/g++.dg/cpp0x/constexpr-pmf3.C 71bf544adf239f884a43b6d72e78604e gcc/testsuite/g++.dg/cpp0x/constexpr-pos1.C e29b90d7c0ad7662446a6055addb6315 gcc/testsuite/g++.dg/cpp0x/constexpr-potential1.C a82ef0f27014a7256099b10bb3cb2b1a gcc/testsuite/g++.dg/cpp0x/constexpr-ptrcomp1.C *************** f520b3c677602a9f4bb925811947dd27 gcc/te *** 12215,12220 **** --- 12227,12233 ---- 4314a939d182c8ee315404a2d9cf3ec3 gcc/testsuite/g++.dg/cpp0x/enum4.C 1180e3480996d107ee707434d64528e0 gcc/testsuite/g++.dg/cpp0x/enum40.C 04d281e3cb2c000a5e49e2b16f623027 gcc/testsuite/g++.dg/cpp0x/enum41.C + 04dc1d4fe43005d4de8c5865ec895953 gcc/testsuite/g++.dg/cpp0x/enum43.C 771003df84c0886c950718b7f6d81033 gcc/testsuite/g++.dg/cpp0x/enum5.C 67ec15297186c0dc5b419618c460a2f2 gcc/testsuite/g++.dg/cpp0x/enum6.C 2b0985c5003a3baf1ba60c7c38770636 gcc/testsuite/g++.dg/cpp0x/enum7.C *************** cd0880983dc32cb469f470728ae8b22b gcc/te *** 12650,12655 **** --- 12663,12669 ---- 8fc3ab70c2058568fbe8578145b021ae gcc/testsuite/g++.dg/cpp0x/lambda/lambda-const-this.C 1d85414b94d2d104004fc7341b90a896 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-const.C 26a3a7d7fa8662de4df1454d0f3eea85 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-const10.C + 692c149205d32e7263c8778ba131c9dc gcc/testsuite/g++.dg/cpp0x/lambda/lambda-const11.C 64bc761abc3783521fdfb26f930f3410 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-const2.C e513b4dcc45e6063745c03c7c99151fa gcc/testsuite/g++.dg/cpp0x/lambda/lambda-const3.C 1ced7b3231f38cc9948cc247893ffec1 gcc/testsuite/g++.dg/cpp0x/lambda/lambda-const4.C *************** dbb54b67a2672d41d2a9ce040685f064 gcc/te *** 12947,12952 **** --- 12961,12967 ---- b950d7f903d3f69a347ad242cbfee61d gcc/testsuite/g++.dg/cpp0x/noexcept61.C d4b0d9f048e8a94c9bc255582c53738a gcc/testsuite/g++.dg/cpp0x/noexcept62.C eae74812dc8afb850498c1fb2e6dc011 gcc/testsuite/g++.dg/cpp0x/noexcept63.C + 8e3444aa5b9c9f35186b3ad1658c800d gcc/testsuite/g++.dg/cpp0x/noexcept68.C 02e09b143c63de3a81f9191fa6e9404d gcc/testsuite/g++.dg/cpp0x/noexcept70.C 3bf83ccb654cedbb57a45851fb14aa9d gcc/testsuite/g++.dg/cpp0x/nolinkage1.C 6b7c91b931bbdacbbffbf9b90a79bc6a gcc/testsuite/g++.dg/cpp0x/nolinkage1.h *************** ec3fccada021f17376f5255d71d5545b gcc/te *** 13092,13097 **** --- 13107,13113 ---- a174690fe306aaf345b02df91c3ddebe gcc/testsuite/g++.dg/cpp0x/parse2.C 6802ea11c1f5811ef4a3d0490040dcc1 gcc/testsuite/g++.dg/cpp0x/pr102305.C 0f5046ead85037afdaba1b501accc894 gcc/testsuite/g++.dg/cpp0x/pr105256.C + fa773bb98628f5c9f0fa9d8d8b29beda gcc/testsuite/g++.dg/cpp0x/pr107065.C 26dea799d49ce223a0c4130a3c955271 gcc/testsuite/g++.dg/cpp0x/pr31431-2.C 4d1da29b669bf3178b3987abce4d58b1 gcc/testsuite/g++.dg/cpp0x/pr31431.C d65e06a3830e2b511cc25692b94615a1 gcc/testsuite/g++.dg/cpp0x/pr31432.C *************** f3e3d98fcbe616df26f26eb779c66c1f gcc/te *** 14028,14033 **** --- 14044,14050 ---- 5f47973cdaddb1d27f6ea767e7275723 gcc/testsuite/g++.dg/cpp1y/complex_literals2.C a1995c633dded5a3445bad4fcc3b55cf gcc/testsuite/g++.dg/cpp1y/complex_literals2a.C 6193cad472a1684eae83fead9fc5d0d7 gcc/testsuite/g++.dg/cpp1y/constexpr-104513.C + afbdcf440b8da95f919e745c0f3a85d1 gcc/testsuite/g++.dg/cpp1y/constexpr-105774.C 2d72668eefa5659edd32ef8dabc1c48e gcc/testsuite/g++.dg/cpp1y/constexpr-50060.C d3ca7557e59bd6b82fae38b637088145 gcc/testsuite/g++.dg/cpp1y/constexpr-66093.C 9ecc58eab147adafbf3780c51ed706fc gcc/testsuite/g++.dg/cpp1y/constexpr-70265-1.C *************** af1e704cf45a12bb8c7e2865e6b7debc gcc/te *** 14758,14763 **** --- 14775,14782 ---- 483e3caa4572c2f88ee6dff747cf3056 gcc/testsuite/g++.dg/cpp1z/decomp53.C 46ef66cc9a593b59b8b3f161586b0533 gcc/testsuite/g++.dg/cpp1z/decomp54.C 9e963a76a6e736436964ce0e71d75f41 gcc/testsuite/g++.dg/cpp1z/decomp55.C + 7473f4d78f4cab74d8165611ea38a63d gcc/testsuite/g++.dg/cpp1z/decomp57.C + 055f4b76f99d823ab62ec060da73a672 gcc/testsuite/g++.dg/cpp1z/decomp58.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 *************** a53a61e2c3773add424075de3343c370 gcc/te *** 14787,14792 **** --- 14806,14812 ---- 948a131387412e7ed7b39e35fce2096a gcc/testsuite/g++.dg/cpp1z/fold1.C c74b2113efcb17ebf1be773837691046 gcc/testsuite/g++.dg/cpp1z/fold10.C ba52c35faa435abd9cb368147dc00857 gcc/testsuite/g++.dg/cpp1z/fold11.C + fa4ff7e96ff3b0d8cb7114d58f8127ac gcc/testsuite/g++.dg/cpp1z/fold13.C 5e8f1589e281e551eba15be5ad14bd8b gcc/testsuite/g++.dg/cpp1z/fold2.C a33f917557c76cefc8e7e59dedbf0a4e gcc/testsuite/g++.dg/cpp1z/fold3.C 954117a731946951912acd1615190810 gcc/testsuite/g++.dg/cpp1z/fold4.C *************** d5097890520de2a85ebd837650f33a25 gcc/te *** 14799,14804 **** --- 14819,14825 ---- fade45a91157c646e6940a215501f1c9 gcc/testsuite/g++.dg/cpp1z/gen-attrs1.C ac9f13854ea3e455a1371aaa819ee22a gcc/testsuite/g++.dg/cpp1z/has-unique-obj-representations1.C 5f34b6f6c6b9801ac84fd35a7072c291 gcc/testsuite/g++.dg/cpp1z/has-unique-obj-representations2.C + 9f9fa73c4ae67e4de5904663c140998d gcc/testsuite/g++.dg/cpp1z/has-unique-obj-representations3.C 712e0c3f886fdb90e5e03d39bd877f92 gcc/testsuite/g++.dg/cpp1z/inh-ctor1.C a5a039fe3394138160509efa1a2212c5 gcc/testsuite/g++.dg/cpp1z/inh-ctor22.C b303784bcf07c99011e96f0a6da77c55 gcc/testsuite/g++.dg/cpp1z/inh-ctor23.C *************** deed6bb16468a074e8deea737b77814c gcc/te *** 15371,15376 **** --- 15392,15398 ---- a5ab0c1acf96ddc777b5af2b1b69b23d gcc/testsuite/g++.dg/cpp2a/constinit13.C 5e9f60a6078f56890912afa5a6db1738 gcc/testsuite/g++.dg/cpp2a/constinit14.C cd69d28fbc3005238abfb4b0ee371d68 gcc/testsuite/g++.dg/cpp2a/constinit15.C + 5f1a0d190f7b063f2ab37e1844af8991 gcc/testsuite/g++.dg/cpp2a/constinit18.C 9f7da905ea744d36251021c627953aa7 gcc/testsuite/g++.dg/cpp2a/constinit2.C 32bcf9ec13340c1d190f07fe25a3be4e gcc/testsuite/g++.dg/cpp2a/constinit3.C fbb9a6e7ceb354ed7018b9bdfce8059f gcc/testsuite/g++.dg/cpp2a/constinit4.C *************** d0524cdec70fb41523aae371548f0249 gcc/te *** 15691,15701 **** fc875772e280d6860400721ab59c2a23 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-neg.C 99c1330ed710ed734bb2976909ac6cd2 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-neg2.C 4d45da3e24f1267e48c17658fd5bb4a9 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp.C ! 75b74988ee548efb6f2a0e209db0c83f gcc/testsuite/g++.dg/cpp2a/volatile1.C 8e4abc5980a05aa68b936cca386e4618 gcc/testsuite/g++.dg/cpp2a/volatile2.C ! 38a1560b8b9b22be4d576d30a8cef4c3 gcc/testsuite/g++.dg/cpp2a/volatile3.C 552e3d266c035e0dbeca3c878bc5a2f5 gcc/testsuite/g++.dg/cpp2a/volatile4.C ! 96dafb009a7feee933cad2b35c2cccf6 gcc/testsuite/g++.dg/cpp2a/volatile5.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 --- 15713,15723 ---- fc875772e280d6860400721ab59c2a23 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-neg.C 99c1330ed710ed734bb2976909ac6cd2 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp-neg2.C 4d45da3e24f1267e48c17658fd5bb4a9 gcc/testsuite/g++.dg/cpp2a/udlit-class-nttp.C ! a99413b8c7db8bdf53b4b3c901346812 gcc/testsuite/g++.dg/cpp2a/volatile1.C 8e4abc5980a05aa68b936cca386e4618 gcc/testsuite/g++.dg/cpp2a/volatile2.C ! 3fa8ac8868e5ba1230d5ea9f4490bfef gcc/testsuite/g++.dg/cpp2a/volatile3.C 552e3d266c035e0dbeca3c878bc5a2f5 gcc/testsuite/g++.dg/cpp2a/volatile4.C ! 9857faea61370aed22b9ca9ef059dcd8 gcc/testsuite/g++.dg/cpp2a/volatile5.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 *************** c7ffd1dd0ae40378732be3ac8729a37c gcc/te *** 15791,15796 **** --- 15813,15819 ---- 804b19b7b58e86e4e92d0018c08cf7b7 gcc/testsuite/g++.dg/debug/dwarf2/noreturn-function.C b3cbbd79d5ff077a6732280d76b2284e gcc/testsuite/g++.dg/debug/dwarf2/omp-fesdr.C b117227269644a100a7a06bf2bc9bf6f gcc/testsuite/g++.dg/debug/dwarf2/pr101378.C + b43f4d6e4f27dc96c0e870436aa41ff2 gcc/testsuite/g++.dg/debug/dwarf2/pr108716.C 7054dc65c88179389afb9e79cad0df38 gcc/testsuite/g++.dg/debug/dwarf2/pr41063.C 9118e81e091fae9d3d9c8c39a846e724 gcc/testsuite/g++.dg/debug/dwarf2/pr44641.C 90028c65be83718cb8e154df1b502d99 gcc/testsuite/g++.dg/debug/dwarf2/pr45997-1.C *************** a0ac13a0885ee162c972f58ffbd934e7 gcc/te *** 15875,15880 **** --- 15898,15904 ---- 8d1c97a9b811ba8c9a789baf97c48ce4 gcc/testsuite/g++.dg/debug/namespace1.C 98d1fa8a42200722f612a8f915bb9673 gcc/testsuite/g++.dg/debug/namespace2.C c805656a195d9a98cc7141e7db52d9ef gcc/testsuite/g++.dg/debug/nullptr01.C + 57e21034689a45ffd010ec86b2596de5 gcc/testsuite/g++.dg/debug/pr106261.C fcdc9d29f34ff56d1b7de0d55a1eaed7 gcc/testsuite/g++.dg/debug/pr15736.cc d25b84553c2083b28615202497b8f94a gcc/testsuite/g++.dg/debug/pr16792.C 91880dfb66fda0db4ddabf486346b755 gcc/testsuite/g++.dg/debug/pr22514.C *************** f711435274df71049aa71808a78fc7a5 gcc/te *** 17352,17357 **** --- 17376,17383 ---- d9a1f43ca6ac2a073e22bbbf243f300b gcc/testsuite/g++.dg/gomp/parallel-5.C 9950e1331756ada98404843c3491b239 gcc/testsuite/g++.dg/gomp/pr101516.C 3da3560251942b44a47c6e2c267e97f2 gcc/testsuite/g++.dg/gomp/pr102431.C + e1073bec80cbc48fb15e02126aebb2b0 gcc/testsuite/g++.dg/gomp/pr107558.C + 8c2b289e4e3768861822d1f92823a842 gcc/testsuite/g++.dg/gomp/pr108607.C 539bba6df5330b7a6631eca5665a0899 gcc/testsuite/g++.dg/gomp/pr24849.C 78ea34fd7a1a2767f61a703271e7070a gcc/testsuite/g++.dg/gomp/pr25874.C 93a85a09acfdf011a86ff95fc9184a94 gcc/testsuite/g++.dg/gomp/pr25996.C *************** dcecc8a81073a9824c153ff083f81a4a gcc/te *** 17539,17545 **** 012194f3f4441fc0dc8fb4ba94a8882b gcc/testsuite/g++.dg/graphite/pr42681.C dfe63b7d52f6d97e04da25f267ac330c gcc/testsuite/g++.dg/graphite/pr42930.C 4cf735ba9e5b65e201dbbd4ec916b359 gcc/testsuite/g++.dg/graphite/pr43026.C ! c8700f3b3fdd3b41ff1abbf2a2c0186d gcc/testsuite/g++.dg/guality/guality.exp 2e0a2ac35d8a11426ad1e59f818a5d03 gcc/testsuite/g++.dg/guality/guality.h 9f6bd16255ea79978f41ff1fd8300ddc gcc/testsuite/g++.dg/guality/pr46815.C be57153d0806c5827262dfc205d1ddd5 gcc/testsuite/g++.dg/guality/pr55541.C --- 17565,17571 ---- 012194f3f4441fc0dc8fb4ba94a8882b gcc/testsuite/g++.dg/graphite/pr42681.C dfe63b7d52f6d97e04da25f267ac330c gcc/testsuite/g++.dg/graphite/pr42930.C 4cf735ba9e5b65e201dbbd4ec916b359 gcc/testsuite/g++.dg/graphite/pr43026.C ! 7f8029fc072a029c7f784a7a650dbe75 gcc/testsuite/g++.dg/guality/guality.exp 2e0a2ac35d8a11426ad1e59f818a5d03 gcc/testsuite/g++.dg/guality/guality.h 9f6bd16255ea79978f41ff1fd8300ddc gcc/testsuite/g++.dg/guality/pr46815.C be57153d0806c5827262dfc205d1ddd5 gcc/testsuite/g++.dg/guality/pr55541.C *************** b25b382db37739c81869b75df02687cf gcc/te *** 17921,17926 **** --- 17947,17953 ---- 89bc34eae0365b381ab82e8d4ca5957f gcc/testsuite/g++.dg/init/pr43890.C f660de16a9cf160558064bb92eb21901 gcc/testsuite/g++.dg/init/pr44086.C 880ee6b08cc835f2a1db0bae613e7a23 gcc/testsuite/g++.dg/init/pr48859.C + 326a48b27d057d316de2e35aec05d132 gcc/testsuite/g++.dg/init/pr53932.C aa6fb39dc7128d68580ac96eb833e456 gcc/testsuite/g++.dg/init/pr55497.C c835d50eaf5fe1a2b052a1579b5ce77f gcc/testsuite/g++.dg/init/pr58811.C f25ce72283c3004e08c0df4685ca2469 gcc/testsuite/g++.dg/init/pr60572.C *************** c50416bd024b7f394ccf13b2af42d6e9 gcc/te *** 18298,18303 **** --- 18325,18331 ---- 704751cfdbae3f06f685612f201610a7 gcc/testsuite/g++.dg/lookup/friend2.C 6c4b3ee38e0ef8c73906d3d6ef93c86e gcc/testsuite/g++.dg/lookup/friend20.C a484b9799b124bf970c056c966db32e6 gcc/testsuite/g++.dg/lookup/friend21.C + 2212655cd503f3dbf25bf127bc32e45f gcc/testsuite/g++.dg/lookup/friend24.C e51e64a92ddf4c4d012cb738bf62fde5 gcc/testsuite/g++.dg/lookup/friend3.C 96ad222df48d0097eb84d66dbf37d17d gcc/testsuite/g++.dg/lookup/friend4.C 187ba092057b229619d98cf5e000c6e1 gcc/testsuite/g++.dg/lookup/friend5.C *************** cf9e1c6c02a4aee1d10b86325166de66 gcc/te *** 18988,18993 **** --- 19016,19023 ---- b7d92853a5faa70c9b8f4e124609991d gcc/testsuite/g++.dg/opt/pr100148.C b599b75470b905e959a7172363b13d69 gcc/testsuite/g++.dg/opt/pr100254.C 4821bda808ec2c117c297e4f155752e3 gcc/testsuite/g++.dg/opt/pr104681.C + 0fd8014a8bf41063904c9006c6d3f334 gcc/testsuite/g++.dg/opt/pr108365.C + 2613159e61afceaa9e7ace58beef53f4 gcc/testsuite/g++.dg/opt/pr108854.C 2896f5b1a96dd9fabb1dbb65cb4c5921 gcc/testsuite/g++.dg/opt/pr13066-1.C 4f87f86b9f018cae74888e97468b2fe0 gcc/testsuite/g++.dg/opt/pr14029.C 8fb7e68e9e9b5eb02628e03f5333e645 gcc/testsuite/g++.dg/opt/pr14888.C *************** c196198d50bad93b87f24ccaf1c0ee15 gcc/te *** 20427,20444 **** 2925678828b854c5f2a448d4d34d8e08 gcc/testsuite/g++.dg/pr64688.C 951008bcdb44de20d54de2c9a99575df gcc/testsuite/g++.dg/pr65032.C 2a99023224d23b7b4c2df438196b9877 gcc/testsuite/g++.dg/pr65049.C ! e806b69344c18eb3f9f4d25e7ef1cbb7 gcc/testsuite/g++.dg/pr65240-1.C ! ee3a7e458d7954444a8959c8662bdeba gcc/testsuite/g++.dg/pr65240-2.C ! 3a4a8f388dfc83911ec4b20be25740b4 gcc/testsuite/g++.dg/pr65240-3.C ! 185b61c9f9f2771ca0469650321db79c gcc/testsuite/g++.dg/pr65240-4.C ff90a96b0f5bda64aea35147770302e1 gcc/testsuite/g++.dg/pr65240.h ! 0057ba501387c41f5fcb4c3488ae63ac gcc/testsuite/g++.dg/pr65242.C c987d521d6ec4222a0bbaff58ae0df77 gcc/testsuite/g++.dg/pr65295.C 3b4312eed9dd9b2a86eadf1d7beb1e82 gcc/testsuite/g++.dg/pr66655.C d7dba78f8755778892c14ddaf49a9ce9 gcc/testsuite/g++.dg/pr66655.h aa40a4a91073b1035b9353971692e0bc gcc/testsuite/g++.dg/pr66655_1.cc c014278b0e7c6cf72bd8834b1b9d6631 gcc/testsuite/g++.dg/pr66866.C ! e76d57f03d20c287845bd04c939c4d73 gcc/testsuite/g++.dg/pr67211.C af5d9b1cf7a2f7f86d5b6b547f1bc9a9 gcc/testsuite/g++.dg/pr67351.C c15a8cc45a8eaf8903cfaae658dc8822 gcc/testsuite/g++.dg/pr67405.C 61d6f57e830446105d84b6744eecd7eb gcc/testsuite/g++.dg/pr67666.C --- 20457,20474 ---- 2925678828b854c5f2a448d4d34d8e08 gcc/testsuite/g++.dg/pr64688.C 951008bcdb44de20d54de2c9a99575df gcc/testsuite/g++.dg/pr65032.C 2a99023224d23b7b4c2df438196b9877 gcc/testsuite/g++.dg/pr65049.C ! 922496f33a9ac5ccae6f8aa317a02a67 gcc/testsuite/g++.dg/pr65240-1.C ! 8bd9fd039876f7fc1a911c89028258ff gcc/testsuite/g++.dg/pr65240-2.C ! 5ba7c1a90046e9179ea6288129367815 gcc/testsuite/g++.dg/pr65240-3.C ! d50cfc924c3c6bfe48d010f49b0320c5 gcc/testsuite/g++.dg/pr65240-4.C ff90a96b0f5bda64aea35147770302e1 gcc/testsuite/g++.dg/pr65240.h ! 225c688c4f2ead1be77c30e05bf4245c gcc/testsuite/g++.dg/pr65242.C c987d521d6ec4222a0bbaff58ae0df77 gcc/testsuite/g++.dg/pr65295.C 3b4312eed9dd9b2a86eadf1d7beb1e82 gcc/testsuite/g++.dg/pr66655.C d7dba78f8755778892c14ddaf49a9ce9 gcc/testsuite/g++.dg/pr66655.h aa40a4a91073b1035b9353971692e0bc gcc/testsuite/g++.dg/pr66655_1.cc c014278b0e7c6cf72bd8834b1b9d6631 gcc/testsuite/g++.dg/pr66866.C ! 6e5baacb67506374f7db3dffb5272daf gcc/testsuite/g++.dg/pr67211.C af5d9b1cf7a2f7f86d5b6b547f1bc9a9 gcc/testsuite/g++.dg/pr67351.C c15a8cc45a8eaf8903cfaae658dc8822 gcc/testsuite/g++.dg/pr67405.C 61d6f57e830446105d84b6744eecd7eb gcc/testsuite/g++.dg/pr67666.C *************** b76c7ee65b34b2377285a776d351781b gcc/te *** 20457,20470 **** 29300174b10233fd47c932d1ffd4c3bf gcc/testsuite/g++.dg/pr69123.C 72bb8a9ea548aaaada55dbcdb8d6a802 gcc/testsuite/g++.dg/pr69338.C 07ceb93faa4d6543359b7c47e9a5e94a gcc/testsuite/g++.dg/pr69379.C ! 7577b450ba2f8422ac17aa9a168a69c1 gcc/testsuite/g++.dg/pr69667.C 1b19e570cc03e72ec7115cbf16663717 gcc/testsuite/g++.dg/pr69697.C 6574022bacba25e4efad4b7c4931c69a gcc/testsuite/g++.dg/pr70098.C 52e836d540fc39ce14dbc3124fd1ad8e gcc/testsuite/g++.dg/pr70590-2.C d8fba4e6baf8e0880ae882765e1135b4 gcc/testsuite/g++.dg/pr70590.C 5c6cf3e2bb082400e2ca3d17973fdd4b gcc/testsuite/g++.dg/pr70965.C 0b728dae13a5f48195e47018a83c4f35 gcc/testsuite/g++.dg/pr71184.C ! 8b83dfbae2a2ae737596ef723b347d76 gcc/testsuite/g++.dg/pr71294.C dd5b895f9e8e377b3fc861eecf9bdbf7 gcc/testsuite/g++.dg/pr71389.C 6b1ee9b05340152c90e7c09d5b9eb5c2 gcc/testsuite/g++.dg/pr71488.C 8756c72da60c2ac8cdddc20291df82e3 gcc/testsuite/g++.dg/pr71655.C --- 20487,20500 ---- 29300174b10233fd47c932d1ffd4c3bf gcc/testsuite/g++.dg/pr69123.C 72bb8a9ea548aaaada55dbcdb8d6a802 gcc/testsuite/g++.dg/pr69338.C 07ceb93faa4d6543359b7c47e9a5e94a gcc/testsuite/g++.dg/pr69379.C ! 2c2e860fd96f20dc6b16a5da17796c8e gcc/testsuite/g++.dg/pr69667.C 1b19e570cc03e72ec7115cbf16663717 gcc/testsuite/g++.dg/pr69697.C 6574022bacba25e4efad4b7c4931c69a gcc/testsuite/g++.dg/pr70098.C 52e836d540fc39ce14dbc3124fd1ad8e gcc/testsuite/g++.dg/pr70590-2.C d8fba4e6baf8e0880ae882765e1135b4 gcc/testsuite/g++.dg/pr70590.C 5c6cf3e2bb082400e2ca3d17973fdd4b gcc/testsuite/g++.dg/pr70965.C 0b728dae13a5f48195e47018a83c4f35 gcc/testsuite/g++.dg/pr71184.C ! 1c81a3ae2a74a3e67c56f46fd05e05ae gcc/testsuite/g++.dg/pr71294.C dd5b895f9e8e377b3fc861eecf9bdbf7 gcc/testsuite/g++.dg/pr71389.C 6b1ee9b05340152c90e7c09d5b9eb5c2 gcc/testsuite/g++.dg/pr71488.C 8756c72da60c2ac8cdddc20291df82e3 gcc/testsuite/g++.dg/pr71655.C *************** bf14562b088e1e4c01e4050adbd18394 gcc/te *** 20506,20512 **** a8cae2d227c02ee5705e9b5b205bb1d1 gcc/testsuite/g++.dg/pr83979.c 8528aaf5d93c3e6771dcc4828d7264b5 gcc/testsuite/g++.dg/pr84231.C 083c1f5c90058b5d83822264c5d52f0e gcc/testsuite/g++.dg/pr84264.C ! da4464f64c7ae819c4a0629cfaf7095e gcc/testsuite/g++.dg/pr84279.C fcd3d77f2c884effb0321a5b04ff8ca6 gcc/testsuite/g++.dg/pr84492.C 18983b086a2ae1ee8b28131db73bc2fa gcc/testsuite/g++.dg/pr84729.C 75d741968e42202427b6e9c163e5c326 gcc/testsuite/g++.dg/pr84821.C --- 20536,20542 ---- a8cae2d227c02ee5705e9b5b205bb1d1 gcc/testsuite/g++.dg/pr83979.c 8528aaf5d93c3e6771dcc4828d7264b5 gcc/testsuite/g++.dg/pr84231.C 083c1f5c90058b5d83822264c5d52f0e gcc/testsuite/g++.dg/pr84264.C ! 26d10f4b383162ffd9eb468d61656fe3 gcc/testsuite/g++.dg/pr84279.C fcd3d77f2c884effb0321a5b04ff8ca6 gcc/testsuite/g++.dg/pr84492.C 18983b086a2ae1ee8b28131db73bc2fa gcc/testsuite/g++.dg/pr84729.C 75d741968e42202427b6e9c163e5c326 gcc/testsuite/g++.dg/pr84821.C *************** f7e4853292654f0af6a0a460b8924add gcc/te *** 22058,22063 **** --- 22088,22097 ---- 6e16acccf0c9f3e11f613dd140679e49 gcc/testsuite/g++.dg/tls/thread_local12j.C 9eb8b3d800f83f9d7d869d484abd19e6 gcc/testsuite/g++.dg/tls/thread_local12k.C b6d15debf41ad15b105889629ec239cc gcc/testsuite/g++.dg/tls/thread_local12l.C + 172557168cbc67b1f30728843273661b gcc/testsuite/g++.dg/tls/thread_local13-aux.cc + f872c9bb06d86928cee03742631d043b gcc/testsuite/g++.dg/tls/thread_local13.C + 55b421ef887d033e9d55b24ecf73ba9a gcc/testsuite/g++.dg/tls/thread_local14-aux.cc + 10f422a7b298c551b33dc01dd37d0089 gcc/testsuite/g++.dg/tls/thread_local14.C 24b7dce2c6b463d883c54b5a853ce0ad gcc/testsuite/g++.dg/tls/thread_local2.C 6c980c168dd76bd2823f2ec310b5f47b gcc/testsuite/g++.dg/tls/thread_local2g.C 6c7d3f08d2224c4d24f97029d8604655 gcc/testsuite/g++.dg/tls/thread_local3.C *************** ce4f8106ed96ef070bead8ca0df02eea gcc/te *** 22187,22196 **** 4a0b418d1bbb783ee191f2d05263d191 gcc/testsuite/g++.dg/torture/dg-torture.exp fab1470d87fc879a4a285622c057b736 gcc/testsuite/g++.dg/torture/init-list1.C 4054dd6c177ca7971902e3ac60e34695 gcc/testsuite/g++.dg/torture/ipa-cp-1.C ! 37b54578dbb493ce1238308444c1008c gcc/testsuite/g++.dg/torture/ppc-ldst-array.C 3fd9794b761154c19e5b03ca7b0727a1 gcc/testsuite/g++.dg/torture/pr102505.C 674377855743be77a442d6fe11fc86e1 gcc/testsuite/g++.dg/torture/pr103361.C 55421b614773ff9e900b6ad17ffe7df3 gcc/testsuite/g++.dg/torture/pr105189.C 161154ed9f6193a2a7da119e068c3f3f gcc/testsuite/g++.dg/torture/pr27218.C a84e9fff95df4801f8e582fbc33303b8 gcc/testsuite/g++.dg/torture/pr30252.C e980bf95890544d46879b89f7aa98df6 gcc/testsuite/g++.dg/torture/pr30567.C --- 22221,22232 ---- 4a0b418d1bbb783ee191f2d05263d191 gcc/testsuite/g++.dg/torture/dg-torture.exp fab1470d87fc879a4a285622c057b736 gcc/testsuite/g++.dg/torture/init-list1.C 4054dd6c177ca7971902e3ac60e34695 gcc/testsuite/g++.dg/torture/ipa-cp-1.C ! dd60ebe4e09cf5edd91dd360bcbcba8e gcc/testsuite/g++.dg/torture/ppc-ldst-array.C 3fd9794b761154c19e5b03ca7b0727a1 gcc/testsuite/g++.dg/torture/pr102505.C 674377855743be77a442d6fe11fc86e1 gcc/testsuite/g++.dg/torture/pr103361.C 55421b614773ff9e900b6ad17ffe7df3 gcc/testsuite/g++.dg/torture/pr105189.C + 42b175a7c38d6a15012b0e11d9e7457d gcc/testsuite/g++.dg/torture/pr106131.C + 695916482bd1d276cc3c727b90232254 gcc/testsuite/g++.dg/torture/pr109724.C 161154ed9f6193a2a7da119e068c3f3f gcc/testsuite/g++.dg/torture/pr27218.C a84e9fff95df4801f8e582fbc33303b8 gcc/testsuite/g++.dg/torture/pr30252.C e980bf95890544d46879b89f7aa98df6 gcc/testsuite/g++.dg/torture/pr30567.C *************** c051125966f7b3d00fdd612ba7549043 gcc/te *** 23210,23215 **** --- 23246,23252 ---- caf05a8324926e9472342da0584539ad gcc/testsuite/g++.dg/warn/Wignored-attributes-1.C 55295c0bc11e5dffe89757d080280054 gcc/testsuite/g++.dg/warn/Wignored-attributes-2.C a5142c9cd89ebb3502a6adbdb75fa29c gcc/testsuite/g++.dg/warn/Wignored-qualifiers1.C + 90dde3d2eabc1a35285253724486da84 gcc/testsuite/g++.dg/warn/Wignored-qualifiers2.C 223a9cc82cfdc42f62bbb5398c219cc8 gcc/testsuite/g++.dg/warn/Wimplicit-fallthrough-1.C e8496d82a0f58fc4bc26efa7a0a75fd3 gcc/testsuite/g++.dg/warn/Wimplicit-fallthrough-2.C 126f476a9780bcba16781feab90ed2d8 gcc/testsuite/g++.dg/warn/Wimplicit-fallthrough-3.C *************** ea532b8d02c84e413fb770ee0fdd34c7 gcc/te *** 23351,23356 **** --- 23388,23394 ---- 78a781a7fee9227b3174b6dee0ac20b3 gcc/testsuite/g++.dg/warn/Wsequence-point-1.C d0d6c5fe9b201bcd8b68523fbf3f0ce2 gcc/testsuite/g++.dg/warn/Wsequence-point-2.C 21e8a0380962b41685ed2da030d6e679 gcc/testsuite/g++.dg/warn/Wsequence-point-3.C + f09d07e0fd5c0b9c0c417b86039ac382 gcc/testsuite/g++.dg/warn/Wsequence-point-5.C 8fb4b9a6c1d26c1e9bde7782d85ab4db gcc/testsuite/g++.dg/warn/Wsequence-point-pr18050.C 44fe19ff71727efce22e2f732d2ac553 gcc/testsuite/g++.dg/warn/Wshadow-1.C 501d6f433bab53d27b046fc419dcb80a gcc/testsuite/g++.dg/warn/Wshadow-10.C *************** ee6a633cbcb41c7241335ac4002bc5bd gcc/te *** 23689,23694 **** --- 23727,23733 ---- eee589a3fa31332d5466e5037b1a870e gcc/testsuite/g++.dg/warn/pmf1.C c36be50bce1bb66a16eefbbb8eed1e5c gcc/testsuite/g++.dg/warn/pmf2.C ac14aaa010428fa00cd60d6e6bb808c0 gcc/testsuite/g++.dg/warn/pointer-integer-comparison.C + 1ba5741dd0aa023aa23edc39041b235e gcc/testsuite/g++.dg/warn/pr108365.C adea0a023eba0c3c51b6a4894014d35a gcc/testsuite/g++.dg/warn/pr11159.C f257fca4d00c8c67aa2b9d6e43ee906f gcc/testsuite/g++.dg/warn/pr11492.C 5fab7f879534ef351718dc73d825b667 gcc/testsuite/g++.dg/warn/pr12242.C *************** d53cb2073c8f36697f63dfe19779eb13 gcc/te *** 27031,27036 **** --- 27070,27081 ---- f84204eeee088712d5aa5c3265daeced gcc/testsuite/g++.old-deja/old-deja.exp 11ceb0f25bac23f3aab1177dba0175df gcc/testsuite/g++.target/aarch64/aarch64.exp 3bf9651fdd715d050011949283abe2f0 gcc/testsuite/g++.target/aarch64/bfloat_cpp_typecheck.C + c975ccbddf4ad62c5fa9795e339ffb9c gcc/testsuite/g++.target/aarch64/bitfield-abi-warning-align16-O2-extra.C + c89aad61597a03b775b192f6f96fa2c5 gcc/testsuite/g++.target/aarch64/bitfield-abi-warning-align16-O2.C + b8661b94594b14c34e7a8bdd2dc97756 gcc/testsuite/g++.target/aarch64/bitfield-abi-warning-align32-O2-extra.C + 2e25b2e27f54295da04104c2445da319 gcc/testsuite/g++.target/aarch64/bitfield-abi-warning-align32-O2.C + b9257e58ced87b65b17170b8e6ad90ed gcc/testsuite/g++.target/aarch64/bitfield-abi-warning-align8-O2.C + f7378d596bb7308498db40ad34fd8dab gcc/testsuite/g++.target/aarch64/bitfield-abi-warning.h c11e5f97e7a5971cc5c5017024f54496 gcc/testsuite/g++.target/aarch64/diag_aka_1.C 4d5fd415b9746bcd53f093e8282fb37d gcc/testsuite/g++.target/aarch64/no_unique_address_1.C 20b857cf626aad749264f74e19d94347 gcc/testsuite/g++.target/aarch64/no_unique_address_2.C *************** a621b799eff193996043d9d5462e5c27 gcc/te *** 27243,27248 **** --- 27288,27294 ---- 5848d6741a53192ff50fe53e91b24df1 gcc/testsuite/g++.target/nios2/hello-pie.C cf299fb8efec54c0218258732856b164 gcc/testsuite/g++.target/nios2/nios2.exp 2befd7b6b3b422b64609deed67a6306d gcc/testsuite/g++.target/powerpc/powerpc.exp + a873678a5188427c7ceb88e3a408ce84 gcc/testsuite/g++.target/powerpc/pr101322.C 63b698681e4a076eb88feccb3e6373df gcc/testsuite/g++.target/powerpc/pr94707-1.C 75c93ba90b3ca18a6d5c5264e2816651 gcc/testsuite/g++.target/powerpc/pr94707-2.C a63f2ade84bc38838f3986dfc4bc9d85 gcc/testsuite/g++.target/powerpc/pr94707-3.C *************** e89355b99660c53d3dac89eba0ac8986 gcc/te *** 28263,28268 **** --- 28309,28320 ---- 5dd01a3a30ba2b97a934273ca5fe3170 gcc/testsuite/gcc.c-torture/compile/pp.c ede20faf9b203e25b39b7032970f58be gcc/testsuite/gcc.c-torture/compile/pr100305.c 9c461bedf4ba5d689841294e9c5464f6 gcc/testsuite/gcc.c-torture/compile/pr101562.c + 9477024f0d6e7d41ab0ee7d8ab3d3e58 gcc/testsuite/gcc.c-torture/compile/pr106030.c + e12df015117953bcc79bb2bd0912de65 gcc/testsuite/gcc.c-torture/compile/pr106751.c + 591ba0d7b38a8f57d62f0b2928e693c4 gcc/testsuite/gcc.c-torture/compile/pr107997.c + e1a987965f844354ef93e18f546749c9 gcc/testsuite/gcc.c-torture/compile/pr108237.c + 9c6d8cdc69d8f80df1390e153dd3fffc gcc/testsuite/gcc.c-torture/compile/pr108596.c + 531e04fb4e7100e6b28bab7727b5ce6b gcc/testsuite/gcc.c-torture/compile/pr108688-1.c 33c7141fcf5b1add3ddd2be0100f1f0d gcc/testsuite/gcc.c-torture/compile/pr12517.c ec16b12ab11c499bf321be18ea59da33 gcc/testsuite/gcc.c-torture/compile/pr12578.c 86f3d5cf87d24e97aa663b79f2d0ac5d gcc/testsuite/gcc.c-torture/compile/pr12899.c *************** e854bc80f793329b6c96d31e3f80a012 gcc/te *** 30276,30281 **** --- 30328,30335 ---- 5ad23d6cafc55e78896b90e3669a14b8 gcc/testsuite/gcc.c-torture/execute/postmod-1.c 6f562291c92a478431678da451525a90 gcc/testsuite/gcc.c-torture/execute/pr103052.c 8f1a8c89149c065ac6e73140793989be gcc/testsuite/gcc.c-torture/execute/pr104814.c + 6b9abb094fcd9b7fa8d30c4251026072 gcc/testsuite/gcc.c-torture/execute/pr106032.c + 23cbbe0d93f89048f8d1ce1883e61ac2 gcc/testsuite/gcc.c-torture/execute/pr109778.c 7758cb727d75f4fc1c0e483d503de146 gcc/testsuite/gcc.c-torture/execute/pr15262-1.c 58dc249612dbc918d7fc4010e94deb8d gcc/testsuite/gcc.c-torture/execute/pr15262-2.c d9c36fc850771445c5e4b6ce6dae1a12 gcc/testsuite/gcc.c-torture/execute/pr15262.c *************** f1924cd169cc9af518b51afd9f11da82 gcc/te *** 31914,31919 **** --- 31968,31975 ---- 62ddd0ab49b2d8a39773ae7568d8aa74 gcc/testsuite/gcc.dg/asan/pr104449.c 3424b712fda248acb67afe3bbb5dbc46 gcc/testsuite/gcc.dg/asan/pr105214.c 695fe49bfb0b0c5cd4e60ba1a0f27cf6 gcc/testsuite/gcc.dg/asan/pr105396.c + 1a25dd9cb28d8417a3ce246587233c84 gcc/testsuite/gcc.dg/asan/pr106190.c + c3b533151735c602f99cd3d2cb415cf8 gcc/testsuite/gcc.dg/asan/pr107317.c a5e988481cd66b8acf6c610b847cb713 gcc/testsuite/gcc.dg/asan/pr56417.c 0c13e4008bb665f05b030eb42e43183f gcc/testsuite/gcc.dg/asan/pr63845.c 9a45b4bebab3901180dbe2a44efcd070 gcc/testsuite/gcc.dg/asan/pr64170.c *************** e2a79e8b69a6b8bbbeab0ba442c5de78 gcc/te *** 32078,32084 **** 675327adce99f8c97f34c5251a8c4280 gcc/testsuite/gcc.dg/attr-alias-5.c ef49e9f0f717d3a4d1c827df010599a5 gcc/testsuite/gcc.dg/attr-aligned-2.c 9a4118e77ef09128c8a4e3bf859f9a05 gcc/testsuite/gcc.dg/attr-aligned-3.c ! d2d3ddd7487e05512cd24d38b3a730ee gcc/testsuite/gcc.dg/attr-aligned.c a9ff03a6ff85f7c46fced4797280e236 gcc/testsuite/gcc.dg/attr-alloc_align-1.c daf15f1ec989bc8e1d4831a0d1c70e3e gcc/testsuite/gcc.dg/attr-alloc_align-2.c a40448e5fa79d5f463c4408a645a3bb7 gcc/testsuite/gcc.dg/attr-alloc_align-3.c --- 32134,32140 ---- 675327adce99f8c97f34c5251a8c4280 gcc/testsuite/gcc.dg/attr-alias-5.c ef49e9f0f717d3a4d1c827df010599a5 gcc/testsuite/gcc.dg/attr-aligned-2.c 9a4118e77ef09128c8a4e3bf859f9a05 gcc/testsuite/gcc.dg/attr-aligned-3.c ! 218ecba16d2d3bab118b45a8fd07376c gcc/testsuite/gcc.dg/attr-aligned.c a9ff03a6ff85f7c46fced4797280e236 gcc/testsuite/gcc.dg/attr-alloc_align-1.c daf15f1ec989bc8e1d4831a0d1c70e3e gcc/testsuite/gcc.dg/attr-alloc_align-2.c a40448e5fa79d5f463c4408a645a3bb7 gcc/testsuite/gcc.dg/attr-alloc_align-3.c *************** dc6685bcab4cd7ed276483fd8d031507 gcc/te *** 33643,33651 **** --- 33699,33709 ---- d9dc93acb42ceaf059f158db6f7ea6d2 gcc/testsuite/gcc.dg/cwsc1.c 31f68cda2cf50ca6f7c6c4a9cf4545fd gcc/testsuite/gcc.dg/darwin-20040809-2.c fb2cff7f2512c80434d59d702b80e754 gcc/testsuite/gcc.dg/darwin-20040812-1.c + e3c60516eb9991f352d93d33fde752d3 gcc/testsuite/gcc.dg/darwin-aligned-globals.c 3010db4d547a5bce8e8559d5cc724330 gcc/testsuite/gcc.dg/darwin-cfstring-1.c e43f7a2f13e87638cc08c97ba7326543 gcc/testsuite/gcc.dg/darwin-cfstring-2.c c4152191bf290926b6b747aa4397e015 gcc/testsuite/gcc.dg/darwin-cfstring-format-1.c + 4b9fbc9c27c43751e8b7c93a99afaabc gcc/testsuite/gcc.dg/darwin-comm-1.c 7e6cf48347ff53c1f9c509b921aceb22 gcc/testsuite/gcc.dg/darwin-comm.c b477cca030ba86435b074a334ee9bfd0 gcc/testsuite/gcc.dg/darwin-ld-1.c 4ac76811f1a6c80f6dc5191396c37748 gcc/testsuite/gcc.dg/darwin-ld-2.c *************** a0ac850750aaa6f8934dd8d86cad48b3 gcc/te *** 33965,33970 **** --- 34023,34029 ---- 440b3f562b43525babe2c96be973d1be gcc/testsuite/gcc.dg/dfp/operator-bitwise.c b6f9108cd4878577de83d43be75185ce gcc/testsuite/gcc.dg/dfp/pr104510.c 440b561ad1d9037d4559c7011d636b7a gcc/testsuite/gcc.dg/dfp/pr104557.c + 74ff23770b319829b7487e85a1ed72f6 gcc/testsuite/gcc.dg/dfp/pr108068.c d8629eb8e0c765b5a7daa583cb8eedad gcc/testsuite/gcc.dg/dfp/pr31344.c b59fd600db434af135f39c38e21e2d74 gcc/testsuite/gcc.dg/dfp/pr37435.c 17353eaf91a4f3959fa168324f86f6f5 gcc/testsuite/gcc.dg/dfp/pr41049.c *************** d7769c446568c18d557180c850cf3b4a gcc/te *** 34728,34733 **** --- 34787,34793 ---- f711435274df71049aa71808a78fc7a5 gcc/testsuite/gcc.dg/gomp/parallel-3.c d9a1f43ca6ac2a073e22bbbf243f300b gcc/testsuite/gcc.dg/gomp/parallel-4.c 0f7ac2e81ae2d400d52c34aa1c0b379a gcc/testsuite/gcc.dg/gomp/pr100508.c + a633f425b4fdde0a7b6f0aa6aa2f2754 gcc/testsuite/gcc.dg/gomp/pr108435.c 7a163e65fe52b23fc85f2daa18c442ee gcc/testsuite/gcc.dg/gomp/pr25874.c 597de3ed24e1bc1c650af918589d83c3 gcc/testsuite/gcc.dg/gomp/pr25989.c 0bd3e8dc860de61dd8e09229c090e1f5 gcc/testsuite/gcc.dg/gomp/pr25990.c *************** b9aafcde73d659e8a8f12aec94a7cb09 gcc/te *** 35219,35225 **** 46fe10dc7c2a1b21f0d7af66c601ad44 gcc/testsuite/gcc.dg/guality/drap.c 6572d7b6a1c070b8e6c4fe22f6133e02 gcc/testsuite/gcc.dg/guality/example.c c2dbe29811bd94d5d243fab419e7cc46 gcc/testsuite/gcc.dg/guality/guality.c ! ad3832865ce6297602ae5c702ff44e94 gcc/testsuite/gcc.dg/guality/guality.exp 8c384d0e247915329d53a586d7639107 gcc/testsuite/gcc.dg/guality/guality.h 2d9c26760bf9d33b3f102b5e17c22c93 gcc/testsuite/gcc.dg/guality/inline-params-2.c 1acafa5b9d5aeba7e4788b85be32dc52 gcc/testsuite/gcc.dg/guality/inline-params.c --- 35279,35285 ---- 46fe10dc7c2a1b21f0d7af66c601ad44 gcc/testsuite/gcc.dg/guality/drap.c 6572d7b6a1c070b8e6c4fe22f6133e02 gcc/testsuite/gcc.dg/guality/example.c c2dbe29811bd94d5d243fab419e7cc46 gcc/testsuite/gcc.dg/guality/guality.c ! 1830bfd39ab8fdfd8c2021d875fdd0ed gcc/testsuite/gcc.dg/guality/guality.exp 8c384d0e247915329d53a586d7639107 gcc/testsuite/gcc.dg/guality/guality.h 2d9c26760bf9d33b3f102b5e17c22c93 gcc/testsuite/gcc.dg/guality/inline-params-2.c 1acafa5b9d5aeba7e4788b85be32dc52 gcc/testsuite/gcc.dg/guality/inline-params.c *************** b277b193b2a7ff104d28fbf8e50407e8 gcc/te *** 35911,35916 **** --- 35971,35978 ---- ca741859e8754c149e68fc40892d50b1 gcc/testsuite/gcc.dg/lto/pr101868_1.c e4aec3391bc7aed1a5d886edeb277407 gcc/testsuite/gcc.dg/lto/pr101868_2.c 02d829cec4d5ff9723124841f79edca9 gcc/testsuite/gcc.dg/lto/pr101868_3.c + ef0b90ba09e6e56d1d655afdcb63cdd4 gcc/testsuite/gcc.dg/lto/pr109778_0.c + c3ad752a64c11978f9f2cce0520bf58c gcc/testsuite/gcc.dg/lto/pr109778_1.c 5192817b2492ca93ffadce3b4a5e4794 gcc/testsuite/gcc.dg/lto/pr27898_0.c c5f48897247dfaec60df4e32beffcd8e gcc/testsuite/gcc.dg/lto/pr27898_1.c 2ad724786bc4b555a7f31e8b3bf164b6 gcc/testsuite/gcc.dg/lto/pr28706_0.c *************** b01f707de15442a63cdb3e32148021fd gcc/te *** 36562,36567 **** --- 36624,36634 ---- 795e155542cd4d6c44666b3712a89f73 gcc/testsuite/gcc.dg/pr105250.c cc6ac8d68c79338a580a123141221e8b gcc/testsuite/gcc.dg/pr105257.c df5c854ae6b61ad7980dc609c12732b5 gcc/testsuite/gcc.dg/pr105333.c + c475e08b8000c7ada2ebc07c02d67b0d gcc/testsuite/gcc.dg/pr106719.c + d39b4203470156b99b330266683a9790 gcc/testsuite/gcc.dg/pr107107.c + d64d53420ac059d0a4813bb6b0e625bd gcc/testsuite/gcc.dg/pr107554.c + e0baf0198b26b94a0e92182918c52449 gcc/testsuite/gcc.dg/pr108573.c + 8c5ddd68de1ed874eb52f91b7136909e gcc/testsuite/gcc.dg/pr109410.c 860f163dcd0b252ea3f85323bc959a7d gcc/testsuite/gcc.dg/pr11459-1.c e164a736918661d669864e3645da290c gcc/testsuite/gcc.dg/pr11492.c 3b83403729a3686d25552352bf0c4577 gcc/testsuite/gcc.dg/pr11864-1.c *************** b2947b2840760e6f6cb66c30dda3f057 gcc/te *** 37663,37669 **** f28c9c90b3d30633266db4aef0f121a8 gcc/testsuite/gcc.dg/pr64454.c d2253df541cef89436be2e59701319fc gcc/testsuite/gcc.dg/pr64465.c c6f1921b2165f45723cda892443a24c3 gcc/testsuite/gcc.dg/pr64511.c ! fbcba818644b54491e9e8f3b9c6cd09b gcc/testsuite/gcc.dg/pr64536.c d509539e43ac4a3bf9c9b01c0503ebdf gcc/testsuite/gcc.dg/pr64563.c a797044c31f28103c61f4bcbbfbf1066 gcc/testsuite/gcc.dg/pr64637.c 84213f413cfa8fc453fa64e68f295dd4 gcc/testsuite/gcc.dg/pr64663.c --- 37730,37736 ---- f28c9c90b3d30633266db4aef0f121a8 gcc/testsuite/gcc.dg/pr64454.c d2253df541cef89436be2e59701319fc gcc/testsuite/gcc.dg/pr64465.c c6f1921b2165f45723cda892443a24c3 gcc/testsuite/gcc.dg/pr64511.c ! 9173e74c9221989537bb7b9fa47ef9e9 gcc/testsuite/gcc.dg/pr64536.c d509539e43ac4a3bf9c9b01c0503ebdf gcc/testsuite/gcc.dg/pr64563.c a797044c31f28103c61f4bcbbfbf1066 gcc/testsuite/gcc.dg/pr64637.c 84213f413cfa8fc453fa64e68f295dd4 gcc/testsuite/gcc.dg/pr64663.c *************** ff83f1142d27828d619d4abf6063f64d gcc/te *** 38457,38463 **** d96f1f1b79bd3d34227f08f817f8c40a gcc/testsuite/gcc.dg/pragma-diag-8.c 24a9270f9a6635bb396c6d700a9d9d2c gcc/testsuite/gcc.dg/pragma-init-fini-2.c 8ea7784f3024c6da48a3ea846fb015cf gcc/testsuite/gcc.dg/pragma-init-fini.c ! 811b358bae37344e12a6159506ad1c6e gcc/testsuite/gcc.dg/pragma-message.c 5ba7295e8d296fad3e6dbec62f078a08 gcc/testsuite/gcc.dg/pragma-ms_struct.c 70c646980b7f8688082508ee2b320463 gcc/testsuite/gcc.dg/pragma-pack-2.c 91e7f7dc0a6185be839ea6c1b0927ab2 gcc/testsuite/gcc.dg/pragma-pack-3.c --- 38524,38530 ---- d96f1f1b79bd3d34227f08f817f8c40a gcc/testsuite/gcc.dg/pragma-diag-8.c 24a9270f9a6635bb396c6d700a9d9d2c gcc/testsuite/gcc.dg/pragma-init-fini-2.c 8ea7784f3024c6da48a3ea846fb015cf gcc/testsuite/gcc.dg/pragma-init-fini.c ! 5f05939ddb5a26eeb821ec9bdfd424e7 gcc/testsuite/gcc.dg/pragma-message.c 5ba7295e8d296fad3e6dbec62f078a08 gcc/testsuite/gcc.dg/pragma-ms_struct.c 70c646980b7f8688082508ee2b320463 gcc/testsuite/gcc.dg/pragma-pack-2.c 91e7f7dc0a6185be839ea6c1b0927ab2 gcc/testsuite/gcc.dg/pragma-pack-3.c *************** ad6242e66d3dccabe71dd1502730f6d6 gcc/te *** 39420,39425 **** --- 39487,39494 ---- 187b7ab38abc20e5b403f44030455c53 gcc/testsuite/gcc.dg/torture/pr104402.c ca1b8736d16b2cdaabaec84f87fa4d15 gcc/testsuite/gcc.dg/torture/pr105163.c a88279579fa471a64faeb41da64a9eb4 gcc/testsuite/gcc.dg/torture/pr105198.c + b14f04ff913718764d3bdef465cc8316 gcc/testsuite/gcc.dg/torture/pr106112.c + dcce8968ffefc4127aace33be872b0b1 gcc/testsuite/gcc.dg/torture/pr106513.c ded4330fd1cd52783bd9b1761db038ef gcc/testsuite/gcc.dg/torture/pr16104-1.c fc265ee05da2f29f0e92804661cd1f28 gcc/testsuite/gcc.dg/torture/pr17526.c 01c583edb41b632b835aa892b9c1cb14 gcc/testsuite/gcc.dg/torture/pr17933-1.c *************** b142c2ddae2c16c5c72a74e4640c1177 gcc/te *** 40749,40754 **** --- 40818,40824 ---- 44ea79b170e8361106ff0a9791223f68 gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-10.c 64291369db8a3b1bf41782ff1eb3de9b gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-11.c 2592f2d893131e439632395ceaa9705b gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-12.c + 9f7d76e1b617499178fafd478cc82d21 gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-13.c e79cd62bd574d773375b923ec037485f gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-2.c 33591a0fcd9e8448e38471ecb4875798 gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-3.c 9a8efc85cc4761046085ad119ebeab81 gcc/testsuite/gcc.dg/tree-ssa/alias-access-path-4.c *************** a894721a77fea7c94bacb921fa950e92 gcc/te *** 41267,41272 **** --- 41337,41344 ---- 5fa8fedb134926f9081dc10112a7acbb gcc/testsuite/gcc.dg/tree-ssa/popcount4ll.c 54f39b48fa6b3cbd7593e9bc52d33a21 gcc/testsuite/gcc.dg/tree-ssa/pr100278.c d5dace55f72aa8ccb51636dff79f5ccc gcc/testsuite/gcc.dg/tree-ssa/pr101824.c + 660324e032912162df8b4570de2731f5 gcc/testsuite/gcc.dg/tree-ssa/pr105860.c + 0b2312ef2558ac9fd9aad91d8afc7009 gcc/testsuite/gcc.dg/tree-ssa/pr107323.c 78e6c5fe63f7305009c8a79840fe20dc gcc/testsuite/gcc.dg/tree-ssa/pr13146.c eab19e0c04884cd782c9879cbe292109 gcc/testsuite/gcc.dg/tree-ssa/pr14341.c 9945ed7002a5f7d4918e8ff5eb4cb647 gcc/testsuite/gcc.dg/tree-ssa/pr14490-1.c *************** acf0af3723cb1d2f1a5fe0dbbb7d9fa9 gcc/te *** 42446,42451 **** --- 42518,42524 ---- b6636fcf606d4b2a9b3c129b082bc808 gcc/testsuite/gcc.dg/ubsan/float-cast-overflow-bf.c 3325507ff87bcf4f63df3972ec6895c4 gcc/testsuite/gcc.dg/ubsan/ipa-icf-1.c 20138e45bcf86067b02f18ee36d2a451 gcc/testsuite/gcc.dg/ubsan/object-size-9.c + cefdc2a9eb13f2095c81dff3665fcbe2 gcc/testsuite/gcc.dg/ubsan/pr107183.c 8b53119c2975ba4eb7e0a8a3f21049bc gcc/testsuite/gcc.dg/ubsan/pr63690.c 7a3b89a11b570c0d6817707c745a9fba gcc/testsuite/gcc.dg/ubsan/pr67279.c c9a455b03d901e306e1836d50e9e37d6 gcc/testsuite/gcc.dg/ubsan/pr67662.c *************** a1f177ffd0862f4b4d2cf8089b641e17 gcc/te *** 44985,44990 **** --- 45058,45064 ---- 904fcc9a4fae07870b9cb9e077d40e2a gcc/testsuite/gcc.target/aarch64/aes_1.c f579ec2c6b2aaae4154654375a568cb8 gcc/testsuite/gcc.target/aarch64/aes_2.c 6fc5ea113b9f1a18e380dabb486b1f93 gcc/testsuite/gcc.target/aarch64/aes_xor_combine.c + 87ffe2f549ae8342b95a0220082c56a9 gcc/testsuite/gcc.target/aarch64/ampere1-no_ldp_combine.c b144bbaff9193d702e5e6e91e1c21a7a gcc/testsuite/gcc.target/aarch64/and_const.c 5625f9d0aa6dd393a4e54a9d8f0df277 gcc/testsuite/gcc.target/aarch64/and_const2.c e4ce46d425f8ea0594bf48b8fec9250a gcc/testsuite/gcc.target/aarch64/ands_1.c *************** fdee6dc65f1aea1fb6a62ac64d03d92d gcc/te *** 45059,45064 **** --- 45133,45144 ---- 946b6917c33aba8084d5a129bb3f3e87 gcc/testsuite/gcc.target/aarch64/bics_3.c 7b6b35a52fbd180696cad88dbba07bee gcc/testsuite/gcc.target/aarch64/bics_4.c dbf9d0b9347271827283e2f005a43518 gcc/testsuite/gcc.target/aarch64/bics_5.c + b9adf5710f6e4412e311d9842a7e6a74 gcc/testsuite/gcc.target/aarch64/bitfield-abi-warning-align16-O2-extra.c + 1ea2338a337ffffcbf0070527e645884 gcc/testsuite/gcc.target/aarch64/bitfield-abi-warning-align16-O2.c + 5b4ff998e5161d6086f9cb3b1a2b4d9b gcc/testsuite/gcc.target/aarch64/bitfield-abi-warning-align32-O2-extra.c + 4ac663bd8c658f6110b0b15309b48819 gcc/testsuite/gcc.target/aarch64/bitfield-abi-warning-align32-O2.c + e6fb09982b6bafd6c889c22cb3ec1cb9 gcc/testsuite/gcc.target/aarch64/bitfield-abi-warning-align8-O2.c + f7378d596bb7308498db40ad34fd8dab gcc/testsuite/gcc.target/aarch64/bitfield-abi-warning.h 11f6f9054981704db09136d921c586d4 gcc/testsuite/gcc.target/aarch64/branch-protection-attr-2.c d7e52c3c883fc5ffda3d68cfbc199f9c gcc/testsuite/gcc.target/aarch64/branch-protection-attr.c c45ad55864031fa75ffa4f831160438a gcc/testsuite/gcc.target/aarch64/branch-protection-option-2.c *************** c84ec68e16463ed98fee3cd8cb4e230f gcc/te *** 45122,45127 **** --- 45202,45208 ---- f88dcec7a52a0d115da213f16170f154 gcc/testsuite/gcc.target/aarch64/cpunative/info_13 0e1794c5980d78e11a9aff64bd2dc530 gcc/testsuite/gcc.target/aarch64/cpunative/info_14 a83f195cec2faf2fbf29ad0e4f2fa03e gcc/testsuite/gcc.target/aarch64/cpunative/info_15 + 77b9d125c413bdfe2a579cf2a959f461 gcc/testsuite/gcc.target/aarch64/cpunative/info_18 4b5005c4193fa80868408bf4492b4e3b gcc/testsuite/gcc.target/aarch64/cpunative/info_2 4c4387d4071cf10c793b4efe11f43439 gcc/testsuite/gcc.target/aarch64/cpunative/info_3 d8a7caffcc99feff5312001aed51cd38 gcc/testsuite/gcc.target/aarch64/cpunative/info_4 *************** d381cd3e88e2680adaf2d96ab40c7f36 gcc/te *** 45138,45143 **** --- 45219,45225 ---- c033638d0946e9ee53dca3d93087a1e9 gcc/testsuite/gcc.target/aarch64/cpunative/native_cpu_13.c 6053245b4b2e80b7e957f46340ac4844 gcc/testsuite/gcc.target/aarch64/cpunative/native_cpu_14.c 1edb30a14c92c1f3d8768f2fe63085ab gcc/testsuite/gcc.target/aarch64/cpunative/native_cpu_15.c + 7f6f8f8e6241c818ea037d533dc71d1a gcc/testsuite/gcc.target/aarch64/cpunative/native_cpu_18.c ae5358d52499de77a7a1beac3683c709 gcc/testsuite/gcc.target/aarch64/cpunative/native_cpu_2.c 5932d955ed9dc11faefb9f331763ff2c gcc/testsuite/gcc.target/aarch64/cpunative/native_cpu_3.c cfd988497c936bc048f9b952dc82ebac gcc/testsuite/gcc.target/aarch64/cpunative/native_cpu_4.c *************** c634a3e3729a1cf014159113aaaa5923 gcc/te *** 45359,45364 **** --- 45441,45450 ---- 629072fafe5767161ca1f67309a94cc5 gcc/testsuite/gcc.target/aarch64/popcnt.c 1444bbe1566e1e44cb5d667947f37296 gcc/testsuite/gcc.target/aarch64/popcnt2.c 86842168437685ec7a5c743fbea8576c gcc/testsuite/gcc.target/aarch64/popcount4.c + d31b19093bf5b52a4ab71663355a6864 gcc/testsuite/gcc.target/aarch64/pr104921-1.c + de49e9125d6237709299bcc3a1dfd315 gcc/testsuite/gcc.target/aarch64/pr104921-2.c + 80bfa364bfe20370e6bd035b978c10f8 gcc/testsuite/gcc.target/aarch64/pr104921.x + a7d8042acc2272e21686f52da76e42f1 gcc/testsuite/gcc.target/aarch64/pr108589.c 9adb42733d9f5e2b1f2dbb364b62100d gcc/testsuite/gcc.target/aarch64/pr37780_1.c e668fb9e0d32efadd671247467dc90db gcc/testsuite/gcc.target/aarch64/pr58460.c 9023f817c07ddec673c5b546525fc184 gcc/testsuite/gcc.target/aarch64/pr60034.c *************** f1bf7ff33493bb68ff78eb400f2af3a2 gcc/te *** 45420,45427 **** d43406280c991dedd7072642fee590a0 gcc/testsuite/gcc.target/aarch64/pr91102.c fc91452912566f4106b747b6e9c396e5 gcc/testsuite/gcc.target/aarch64/pr91927.c 9562a96a900add1659850fcc3d3901cf gcc/testsuite/gcc.target/aarch64/pr92424-1.c ! fa96ea78d21fc13d022162f4fb6d0e23 gcc/testsuite/gcc.target/aarch64/pr92424-2.c ! cc14caf0fac017855cfb26da3f9bd70f gcc/testsuite/gcc.target/aarch64/pr92424-3.c 2c2213c9e95d84ffb54b1bf1c59ba1a4 gcc/testsuite/gcc.target/aarch64/pr92526.c 4a3651caf4f05ecfa237c1017ec5b341 gcc/testsuite/gcc.target/aarch64/pr93119.c 040dfb8e58ad051e80d35c470c8ab52a gcc/testsuite/gcc.target/aarch64/pr93221.c --- 45506,45513 ---- d43406280c991dedd7072642fee590a0 gcc/testsuite/gcc.target/aarch64/pr91102.c fc91452912566f4106b747b6e9c396e5 gcc/testsuite/gcc.target/aarch64/pr91927.c 9562a96a900add1659850fcc3d3901cf gcc/testsuite/gcc.target/aarch64/pr92424-1.c ! 089246fb9d610dba2682e4db293a1081 gcc/testsuite/gcc.target/aarch64/pr92424-2.c ! 82d090f026d0bcb989e44bc06fb71ba3 gcc/testsuite/gcc.target/aarch64/pr92424-3.c 2c2213c9e95d84ffb54b1bf1c59ba1a4 gcc/testsuite/gcc.target/aarch64/pr92526.c 4a3651caf4f05ecfa237c1017ec5b341 gcc/testsuite/gcc.target/aarch64/pr93119.c 040dfb8e58ad051e80d35c470c8ab52a gcc/testsuite/gcc.target/aarch64/pr93221.c *************** c6eebf3e7952e61593d0c0e9db4a9363 gcc/te *** 45444,45454 **** bf82071ea86307b407ab979b320a2a98 gcc/testsuite/gcc.target/aarch64/pr97535.c c5ac198fcc683ea88b36ff21fc73e2c5 gcc/testsuite/gcc.target/aarch64/pr97638.c 9de38bfb1ed2fd966b262da7bfb1767a gcc/testsuite/gcc.target/aarch64/pr97701.c 18603818c100529306da07a556c00769 gcc/testsuite/gcc.target/aarch64/pr99381.c 1f2ce8a6e6be36322ada7a2a222926ac gcc/testsuite/gcc.target/aarch64/pr99767.c 49e4573c158d59f2a37800471ca3bc65 gcc/testsuite/gcc.target/aarch64/pr99808.c 5e9a238ae88bfc957497e635ed104144 gcc/testsuite/gcc.target/aarch64/pr99988.c ! d3e6defa85b5cd4bb506306377e59a53 gcc/testsuite/gcc.target/aarch64/pragma_cpp_predefs_1.c 42c7828cb4d5253e1a3df46c971f945a gcc/testsuite/gcc.target/aarch64/pragma_cpp_predefs_2.c 1802b716a6dff570eaf8df2688efe1dd gcc/testsuite/gcc.target/aarch64/pragma_cpp_predefs_3.c 1f95766b4ed5bfb5f2cf1f168a607a8d gcc/testsuite/gcc.target/aarch64/predefine_large.c --- 45530,45541 ---- bf82071ea86307b407ab979b320a2a98 gcc/testsuite/gcc.target/aarch64/pr97535.c c5ac198fcc683ea88b36ff21fc73e2c5 gcc/testsuite/gcc.target/aarch64/pr97638.c 9de38bfb1ed2fd966b262da7bfb1767a gcc/testsuite/gcc.target/aarch64/pr97701.c + d99763de0d53b85cfa8475cec6740085 gcc/testsuite/gcc.target/aarch64/pr98776.c 18603818c100529306da07a556c00769 gcc/testsuite/gcc.target/aarch64/pr99381.c 1f2ce8a6e6be36322ada7a2a222926ac gcc/testsuite/gcc.target/aarch64/pr99767.c 49e4573c158d59f2a37800471ca3bc65 gcc/testsuite/gcc.target/aarch64/pr99808.c 5e9a238ae88bfc957497e635ed104144 gcc/testsuite/gcc.target/aarch64/pr99988.c ! 7647e74954bed1df0b5452c86dc7806b gcc/testsuite/gcc.target/aarch64/pragma_cpp_predefs_1.c 42c7828cb4d5253e1a3df46c971f945a gcc/testsuite/gcc.target/aarch64/pragma_cpp_predefs_2.c 1802b716a6dff570eaf8df2688efe1dd gcc/testsuite/gcc.target/aarch64/pragma_cpp_predefs_3.c 1f95766b4ed5bfb5f2cf1f168a607a8d gcc/testsuite/gcc.target/aarch64/predefine_large.c *************** cffa63a742186323feab22505915a6e9 gcc/te *** 47780,47790 **** 870b6f75704bbb0ccb3143a727a5931b gcc/testsuite/gcc.target/aarch64/sve/acle/general/attributes_7.c 92c276aa826427c641795daf9568c67a gcc/testsuite/gcc.target/aarch64/sve/acle/general/attributes_8.c 05382618b8c4ba6e308d6b5ff864fab5 gcc/testsuite/gcc.target/aarch64/sve/acle/general/bic_1.c ! 5ae6341c57153ec20112c098c47d4a4f gcc/testsuite/gcc.target/aarch64/sve/acle/general/brka_1.c 4eea3d7baf0e2958356c0c33600e72e4 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brka_2.c ! 47cd2b091e30ac40fddd5d5428615f8d gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkb_1.c 727e5a19783b8b46c75ba94a5a33f1da gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkb_2.c ! 88cae91706dea5ab1150bf4ba8df41d5 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkn_1.c 3e4d3053ca7b442dbfeb54e8df14d433 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkpa_1.c 41715679da86b4845c2da3233725d0f2 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkpb_1.c 4e7a3ff45a72f35e2476f4e660886eb0 gcc/testsuite/gcc.target/aarch64/sve/acle/general/cmpeq_1.c --- 47867,47878 ---- 870b6f75704bbb0ccb3143a727a5931b gcc/testsuite/gcc.target/aarch64/sve/acle/general/attributes_7.c 92c276aa826427c641795daf9568c67a gcc/testsuite/gcc.target/aarch64/sve/acle/general/attributes_8.c 05382618b8c4ba6e308d6b5ff864fab5 gcc/testsuite/gcc.target/aarch64/sve/acle/general/bic_1.c ! af77aba325d1fbc52d95aa9fcc602577 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brka_1.c 4eea3d7baf0e2958356c0c33600e72e4 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brka_2.c ! f81d80fd6fc545f0e3c86a51a1ad1aa8 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkb_1.c 727e5a19783b8b46c75ba94a5a33f1da gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkb_2.c ! f05f061869c6f335b6395f5250ec83ee gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkn_1.c ! 649722b7feeb54ead3f4ff347e8ef4db gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkn_2.c 3e4d3053ca7b442dbfeb54e8df14d433 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkpa_1.c 41715679da86b4845c2da3233725d0f2 gcc/testsuite/gcc.target/aarch64/sve/acle/general/brkpb_1.c 4e7a3ff45a72f35e2476f4e660886eb0 gcc/testsuite/gcc.target/aarch64/sve/acle/general/cmpeq_1.c *************** b47b757f8315eacb46b04546750c92a3 gcc/te *** 55133,55138 **** --- 55221,55227 ---- 99d95f5ed8219dbd6f25d0d43af3e99e gcc/testsuite/gcc.target/i386/avx-vzeroupper-25.c c9c1cc09c516bf54bf50fb514a8f862c gcc/testsuite/gcc.target/i386/avx-vzeroupper-26.c 373ca5703182fb7bac2076f26891bd55 gcc/testsuite/gcc.target/i386/avx-vzeroupper-27.c + c0bed0be10ece6c15e9aa800b77e5436 gcc/testsuite/gcc.target/i386/avx-vzeroupper-29.c 2676f686c636ba65ddf77da8485ee324 gcc/testsuite/gcc.target/i386/avx-vzeroupper-3.c 762b6911a6dc394fae9ee24213fb6114 gcc/testsuite/gcc.target/i386/avx-vzeroupper-4.c 27e3a091b9bfccddb7c44014ae46ed71 gcc/testsuite/gcc.target/i386/avx-vzeroupper-5.c *************** f55df70acaaa1a05030d45495848eb2b gcc/te *** 55614,55619 **** --- 55703,55709 ---- 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 + e776362bd500a8b0461d6aa8e0e1660e gcc/testsuite/gcc.target/i386/avx512bf16-pr108881.c 964a5f2a2c89b83533b2be720732ccd6 gcc/testsuite/gcc.target/i386/avx512bf16-vcvtne2ps2bf16-1.c 80660c3a1129515840c1c9e263211f06 gcc/testsuite/gcc.target/i386/avx512bf16-vcvtneps2bf16-1.c 63e7956c8ca198ce2181d80ed229bbbb gcc/testsuite/gcc.target/i386/avx512bf16-vdpbf16ps-1.c *************** a92681d4c2c5095462e23684946fe9fd gcc/te *** 58699,58705 **** --- 58789,58798 ---- 21083ed0382a1c184689d3a9ee1bc7ee gcc/testsuite/gcc.target/i386/pr104637.c a64b8516e04de39ddebcd66dc046d450 gcc/testsuite/gcc.target/i386/pr104971.c 3de9ba59994fd09bad053a28eecbc68d gcc/testsuite/gcc.target/i386/pr105123.c + db0abcfd3877faa33b33aa19a57352a5 gcc/testsuite/gcc.target/i386/pr105554.c afe42f2264a7583bee62a6e718faeef5 gcc/testsuite/gcc.target/i386/pr105970.c + 6785d7acc8b80b50a6e9eff699729a12 gcc/testsuite/gcc.target/i386/pr107304.c + 972837aa3a25d88acfe4af629c37d530 gcc/testsuite/gcc.target/i386/pr107863.c 304b7d185da41754f69656f5bfa7d508 gcc/testsuite/gcc.target/i386/pr11001-memcpy-1.c 7dbe55f1460795545dd744807466a430 gcc/testsuite/gcc.target/i386/pr11001-memcpy-2.c cbe58ae1efc3b97c1019a430e1fedfcb gcc/testsuite/gcc.target/i386/pr11001-memcpy-3.c *************** d82c437b681e812dd9c8b48af5ec1850 gcc/te *** 60019,60025 **** a6b13b01e1a41a2d0dec3e0debcdf80b gcc/testsuite/gcc.target/i386/pr89229-7a.c aead7f35b166baa85ab2aed11aa3c2d4 gcc/testsuite/gcc.target/i386/pr89229-7b.c d9b72f271f61a1292d8be12ea7a23b54 gcc/testsuite/gcc.target/i386/pr89229-7c.c ! 8101acdea56668e935e1e380034afee9 gcc/testsuite/gcc.target/i386/pr89261.c 956a0e340ae4dfe5721ba6a3ab98969f gcc/testsuite/gcc.target/i386/pr89290.c 9b171107d18eb3849a61bea08c583e1a gcc/testsuite/gcc.target/i386/pr89346.c 3672969c19203520cc6589315eed1976 gcc/testsuite/gcc.target/i386/pr89386-1.c --- 60112,60118 ---- a6b13b01e1a41a2d0dec3e0debcdf80b gcc/testsuite/gcc.target/i386/pr89229-7a.c aead7f35b166baa85ab2aed11aa3c2d4 gcc/testsuite/gcc.target/i386/pr89229-7b.c d9b72f271f61a1292d8be12ea7a23b54 gcc/testsuite/gcc.target/i386/pr89229-7c.c ! 4e53037c62f9dce84f092674db01aec5 gcc/testsuite/gcc.target/i386/pr89261.c 956a0e340ae4dfe5721ba6a3ab98969f gcc/testsuite/gcc.target/i386/pr89290.c 9b171107d18eb3849a61bea08c583e1a gcc/testsuite/gcc.target/i386/pr89346.c 3672969c19203520cc6589315eed1976 gcc/testsuite/gcc.target/i386/pr89386-1.c *************** a3b487e53959665b5ecb0d7ba6138585 gcc/te *** 62446,62451 **** --- 62539,62547 ---- 9a0e4836781f28669ddca26eb214c2b2 gcc/testsuite/gcc.target/powerpc/darwin-abi-10.c 66e5cfd1b7491e37c0ef258d09b6634d gcc/testsuite/gcc.target/powerpc/darwin-abi-11.c 53928dd7b0f61581157c4a15b8648deb gcc/testsuite/gcc.target/powerpc/darwin-abi-12.c + 3c62c13d1d2b0222e5414464a8febd98 gcc/testsuite/gcc.target/powerpc/darwin-abi-13-0.c + cf00e3be4bf57389b7f606e91c156bd0 gcc/testsuite/gcc.target/powerpc/darwin-abi-13-1.c + 60f14ad7099165e20857ae4f288d20be gcc/testsuite/gcc.target/powerpc/darwin-abi-13-2.c f1de6a326b4846750e0ac1ab775db181 gcc/testsuite/gcc.target/powerpc/darwin-abi-2.c 3fccf2fe47e82ab342fd63f22d397b6d gcc/testsuite/gcc.target/powerpc/darwin-abi-3.c bea305679cc2b27499e1228c23aae9eb gcc/testsuite/gcc.target/powerpc/darwin-abi-4.c *************** ebf08f4056fe4c31c90dc291d1dfcaae gcc/te *** 62462,62467 **** --- 62558,62564 ---- 4dbff077cb3e8124197729c3a94647bb gcc/testsuite/gcc.target/powerpc/darwin-misaligned.c 7ba33272da50fd8bee6d1536c3e99d26 gcc/testsuite/gcc.target/powerpc/darwin-save-world-1.c a034d7a8bf265623a75800f01113e836 gcc/testsuite/gcc.target/powerpc/darwin-split-ld-stret.c + c45226a99273c8755ce33ff73f22d3b3 gcc/testsuite/gcc.target/powerpc/darwin-structs-0.h 548fc585bcbf766f23bef7319f0b0a18 gcc/testsuite/gcc.target/powerpc/darwin64-abi.c 5df8870892f8ad5f8ea3060c6c5b82b1 gcc/testsuite/gcc.target/powerpc/dfmode_off.c 39a60b8b75cc0dfba0799a7a9c2be1b7 gcc/testsuite/gcc.target/powerpc/dform-1.c *************** b681248afe4bdb1d889c6999e517fe7f gcc/te *** 62847,62854 **** 813e9e4e09e5e1dbbf39cc9852ed3f2b gcc/testsuite/gcc.target/powerpc/fold-vec-unpack-int.c 1551b0b6be64f5eba760a72e19de3597 gcc/testsuite/gcc.target/powerpc/fold-vec-unpack-pixel.c 3945e589530622f3dffbe2381c9922e1 gcc/testsuite/gcc.target/powerpc/fold-vec-unpack-short.c ! 8b2d1bd52f7c861f8d72b5a44d92ef4c gcc/testsuite/gcc.target/powerpc/fusion.c ! 36aa1f73a4f5f1d0803aa750e5b13826 gcc/testsuite/gcc.target/powerpc/fusion2.c d339d3fe4c50dd4c2727de10dcf3374e gcc/testsuite/gcc.target/powerpc/gcse-1.c bbca57fae9dea88267eaea26d8c43380 gcc/testsuite/gcc.target/powerpc/gnuattr1.c df3448b5306ef9e06b44d7414e6a12ff gcc/testsuite/gcc.target/powerpc/gnuattr2.c --- 62944,62951 ---- 813e9e4e09e5e1dbbf39cc9852ed3f2b gcc/testsuite/gcc.target/powerpc/fold-vec-unpack-int.c 1551b0b6be64f5eba760a72e19de3597 gcc/testsuite/gcc.target/powerpc/fold-vec-unpack-pixel.c 3945e589530622f3dffbe2381c9922e1 gcc/testsuite/gcc.target/powerpc/fold-vec-unpack-short.c ! c21eafe688d7ccbc9bdcb0aaf81bfd30 gcc/testsuite/gcc.target/powerpc/fusion.c ! 4adade68cb00ba61c6843394fdadd638 gcc/testsuite/gcc.target/powerpc/fusion2.c d339d3fe4c50dd4c2727de10dcf3374e gcc/testsuite/gcc.target/powerpc/gcse-1.c bbca57fae9dea88267eaea26d8c43380 gcc/testsuite/gcc.target/powerpc/gnuattr1.c df3448b5306ef9e06b44d7414e6a12ff gcc/testsuite/gcc.target/powerpc/gnuattr2.c *************** e2e15e908351c26b4d33e3999348ff7c gcc/te *** 62989,62995 **** a3bc962cdf97f11842afa5f6bc2c6f87 gcc/testsuite/gcc.target/powerpc/p9-splat-5.c 6fe95409f0bc99933bc334a5e64a72f1 gcc/testsuite/gcc.target/powerpc/p9-vbpermd.c d29c4e53ac8e3c7f57f7b87eb5a985b7 gcc/testsuite/gcc.target/powerpc/p9-vneg.c ! 1a65f8d803e3ce8de1fa990485fcf89d gcc/testsuite/gcc.target/powerpc/p9-vparity.c 5f48c99fd54a8939ef5f74a0d5326dc9 gcc/testsuite/gcc.target/powerpc/p9-vpermr.c a997d132b77f2e29f13d81e4357ebc1a gcc/testsuite/gcc.target/powerpc/p9-xxbr-1.c 176d54b045b5bd5a943bc2331805ec99 gcc/testsuite/gcc.target/powerpc/p9-xxbr-2.c --- 63086,63092 ---- a3bc962cdf97f11842afa5f6bc2c6f87 gcc/testsuite/gcc.target/powerpc/p9-splat-5.c 6fe95409f0bc99933bc334a5e64a72f1 gcc/testsuite/gcc.target/powerpc/p9-vbpermd.c d29c4e53ac8e3c7f57f7b87eb5a985b7 gcc/testsuite/gcc.target/powerpc/p9-vneg.c ! c8fe0d7c8b177660abe79ba1e9ca969e gcc/testsuite/gcc.target/powerpc/p9-vparity.c 5f48c99fd54a8939ef5f74a0d5326dc9 gcc/testsuite/gcc.target/powerpc/p9-vpermr.c a997d132b77f2e29f13d81e4357ebc1a gcc/testsuite/gcc.target/powerpc/p9-xxbr-1.c 176d54b045b5bd5a943bc2331805ec99 gcc/testsuite/gcc.target/powerpc/p9-xxbr-2.c *************** bbe41009113780dbcd6527cbec5f943c gcc/te *** 63089,63100 **** --- 63186,63216 ---- 5392663d9c3769a2d83b13aed765c6eb gcc/testsuite/gcc.target/powerpc/pr102059-4.c a192830e09e3a3d8478a89f2b2add0ff gcc/testsuite/gcc.target/powerpc/pr102347.c 0726fc47d5d46d095efa95b874637be7 gcc/testsuite/gcc.target/powerpc/pr102976.c + 2e28abb3dab00a40af19eb41bc4d56ce gcc/testsuite/gcc.target/powerpc/pr103353.c 20a7942f4601125d17110951f0d9d799 gcc/testsuite/gcc.target/powerpc/pr103627-1.c 75bf709f259ebd7bb4ea3bb9e4c7a6e3 gcc/testsuite/gcc.target/powerpc/pr103627-2.c 173204ae2ee9c78ee24b407929800cd8 gcc/testsuite/gcc.target/powerpc/pr103627-3.c b7339ab4137e4c5175deca053bb790c8 gcc/testsuite/gcc.target/powerpc/pr104208-1.c 7dff0a95f65947b541c04da0c7b307a5 gcc/testsuite/gcc.target/powerpc/pr104208-2.c 76860a5a20e1c892c05c24cdc70fe3c2 gcc/testsuite/gcc.target/powerpc/pr104253.c + 6e7b6dccd503c20a37d0e145939b54a6 gcc/testsuite/gcc.target/powerpc/pr105041.c + 1717ad0418e192e7d5bbcdcc715baa9a gcc/testsuite/gcc.target/powerpc/pr106017.c + 77039220fc5a52161837a12ea92d1ea3 gcc/testsuite/gcc.target/powerpc/pr106091.c + b89eb373488426e128fceff637542836 gcc/testsuite/gcc.target/powerpc/pr106736-1.c + b628655d5e6da478a0338b6a99c2b547 gcc/testsuite/gcc.target/powerpc/pr106736-2.c + 268c405264ea346b9620a21b4008ae3d gcc/testsuite/gcc.target/powerpc/pr106736-3.c + 80f943ae05ca5bf1bdb90616a4a55bee gcc/testsuite/gcc.target/powerpc/pr106736-4.c + 8c4791ff0309e78169b9fa522b35014a gcc/testsuite/gcc.target/powerpc/pr106736-5.c + cf6fc6f2cd4ce40de4bfcae2384bc88d gcc/testsuite/gcc.target/powerpc/pr108272-1.c + f50d5d85d2fd6cdb2c24ba2f99c5ed50 gcc/testsuite/gcc.target/powerpc/pr108272-2.c + 80b0790ba15d5f168fdb877edfba8e3c gcc/testsuite/gcc.target/powerpc/pr108272-3.c + 8b12dd4a97ca50e2f9880c335cebf74b gcc/testsuite/gcc.target/powerpc/pr108272-4.c + 40726e9ba9f0dbe699d13f0248929db7 gcc/testsuite/gcc.target/powerpc/pr108348-1.c + 590060f31f74e624d8948e67f5efe8a9 gcc/testsuite/gcc.target/powerpc/pr108348-2.c + d1ebac89ce86ba01adcab56447399dd9 gcc/testsuite/gcc.target/powerpc/pr108699.c + d746d0fb9156720298fa3c2071023bbf gcc/testsuite/gcc.target/powerpc/pr109932-1.c + d746d0fb9156720298fa3c2071023bbf gcc/testsuite/gcc.target/powerpc/pr109932-2.c + 30266f999ed968f6bfdc98dae3651704 gcc/testsuite/gcc.target/powerpc/pr110011.c c2f6d6cf82ef4931619d09e10a0a72aa gcc/testsuite/gcc.target/powerpc/pr16155.c 396ae287e72ecdda51bb3157818030a9 gcc/testsuite/gcc.target/powerpc/pr16286.c 198d8a69d2887e8fadcb050d90e21aa6 gcc/testsuite/gcc.target/powerpc/pr16458-1.c *************** c2bb4c50496aade60596e697b1d8782d gcc/te *** 63203,63208 **** --- 63319,63325 ---- 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 + fa25257d80acb26f0f70a5da209dbad5 gcc/testsuite/gcc.target/powerpc/pr70243.c 9f0a82f7f84690a18cb82bed87617073 gcc/testsuite/gcc.target/powerpc/pr70640.c 9f7996dd7c38f201960362b08e509c7d gcc/testsuite/gcc.target/powerpc/pr70669.c bb6ec828efc211131c5a036203ac7c94 gcc/testsuite/gcc.target/powerpc/pr70866.c *************** bf5eef64bd13d358ccd4ecc20fc71dea gcc/te *** 63370,63375 **** --- 63487,63493 ---- 28bb6aa7286428bb15ccd941640b2015 gcc/testsuite/gcc.target/powerpc/pr93658.c d26617f5612756af307063fa03737a38 gcc/testsuite/gcc.target/powerpc/pr93800.c baf149d64053b2f0f606c42999ad64b8 gcc/testsuite/gcc.target/powerpc/pr95450.c + 5c286273d2472c19e1388a58fbf1fae4 gcc/testsuite/gcc.target/powerpc/pr96072.c c3fdf2edbc3880b6e23670387a188c81 gcc/testsuite/gcc.target/powerpc/pr96125.c fc375fa4611e61db9f6772989772cd97 gcc/testsuite/gcc.target/powerpc/pr96139-a.c 43db365adaa18cc0b1e481b8ad040696 gcc/testsuite/gcc.target/powerpc/pr96139-b.c *************** f138cfa6e387e1bc85747da2fc38e305 gcc/te *** 63789,63795 **** 1e5fee04b7943239f19f0ce10776f9d1 gcc/testsuite/gcc.target/powerpc/test_fpscr_drn_builtin_error.c e2ea17dd5726f5123cfd41828cad3a67 gcc/testsuite/gcc.target/powerpc/test_fpscr_rn_builtin.c b08d7736f6c15cd2e7a7cbbf0732a171 gcc/testsuite/gcc.target/powerpc/test_fpscr_rn_builtin_error.c ! fffb5388e3f0454f2afd0eade4181a0c gcc/testsuite/gcc.target/powerpc/test_mffsl.c e28cc14ddafc82b0f212f1b4ebbcf50a gcc/testsuite/gcc.target/powerpc/tfmode_off.c c2edbb1afba546ea3ac8a5efcaca9c38 gcc/testsuite/gcc.target/powerpc/ti_math1.c c3d0d51284479d220a6166a0f362536c gcc/testsuite/gcc.target/powerpc/ti_math2.c --- 63907,63913 ---- 1e5fee04b7943239f19f0ce10776f9d1 gcc/testsuite/gcc.target/powerpc/test_fpscr_drn_builtin_error.c e2ea17dd5726f5123cfd41828cad3a67 gcc/testsuite/gcc.target/powerpc/test_fpscr_rn_builtin.c b08d7736f6c15cd2e7a7cbbf0732a171 gcc/testsuite/gcc.target/powerpc/test_fpscr_rn_builtin_error.c ! e87f7fb838fef2237995418c77791ad2 gcc/testsuite/gcc.target/powerpc/test_mffsl.c e28cc14ddafc82b0f212f1b4ebbcf50a gcc/testsuite/gcc.target/powerpc/tfmode_off.c c2edbb1afba546ea3ac8a5efcaca9c38 gcc/testsuite/gcc.target/powerpc/ti_math1.c c3d0d51284479d220a6166a0f362536c gcc/testsuite/gcc.target/powerpc/ti_math2.c *************** d5b2bba665576dc0538f9d0bd2142e62 gcc/te *** 64413,64418 **** --- 64531,64540 ---- eb96a92710915622b3f65dba4a30955d gcc/testsuite/gcc.target/s390/oscbreak-1.c 25c3bd00fd3d097e42ac8cfc215fd0c4 gcc/testsuite/gcc.target/s390/pfpo.c 182ebf3677a29bf9b1dbb033505f78dd gcc/testsuite/gcc.target/s390/pr104775.c + b65b6b60679fe5fe589b83fa813950ac gcc/testsuite/gcc.target/s390/pr106355-1.c + 7768189c94023d287d68251021ad2dee gcc/testsuite/gcc.target/s390/pr106355-2.c + a69e5256407f09ac05e2e19ea14c9e15 gcc/testsuite/gcc.target/s390/pr106355-3.c + 5680e7515cb52b85f38e10b48d5e6a75 gcc/testsuite/gcc.target/s390/pr106355.h 765307a040de72f2f4376b7068d68018 gcc/testsuite/gcc.target/s390/pr20927.c 85f31fb9b4b15529205376d3f6fa385c gcc/testsuite/gcc.target/s390/pr24624.c 7adacbd67601dc0845e556e5632cd718 gcc/testsuite/gcc.target/s390/pr27661.c *************** d733feb68f910c0d62c7cb454b6accf1 gcc/te *** 65493,65498 **** --- 65615,65624 ---- 4a1c45c1482afaf7fe165064453176a8 gcc/testsuite/gdc.dg/imports/gdc256.d 22f231195c5f7726c704d3f9d99b0d85 gcc/testsuite/gdc.dg/imports/gdc27.d aeec8ff75316a52def72f86d4bc1708c gcc/testsuite/gdc.dg/imports/gdcpkg256/package.d + 8fba2c4130687ac9061c9b748ca84568 gcc/testsuite/gdc.dg/imports/pr108050/mod1.d + 753f5121640aa2d9e67d4f235bed8d2b gcc/testsuite/gdc.dg/imports/pr108050/mod2.d + b0fb7628aa04803e7405378e8ff66d8c gcc/testsuite/gdc.dg/imports/pr108050/package.d + c1371b9d51218c700b58595265d42b2d gcc/testsuite/gdc.dg/imports/pr108877a.d 7ae8eee97923fab094ae5ca5a1eca902 gcc/testsuite/gdc.dg/imports/pr92216.d 796ad2b48562e457fdce3ffca9353f84 gcc/testsuite/gdc.dg/imports/runnable.d 16d15455223a5a9f99da9e1f4b2e2911 gcc/testsuite/gdc.dg/link.d *************** c0f2db1fcb83cbb41fda8295889368ff gcc/te *** 65508,65513 **** --- 65634,65647 ---- 1913e638608dc57b978438a45ade3c4f gcc/testsuite/gdc.dg/pr101127b.d 874906b0c6afe60dafbbc739053ac4eb gcc/testsuite/gdc.dg/pr101490.d 13e2f7b1a821d0fa1089525b3df15479 gcc/testsuite/gdc.dg/pr101640.d + 4043769c4b670791abe6549858a885b3 gcc/testsuite/gdc.dg/pr106139a.d + f4b93d30d706ee858eb3d1d73cac63f0 gcc/testsuite/gdc.dg/pr106139b.d + 78fb78f49f61330c2751bcc186e8fade gcc/testsuite/gdc.dg/pr106139c.d + 27e575511646bb151afbd1a856acdadc gcc/testsuite/gdc.dg/pr106139d.d + 9e838ba67909954cf1aa94614647413b gcc/testsuite/gdc.dg/pr107592.d + 5e07b36b71c4e1c18324a1aa28b644c9 gcc/testsuite/gdc.dg/pr108050.d + 531ba2cfc6bb317d132b6b86e9221526 gcc/testsuite/gdc.dg/pr108877.d + d636f6d2baa8700a534dfd6a53a96d3c gcc/testsuite/gdc.dg/pr110359.d d32aa8ed5ea10931be4ddb5bb9e863d8 gcc/testsuite/gdc.dg/pr89017.d 53fa8db94d4ca3fc9ba83769733dc0e7 gcc/testsuite/gdc.dg/pr89041.d 6c316b13f71ea31fcada56b58a41ebd1 gcc/testsuite/gdc.dg/pr89042a.d *************** bd3b792f2e9fae4293f32a0195335936 gcc/te *** 66056,66061 **** --- 66190,66196 ---- f7ebbab88f0a4f86e71b06e130f593ee gcc/testsuite/gdc.test/compilable/test21299c.d effd503ab143f07a377f69a6abd2e2ab gcc/testsuite/gdc.test/compilable/test21299d.d 0f65bb2b07e0bc8dcb7e5d89eaf5b3f7 gcc/testsuite/gdc.test/compilable/test21742.d + 08936419a9625265328cfea85871ada2 gcc/testsuite/gdc.test/compilable/test21794.d f8ec0845cd2590e50d27071453701fb7 gcc/testsuite/gdc.test/compilable/test22006.d 01b0e8acc140f229c41fe59a55df5574 gcc/testsuite/gdc.test/compilable/test22133.d 8bbe6fdb201585c810b1ed76e34ddba3 gcc/testsuite/gdc.test/compilable/test25.d *************** e31c57d6974d04e2c34bbe41ae8c9706 gcc/te *** 67088,67093 **** --- 67223,67229 ---- 02081a92305510de44e261c5fa5e3c34 gcc/testsuite/gdc.test/fail_compilation/ice17074.d 7324203f77755460dfd2b206a19d914d gcc/testsuite/gdc.test/fail_compilation/ice17690.d be6c358100e2ef5988a9d561cda1e90b gcc/testsuite/gdc.test/fail_compilation/ice17831.d + b976eedb61aadb4465ca084f17ddd25d gcc/testsuite/gdc.test/fail_compilation/ice20264.d 1ee2df9e731e72df6ec1774356fb21e5 gcc/testsuite/gdc.test/fail_compilation/ice21060.d 61d25d3d66bc23fc5137fdca361068bc gcc/testsuite/gdc.test/fail_compilation/ice2843.d c73e0422319d9ada15828705fb8abcaa gcc/testsuite/gdc.test/fail_compilation/ice4094.d *************** d2f401f9391bf1d2889872bbdc34f16b gcc/te *** 67877,67882 **** --- 68013,68022 ---- f1950e4b4b23dc2b32ca290715b1dd9c gcc/testsuite/gfortran.dg/ISO_Fortran_binding_8.f90 ad366711f9b7f7d71373eab3da4b4e4b gcc/testsuite/gfortran.dg/ISO_Fortran_binding_9.c 131a58eb857fe3f727bc57d2b9f21e8f gcc/testsuite/gfortran.dg/ISO_Fortran_binding_9.f90 + 8039ff93d1683c85f89961a47ca07935 gcc/testsuite/gfortran.dg/PR100029.f90 + 3a862d4d610ca334e395074243d0fe19 gcc/testsuite/gfortran.dg/PR100040.f90 + 1bb9c8f2a91f52e7916455864ee6937a gcc/testsuite/gfortran.dg/PR100132.f90 + 6999a567af5689945feacbc26380e000 gcc/testsuite/gfortran.dg/PR100245.f90 36cd9c1e3875c80db22097b9c2ad49b3 gcc/testsuite/gfortran.dg/PR19754_1.f90 e8f29c2ce9f345e588516849caa9db8f gcc/testsuite/gfortran.dg/PR19754_2.f90 7ea18cc404b53eee2348e3e57683bb56 gcc/testsuite/gfortran.dg/PR19872.f *************** c066328da870ad9b313bf9491c5b72d6 gcc/te *** 68353,68358 **** --- 68493,68499 ---- 7e01c786b8c72874d3ae753530cfb5cb gcc/testsuite/gfortran.dg/associate_24.f90 55bfeb67bee60022ebbe2186b11826b6 gcc/testsuite/gfortran.dg/associate_25.f90 c0997c9e951767642f9b109c7f40a532 gcc/testsuite/gfortran.dg/associate_26.f90 + 000795c302b3191fa720282e0b5b71c8 gcc/testsuite/gfortran.dg/associate_26a.f90 aecd7da9302bacf7aeebde56d90a2445 gcc/testsuite/gfortran.dg/associate_27.f90 366c019a469c1a5eac01c46514e12c86 gcc/testsuite/gfortran.dg/associate_28.f90 9236179c94e8ef2f6258dcf917d9dee9 gcc/testsuite/gfortran.dg/associate_29.f90 *************** fd5aa0aeb583bf1c520647699c09098c gcc/te *** 68591,68596 **** --- 68732,68738 ---- 1176bc1003bc9902e2cbbd0881833a6a gcc/testsuite/gfortran.dg/bind_c_usage_32.f90 487ac439b45d829bb00287edc9eb7e78 gcc/testsuite/gfortran.dg/bind_c_usage_33.f90 5ba4c967cb57e47c3083d78e775e9474 gcc/testsuite/gfortran.dg/bind_c_usage_33_c.c + fe581e5151066f7aab1872a01eedd446 gcc/testsuite/gfortran.dg/bind_c_usage_34.f90 d245d9e737fbf5c0213b3df7d060446c gcc/testsuite/gfortran.dg/bind_c_usage_5.f03 1b4c4194bd216642b83f69c705e997b9 gcc/testsuite/gfortran.dg/bind_c_usage_6.f03 298c127c34080232f15365f9c6db6fc0 gcc/testsuite/gfortran.dg/bind_c_usage_7.f03 *************** e22aa437c55ee962c7781d739761dfd4 gcc/te *** 69063,69069 **** 8d4999c0b84adf6f411457cf3deaee67 gcc/testsuite/gfortran.dg/class_55.f90 081b7861449ee503eb0eafc38aa74102 gcc/testsuite/gfortran.dg/class_56.f90 2fbf5aa2a748bac8f14f06f6aecf4b6a gcc/testsuite/gfortran.dg/class_57.f90 ! e5fb2c5d38e11474d612c7ab279406ba gcc/testsuite/gfortran.dg/class_58.f90 dd2c7b1cf9668f23e882c3d64580ab34 gcc/testsuite/gfortran.dg/class_59.f90 3559a2034886d45662cf5cdbdd177000 gcc/testsuite/gfortran.dg/class_6.f03 e8904afb9adfeb76555179cf83d18504 gcc/testsuite/gfortran.dg/class_60.f90 --- 69205,69211 ---- 8d4999c0b84adf6f411457cf3deaee67 gcc/testsuite/gfortran.dg/class_55.f90 081b7861449ee503eb0eafc38aa74102 gcc/testsuite/gfortran.dg/class_56.f90 2fbf5aa2a748bac8f14f06f6aecf4b6a gcc/testsuite/gfortran.dg/class_57.f90 ! 71ce5af334c27ba11d877d65ad0f7113 gcc/testsuite/gfortran.dg/class_58.f90 dd2c7b1cf9668f23e882c3d64580ab34 gcc/testsuite/gfortran.dg/class_59.f90 3559a2034886d45662cf5cdbdd177000 gcc/testsuite/gfortran.dg/class_6.f03 e8904afb9adfeb76555179cf83d18504 gcc/testsuite/gfortran.dg/class_60.f90 *************** a8f104492778b738ac5730dd1605432a gcc/te *** 69079,69084 **** --- 69221,69227 ---- cc0c048415b8d0593fe7e5b164763dc7 gcc/testsuite/gfortran.dg/class_7.f03 cd9759177f83fe4b6a6a007850b05c80 gcc/testsuite/gfortran.dg/class_70.f03 77eb9432daba5a35f6be287dfec77ae3 gcc/testsuite/gfortran.dg/class_71.f90 + a2da662ef1c6e78fb94337f5f919de4b gcc/testsuite/gfortran.dg/class_73.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 *************** f1da6751bbd1a6186b7f03b7f7e77113 gcc/te *** 69398,69403 **** --- 69541,69547 ---- d3d62d1603bee1c8f8a03953e6eebba0 gcc/testsuite/gfortran.dg/common_24.f d5539b20ee7c35bfc0fcb236052a68ea gcc/testsuite/gfortran.dg/common_25.f90 70a95b679d7df7dca534b69660b7f48b gcc/testsuite/gfortran.dg/common_26.f90 + d92cf739756be07096c110006ed91771 gcc/testsuite/gfortran.dg/common_27.f90 75ce44e9a564ff39f5a9738947fd61f0 gcc/testsuite/gfortran.dg/common_3.f90 d682a44a03643151e3f0046fc043a5f0 gcc/testsuite/gfortran.dg/common_4.f90 d2308c0b53d688aae1dcd0e309cb63c2 gcc/testsuite/gfortran.dg/common_5.f *************** bf2ca054d24e06523331d95407dee17a gcc/te *** 70205,70210 **** --- 70349,70355 ---- d5c2becdf2a2a9b3476dac72cfc54877 gcc/testsuite/gfortran.dg/extends_type_of_1.f03 400c9de8234ec3d29a78be5af6d85a84 gcc/testsuite/gfortran.dg/extends_type_of_2.f03 3485cc1f6803a287f97032484eec3440 gcc/testsuite/gfortran.dg/extends_type_of_3.f90 + e2f6b20fdc9bcc4ddec5f7df21ca5ff7 gcc/testsuite/gfortran.dg/extends_type_of_4.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 *************** daa1172ed1d5a6072057b20aaca3b1ec gcc/te *** 71150,71156 **** c6ccb0077483440bf572afc0c07cf295 gcc/testsuite/gfortran.dg/graphite/vect-pr40979.f90 7f4798472e54ab24309f0edab16c91d1 gcc/testsuite/gfortran.dg/graphite/vect-pr94043.f90 f9932e22f4bc6baa989154035dbac7c1 gcc/testsuite/gfortran.dg/guality/arg1.f90 ! 2f0ace5fbd29c7448cb42dfa5744b571 gcc/testsuite/gfortran.dg/guality/guality.exp 9e2790792b04c03a1a0860c862a27b4b gcc/testsuite/gfortran.dg/guality/pr41558.f90 26d42c53448fb26d2b66a4b1d93693d3 gcc/testsuite/gfortran.dg/hollerith.f90 855af7807ad9d75aef7ff85c2859a0c2 gcc/testsuite/gfortran.dg/hollerith2.f90 --- 71295,71301 ---- c6ccb0077483440bf572afc0c07cf295 gcc/testsuite/gfortran.dg/graphite/vect-pr40979.f90 7f4798472e54ab24309f0edab16c91d1 gcc/testsuite/gfortran.dg/graphite/vect-pr94043.f90 f9932e22f4bc6baa989154035dbac7c1 gcc/testsuite/gfortran.dg/guality/arg1.f90 ! 6b32282df9f1297396b3fc91c76de4e0 gcc/testsuite/gfortran.dg/guality/guality.exp 9e2790792b04c03a1a0860c862a27b4b gcc/testsuite/gfortran.dg/guality/pr41558.f90 26d42c53448fb26d2b66a4b1d93693d3 gcc/testsuite/gfortran.dg/hollerith.f90 855af7807ad9d75aef7ff85c2859a0c2 gcc/testsuite/gfortran.dg/hollerith2.f90 *************** f6a9f065bf39a878f022cf1db27088dd gcc/te *** 71196,71201 **** --- 71341,71347 ---- 7c6d282fb7219ea8b6437744a0db709a gcc/testsuite/gfortran.dg/ibclr_1.f90 ec89660ed76fbd433f83eba57f853883 gcc/testsuite/gfortran.dg/ibits.f90 e6c37a9def09433a6a2f8bc1d9220133 gcc/testsuite/gfortran.dg/ibits_1.f90 + 9d771e73f5b650886f4c509ed7ba4557 gcc/testsuite/gfortran.dg/ibits_2.f90 9f3ccb4943f5f4737bc99acb427e11b0 gcc/testsuite/gfortran.dg/ibset_1.f90 cc7201a9525a4793e8bf391d30c3653d gcc/testsuite/gfortran.dg/ichar_1.f90 8201f75f0deee5480134fc16f1113f0c gcc/testsuite/gfortran.dg/ichar_2.f90 *************** e8ea43c66fd6d11794019ae65955f295 gcc/te *** 71227,71232 **** --- 71373,71379 ---- 124ba3e9f6c8b5f20acc161515766cff gcc/testsuite/gfortran.dg/illegal_boz_arg_1.f90 4a93b827c3cbecf80132e133c9ffea76 gcc/testsuite/gfortran.dg/illegal_boz_arg_2.f90 b8ee27c210d03cbdecd63b4186ae10dc gcc/testsuite/gfortran.dg/illegal_boz_arg_3.f90 + eb8442e24d68dcf7d000ba19c179291d gcc/testsuite/gfortran.dg/illegal_boz_arg_4.f90 ca72e2369ff19137157ceaaa2012b721 gcc/testsuite/gfortran.dg/illegal_char.f90 d827b941652feab002a335b27a4dd9f2 gcc/testsuite/gfortran.dg/imag_1.f eaad0ac26fe911d75f0d0769ade8436c gcc/testsuite/gfortran.dg/impl_do_var_data.f90 *************** d0fdfb1260988468dbfc57fc49c04ccf gcc/te *** 71310,71315 **** --- 71457,71463 ---- 72b9f769cd2283ce9b7b556b1c93f39d gcc/testsuite/gfortran.dg/index_2.f90 6c6d1484cc1b9a1f8096ff70ef06c025 gcc/testsuite/gfortran.dg/index_3.f90 1e3290f670df03f4a15dc4b8eb731606 gcc/testsuite/gfortran.dg/index_4.f90 + 4238009ecd17e63a28a02c73d37bd245 gcc/testsuite/gfortran.dg/index_6.f90 c32bcbb681492fc8fc92c7fc08a343a1 gcc/testsuite/gfortran.dg/init_char_with_nonchar_ctr.f90 3b7a3a6914e202c00024fd409f044ac6 gcc/testsuite/gfortran.dg/init_flag_1.f90 1d493b9ebf831129455128eb3bc913e8 gcc/testsuite/gfortran.dg/init_flag_10.f90 *************** ba84e533d9d999d5cafa2eeaa917daa3 gcc/te *** 71441,71452 **** --- 71589,71602 ---- 9a94a4b4c3991300273d3eff16279572 gcc/testsuite/gfortran.dg/intent_optimize_1.f90 22c1f90f08c40546088dde105474e28c gcc/testsuite/gfortran.dg/intent_optimize_2.f90 88021d562ad8f075c52113ab0ba9582c gcc/testsuite/gfortran.dg/intent_optimize_3.f90 + 91ea197b8dde98766b625414c120237d gcc/testsuite/gfortran.dg/intent_optimize_4.f90 6ad3133cfe62e722e018d386dbfd3404 gcc/testsuite/gfortran.dg/intent_out_1.f90 ba93579108c80828d584884c6d1a3d2a gcc/testsuite/gfortran.dg/intent_out_10.f90 7fb312ab28cce81b97498d8f3f4e4685 gcc/testsuite/gfortran.dg/intent_out_11.f90 844229c9eb8a37075774f7aa5ffaec68 gcc/testsuite/gfortran.dg/intent_out_12.f90 eaa197e83969427d3078aff95445bee7 gcc/testsuite/gfortran.dg/intent_out_13.f90 43d0dd409d7c93807035f978a18ed5c5 gcc/testsuite/gfortran.dg/intent_out_14.f90 + a82b141adaff542c8c03c6c2cbbb132f gcc/testsuite/gfortran.dg/intent_out_15.f90 633b564832f11b231ba2e100650127bb gcc/testsuite/gfortran.dg/intent_out_2.f90 88fc721c29050bdf0a2d0d7c4e316336 gcc/testsuite/gfortran.dg/intent_out_3.f90 a4fb1377a7e3fd7d6f3a448f1c020623 gcc/testsuite/gfortran.dg/intent_out_4.f90 *************** c18b2575d6a9b63674756f658ca93389 gcc/te *** 72172,72177 **** --- 72322,72328 ---- 1ce8153704ce4cea80385ed72012931d gcc/testsuite/gfortran.dg/nearest_3.f90 07145278f20c5f56fba9fc10e9fbfba2 gcc/testsuite/gfortran.dg/nearest_4.f90 e5f705447cfe3093ee85b04291d3f80c gcc/testsuite/gfortran.dg/nearest_5.f90 + a00cc61eb38cdddde8ae56513298e5bc gcc/testsuite/gfortran.dg/nearest_6.f90 5d4401879d53df84adcf50a08316a8f8 gcc/testsuite/gfortran.dg/negative-z-descriptor.f90 d2f9406b4dddc3388ec13c7a6343827c gcc/testsuite/gfortran.dg/negative_automatic_size.f90 e1c6d38824a9f8693b5457db2f9968c6 gcc/testsuite/gfortran.dg/negative_unit.f *************** ccf25bc57c7fd0870f3fa7fea60340a6 gcc/te *** 72205,72211 **** 2c6f079dd50cdebef82b1b476222d282 gcc/testsuite/gfortran.dg/newunit_6.f90 25543ea4ce258c615de028583580ae15 gcc/testsuite/gfortran.dg/nint_1.f90 16d9cc312dc3603f84627c0edcbc49a2 gcc/testsuite/gfortran.dg/nint_2.f90 ! f867bd2d1caf94b8344ac3386b825ea1 gcc/testsuite/gfortran.dg/nint_p7.f90 9aae8ef0f1f255b8f35b6d5e6807059a gcc/testsuite/gfortran.dg/no-automatic.f90 03b84fc5eca43cc5d1a0b1a93937da73 gcc/testsuite/gfortran.dg/no_arg_check_1.f90 c60b2c37f26b9fe5b1daba95b7c848d0 gcc/testsuite/gfortran.dg/no_arg_check_2.f90 --- 72356,72362 ---- 2c6f079dd50cdebef82b1b476222d282 gcc/testsuite/gfortran.dg/newunit_6.f90 25543ea4ce258c615de028583580ae15 gcc/testsuite/gfortran.dg/nint_1.f90 16d9cc312dc3603f84627c0edcbc49a2 gcc/testsuite/gfortran.dg/nint_2.f90 ! 75f491150db9183d7c839b8231781c0a gcc/testsuite/gfortran.dg/nint_p7.f90 9aae8ef0f1f255b8f35b6d5e6807059a gcc/testsuite/gfortran.dg/no-automatic.f90 03b84fc5eca43cc5d1a0b1a93937da73 gcc/testsuite/gfortran.dg/no_arg_check_1.f90 c60b2c37f26b9fe5b1daba95b7c848d0 gcc/testsuite/gfortran.dg/no_arg_check_2.f90 *************** e67abf33c2578358a5d5bab3e11f00e9 gcc/te *** 72243,72248 **** --- 72394,72400 ---- a268bf435ff3e542009031168b6619a0 gcc/testsuite/gfortran.dg/null_8.f90 f1e3cfba25a768bf7f9073932a36c7db gcc/testsuite/gfortran.dg/null_9.f90 fb9d6abbd9b9049c00ee6e992d1a8859 gcc/testsuite/gfortran.dg/null_actual.f90 + 84b898ed35bd484e690bcec9cd9f1724 gcc/testsuite/gfortran.dg/null_actual_3.f90 eb6af590881f3e995fc6b2c78089f277 gcc/testsuite/gfortran.dg/nullify_1.f f202e3843710f9492560538fa53c3847 gcc/testsuite/gfortran.dg/nullify_2.f90 768d37ebff7930db8f8a99ac16b90d32 gcc/testsuite/gfortran.dg/nullify_3.f90 *************** c081e1f510a2d68ec176356111dab188 gcc/te *** 72493,72506 **** d99cea26823109c0bb853b42df152999 gcc/testsuite/gfortran.dg/pr102715.f90 f28998ba16e7a78633a9de3d5eaf0667 gcc/testsuite/gfortran.dg/pr102816.f90 cc6ac3aa934c104c85fad8e43ae6985d gcc/testsuite/gfortran.dg/pr102817.f90 ! 87fa8e20851e07d06d4d5991b6fc240d gcc/testsuite/gfortran.dg/pr102860.f90 ! a082b0c5fdbc266f00ae264494538e49 gcc/testsuite/gfortran.dg/pr103505.f90 dc7a57f897711dfb7a3fba377198c10c gcc/testsuite/gfortran.dg/pr103588.f90 a27b232d198fc2463c04af17903b1b4c gcc/testsuite/gfortran.dg/pr103606.f90 ea7b00fcccc1df091b8087b16e502d92 gcc/testsuite/gfortran.dg/pr103607.f90 448c7638e7741c015d95260e6491d8fa gcc/testsuite/gfortran.dg/pr103692.f90 7a5b7a18d621b5e1b9d04b73e259ddd4 gcc/testsuite/gfortran.dg/pr104849.f90 22283af469347d85bd1fe4dae42939a3 gcc/testsuite/gfortran.dg/pr105230.f90 984f8307f36d56a0b48b5acce2dd5eb5 gcc/testsuite/gfortran.dg/pr12884.f 64075248b9d1bffd6f380bb4e2a6eae0 gcc/testsuite/gfortran.dg/pr15129.f90 e9cbd51db4e16292fc5dd1fead2e5a49 gcc/testsuite/gfortran.dg/pr15140.f90 --- 72645,72680 ---- d99cea26823109c0bb853b42df152999 gcc/testsuite/gfortran.dg/pr102715.f90 f28998ba16e7a78633a9de3d5eaf0667 gcc/testsuite/gfortran.dg/pr102816.f90 cc6ac3aa934c104c85fad8e43ae6985d gcc/testsuite/gfortran.dg/pr102817.f90 ! c35066e873add73fe333d803e2854739 gcc/testsuite/gfortran.dg/pr102860.f90 ! b624133cafd19857eb2915c507731455 gcc/testsuite/gfortran.dg/pr103504.f90 ! 0ca27f571c157feff083b371f4147538 gcc/testsuite/gfortran.dg/pr103505.f90 dc7a57f897711dfb7a3fba377198c10c gcc/testsuite/gfortran.dg/pr103588.f90 a27b232d198fc2463c04af17903b1b4c gcc/testsuite/gfortran.dg/pr103606.f90 ea7b00fcccc1df091b8087b16e502d92 gcc/testsuite/gfortran.dg/pr103607.f90 448c7638e7741c015d95260e6491d8fa gcc/testsuite/gfortran.dg/pr103692.f90 + 7880bd79a12dd5ee034f461bbaebed02 gcc/testsuite/gfortran.dg/pr103694.f90 + 4d8d0ebddb3e8c68a7b0604135d30ec0 gcc/testsuite/gfortran.dg/pr104313.f 7a5b7a18d621b5e1b9d04b73e259ddd4 gcc/testsuite/gfortran.dg/pr104849.f90 22283af469347d85bd1fe4dae42939a3 gcc/testsuite/gfortran.dg/pr105230.f90 + 04437d9e5ce70eee9f187cabd7a3ae39 gcc/testsuite/gfortran.dg/pr105633.f90 + d4e9f09fafa1c1f5e009aedb22732715 gcc/testsuite/gfortran.dg/pr105954.f90 + 088bf2cb06c9d1fbdf7cdf44f05322a7 gcc/testsuite/gfortran.dg/pr106209.f90 + 8466016b4be322b136a27ed5b067e9d8 gcc/testsuite/gfortran.dg/pr106331.f90 + 667a7f6ee3d729bf7c1cce653b1cff1c gcc/testsuite/gfortran.dg/pr106857.f90 + 09719e2d59fe58682ef7a737cdf01620 gcc/testsuite/gfortran.dg/pr106934.f90 + e1ccca85dc432ca649742c05520157d9 gcc/testsuite/gfortran.dg/pr106945.f90 + a9c6ba4d14cec93cd2edec54fda6a916 gcc/testsuite/gfortran.dg/pr106985.f90 + eb96b826eeaf84f157c8635706721d40 gcc/testsuite/gfortran.dg/pr106986.f90 + 11beaeea87162696e195837c5224fa2d gcc/testsuite/gfortran.dg/pr107054.f90 + ba47b0afdca4ac305945fe0fc5dcb1d2 gcc/testsuite/gfortran.dg/pr107872.f90 + 51c1978cd57328dca2798eaa646a34b7 gcc/testsuite/gfortran.dg/pr108131.f90 + d10ee488f163142e4a7a74b3c6a8e12f gcc/testsuite/gfortran.dg/pr108193.f90 + b1a3cfdc35d1fd73d94697f204666296 gcc/testsuite/gfortran.dg/pr108420.f90 + ed294cde0b27b346f37fa7a32bf91ea7 gcc/testsuite/gfortran.dg/pr108421.f90 + 28a670973e90363c78fb79b83bf40490 gcc/testsuite/gfortran.dg/pr108501.f90 + 1836eed7a2cdfcdba4e590204735e288 gcc/testsuite/gfortran.dg/pr108502.f90 + bb19038b0b7c42c6403475e34570ae3d gcc/testsuite/gfortran.dg/pr108527.f90 + a367beafff806aa88b45192d28091201 gcc/testsuite/gfortran.dg/pr108529.f90 984f8307f36d56a0b48b5acce2dd5eb5 gcc/testsuite/gfortran.dg/pr12884.f 64075248b9d1bffd6f380bb4e2a6eae0 gcc/testsuite/gfortran.dg/pr15129.f90 e9cbd51db4e16292fc5dd1fead2e5a49 gcc/testsuite/gfortran.dg/pr15140.f90 *************** cca539dda55db1fe3d9ab628330a364e gcc/te *** 72668,72674 **** 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 f3e2e80b3229e8fec07b3263f3453fed gcc/testsuite/gfortran.dg/pr47757-2.f90 9d5355ff4338853aec406e4f5edae9ea gcc/testsuite/gfortran.dg/pr47757-3.f90 --- 72842,72848 ---- 8dc00e13e8017aa32673c1673ad9bb9b gcc/testsuite/gfortran.dg/pr47054_1.f90 dbb1bf91a8856be53abe8cd67ff0f627 gcc/testsuite/gfortran.dg/pr47054_2.f90 18cfa159030f8b4b160fe0d8e9420c68 gcc/testsuite/gfortran.dg/pr47574.f90 ! 5bac258cba16f4d9d341434b93beae68 gcc/testsuite/gfortran.dg/pr47614.f 9ff6a3335f233c3bfe3926ceefc544b9 gcc/testsuite/gfortran.dg/pr47757-1.f90 f3e2e80b3229e8fec07b3263f3453fed gcc/testsuite/gfortran.dg/pr47757-2.f90 9d5355ff4338853aec406e4f5edae9ea gcc/testsuite/gfortran.dg/pr47757-3.f90 *************** a3fc06fbb8d6c53a22462ce8a5fade30 gcc/te *** 72726,72732 **** fcdffb26a3d7f862eb7d9eaee5b49b49 gcc/testsuite/gfortran.dg/pr58027.f90 1ca63f28ae284979c3b2b1c01dc88abf gcc/testsuite/gfortran.dg/pr58290.f90 bc63d6ff9d523e63fa42eb148fceb4c6 gcc/testsuite/gfortran.dg/pr58484.f ! 756af060f4f83f1c7fac64450555d67c gcc/testsuite/gfortran.dg/pr58968.f 38761fc6ca20bfa8a4d47530bb0173c3 gcc/testsuite/gfortran.dg/pr59107.f90 54642dc29547df928c052d04531cae6f gcc/testsuite/gfortran.dg/pr59440-1.f90 29517347731146172a1733a27581daa9 gcc/testsuite/gfortran.dg/pr59440-2.f90 --- 72900,72906 ---- fcdffb26a3d7f862eb7d9eaee5b49b49 gcc/testsuite/gfortran.dg/pr58027.f90 1ca63f28ae284979c3b2b1c01dc88abf gcc/testsuite/gfortran.dg/pr58290.f90 bc63d6ff9d523e63fa42eb148fceb4c6 gcc/testsuite/gfortran.dg/pr58484.f ! 2892cc9f5f933b8f3110403ca2a7f315 gcc/testsuite/gfortran.dg/pr58968.f 38761fc6ca20bfa8a4d47530bb0173c3 gcc/testsuite/gfortran.dg/pr59107.f90 54642dc29547df928c052d04531cae6f gcc/testsuite/gfortran.dg/pr59440-1.f90 29517347731146172a1733a27581daa9 gcc/testsuite/gfortran.dg/pr59440-2.f90 *************** b5430af005fc8cc1b6db9ceb57688fe3 gcc/te *** 72975,72980 **** --- 73149,73155 ---- 725e595013765639d219c2012948cd9d gcc/testsuite/gfortran.dg/pr85797.f90 e85019fafc2465365ffe52752040d464 gcc/testsuite/gfortran.dg/pr85798.f90 6de8b7c7567dcceb9bbbf46563935272 gcc/testsuite/gfortran.dg/pr85816.f90 + 81b431dbb9eb76aee80a85f44bfec348 gcc/testsuite/gfortran.dg/pr85877.f90 052b31eec86fd95fce096fa3b0045dd3 gcc/testsuite/gfortran.dg/pr85895.f90 e74818417ee12b9bac513c2c5a86fdd1 gcc/testsuite/gfortran.dg/pr85938.f90 97f1dd51f9cd45871f43a46b11736fb7 gcc/testsuite/gfortran.dg/pr85975.f90 *************** de07c4c374bce1b1d56411fc426874db gcc/te *** 73190,73195 **** --- 73365,73372 ---- a14ff0a951de87e6e87ae4eba23ae32e gcc/testsuite/gfortran.dg/pr95978.f90 d21234ae551d720040933254256c6861 gcc/testsuite/gfortran.dg/pr95980.f90 ac524c67dbf5c0b6588328a02f46a124 gcc/testsuite/gfortran.dg/pr95980_2.f90 + 46d582cee8b64dec9357e5dc86eb10c8 gcc/testsuite/gfortran.dg/pr96024.f90 + 95f12b0fb52668b7e207c4e71746b5c6 gcc/testsuite/gfortran.dg/pr96025.f90 45d800261f64da91bf2398a00691d7c4 gcc/testsuite/gfortran.dg/pr96086.f90 62ba5dd0303d84c214429cc5293a10ed gcc/testsuite/gfortran.dg/pr96312.f90 7607f1a87517f55c7ef37367d96d802e gcc/testsuite/gfortran.dg/pr96319.f90 *************** e6c7c7cbf695fec200c964f4e3b125ec gcc/te *** 73647,73652 **** --- 73824,73830 ---- eef9c4fb4632664f421c4067e9f7dd53 gcc/testsuite/gfortran.dg/save_4.f90 9619c507201f560eff2135e49692d052 gcc/testsuite/gfortran.dg/save_5.f90 bcec3240f40aa5093a05d7cd8024acf3 gcc/testsuite/gfortran.dg/save_6.f90 + 751220763a6526f3644c983c901f1c25 gcc/testsuite/gfortran.dg/save_7.f90 969e348eec71de0c469550da97db323d gcc/testsuite/gfortran.dg/save_common.f90 8077a483f690b8b2a62c945c63fa4b57 gcc/testsuite/gfortran.dg/save_parameter.f90 1a1f478cd1af5c7ca0f1139bd3142853 gcc/testsuite/gfortran.dg/save_result.f90 *************** c6f31959a6f27a049ee01954f0a811f0 gcc/te *** 73741,73746 **** --- 73919,73925 ---- 768c7a5a7ac507eb3c4fef8d48f0a08b gcc/testsuite/gfortran.dg/semicolon_free.f90 c137ead9ed9a3cbd4ca5f75d50965b1c gcc/testsuite/gfortran.dg/semicolon_free_2.f90 e5ae2b5b89173ed8361161ef10e352e2 gcc/testsuite/gfortran.dg/sequence_types_1.f90 + 600b9b73c8e3223409f781d7f1222630 gcc/testsuite/gfortran.dg/set_exponent_1.f90 cd908f2e51ce36e1d1deeca7c6ee72f6 gcc/testsuite/gfortran.dg/set_vm_limit.c 8c21b488e7773e67f9472b6a064868b9 gcc/testsuite/gfortran.dg/shape_1.f90 2a136a103d2e76c84d90569febf9b783 gcc/testsuite/gfortran.dg/shape_10.f90 *************** dfedf49d73e274e5c02366ccc586a488 gcc/te *** 74246,74251 **** --- 74425,74431 ---- a38aec42f7e0058d56277b2bdbf39923 gcc/testsuite/gfortran.dg/unpack_bounds_3.f90 a16cffa781475700beb86772ba80edef gcc/testsuite/gfortran.dg/unpack_init_expr.f03 77425eab660cd99123828c97f2657ca9 gcc/testsuite/gfortran.dg/unpack_mask_1.f90 + 3f54f0cd1eb1eee8a11f6a750a442af4 gcc/testsuite/gfortran.dg/unpack_vector_1.f90 21ad1ac865ebfe7d633e040a09836574 gcc/testsuite/gfortran.dg/unpack_zerosize_1.f90 fbd9ec98233c6fecb3330e95ece01679 gcc/testsuite/gfortran.dg/unreferenced_use_assoc_1.f90 7b43b740c1827893f88c955a8b8544ac gcc/testsuite/gfortran.dg/unresolved_fixup_1.f90 *************** ab23eaa0145abe5e1e3f8db59e1c30f8 gcc/te *** 78644,78650 **** fa0e9c87b4bb5cbbec31c013f106c05b gcc/testsuite/lib/go-dg.exp 24fc5b65239aa599bcd8a360fa686372 gcc/testsuite/lib/go-torture.exp 9fb73c74927f136ca96a1650a0afcbee gcc/testsuite/lib/go.exp ! 181c1deb48766e14cacedce4f54cb10c gcc/testsuite/lib/lto.exp f684b812f5a56badb83daebd4c6b8eb9 gcc/testsuite/lib/mike-g++.exp f096fbc7a08f3654b6bfcddaa25889b1 gcc/testsuite/lib/mike-gcc.exp 12c4ef671535e7ec4ef84793ca5dbfda gcc/testsuite/lib/multiline.exp --- 78824,78830 ---- fa0e9c87b4bb5cbbec31c013f106c05b gcc/testsuite/lib/go-dg.exp 24fc5b65239aa599bcd8a360fa686372 gcc/testsuite/lib/go-torture.exp 9fb73c74927f136ca96a1650a0afcbee gcc/testsuite/lib/go.exp ! 2ab9ce2189ed7adee800d1c496bfbc4a gcc/testsuite/lib/lto.exp f684b812f5a56badb83daebd4c6b8eb9 gcc/testsuite/lib/mike-g++.exp f096fbc7a08f3654b6bfcddaa25889b1 gcc/testsuite/lib/mike-gcc.exp 12c4ef671535e7ec4ef84793ca5dbfda gcc/testsuite/lib/multiline.exp *************** af4d6049c526358b0bced72089af7076 gcc/te *** 78656,78662 **** 798104da27cee008686141a98b520f8b gcc/testsuite/lib/options.exp 9440d87b50965ff5486b551ef11a634a gcc/testsuite/lib/plugin-support.exp cd778530c8ca650e7a6e2de7066010bd gcc/testsuite/lib/profopt.exp ! 658ad08ae0f9384c016baf7141dede6d gcc/testsuite/lib/prune.exp 2ad9a8996d5e8fa158376c2f08e51439 gcc/testsuite/lib/scanasm.exp b0a4036b6c7e5c72770103d9d03169c5 gcc/testsuite/lib/scandump.exp 96a8959535595b881ea8a82d0869c90b gcc/testsuite/lib/scanipa.exp --- 78836,78842 ---- 798104da27cee008686141a98b520f8b gcc/testsuite/lib/options.exp 9440d87b50965ff5486b551ef11a634a gcc/testsuite/lib/plugin-support.exp cd778530c8ca650e7a6e2de7066010bd gcc/testsuite/lib/profopt.exp ! d3953b911021bab215fdb40fdf598378 gcc/testsuite/lib/prune.exp 2ad9a8996d5e8fa158376c2f08e51439 gcc/testsuite/lib/scanasm.exp b0a4036b6c7e5c72770103d9d03169c5 gcc/testsuite/lib/scandump.exp 96a8959535595b881ea8a82d0869c90b gcc/testsuite/lib/scanipa.exp *************** d632d5568c00760aea7b18467091554c gcc/te *** 78669,78675 **** de7c3a30aab1a4360904bd68322b8c39 gcc/testsuite/lib/scanwpaipa.exp 84d4d1fa2ac6a05232c49ad827939a46 gcc/testsuite/lib/target-libpath.exp ca50260c50a30bdb6f74ff883e63b78b gcc/testsuite/lib/target-supports-dg.exp ! 6dc7d183e9cec65a00791e48498f56aa gcc/testsuite/lib/target-supports.exp 201116acbb88a91edc571f6c7b961f79 gcc/testsuite/lib/target-utils.exp 2dcea44ea4fe54415e381cfa752f4c4d gcc/testsuite/lib/timeout-dg.exp d4e470f82175a3f3c70c1de64a1e104d gcc/testsuite/lib/timeout.exp --- 78849,78855 ---- de7c3a30aab1a4360904bd68322b8c39 gcc/testsuite/lib/scanwpaipa.exp 84d4d1fa2ac6a05232c49ad827939a46 gcc/testsuite/lib/target-libpath.exp ca50260c50a30bdb6f74ff883e63b78b gcc/testsuite/lib/target-supports-dg.exp ! fba7d50e070139699fbe53da2defcf3f gcc/testsuite/lib/target-supports.exp 201116acbb88a91edc571f6c7b961f79 gcc/testsuite/lib/target-utils.exp 2dcea44ea4fe54415e381cfa752f4c4d gcc/testsuite/lib/timeout-dg.exp d4e470f82175a3f3c70c1de64a1e104d gcc/testsuite/lib/timeout.exp *************** b4be426da366ec553dae1b61ab01654e gcc/tr *** 79728,79741 **** 225440007d2169d1603a2d188e9adb72 gcc/tree-hasher.h fc64052660585b3d6d27ef83d34ddf40 gcc/tree-if-conv.c 0fe86b2b9a95865dd2aea247222d4dcf gcc/tree-if-conv.h ! 799bd1fec4db3cca20d6fb4d217b2c9a gcc/tree-inline.c 8454acd4d01cb3582c705e88d74d3283 gcc/tree-inline.h b78983a1e11b29b129e9c3085568c653 gcc/tree-into-ssa.c 6f7f61edb92c610f51c0a4c63816d0c9 gcc/tree-into-ssa.h 128a1bf3cc21b0667fce6afbc582ece4 gcc/tree-iterator.c 0c10dc55c53a2f9a6148855ba4710b52 gcc/tree-iterator.h ! 9adfa23fdb9a946b91be7a3afdb6aa16 gcc/tree-loop-distribution.c ! cde5a702e58751dbff7847d535256346 gcc/tree-nested.c 97f5a7e0334053228b88087b732f6a67 gcc/tree-nested.h e220e44e761cee85214b2cafa2e4849b gcc/tree-nrv.c 0334a4500c28bc021f639d715636c4dc gcc/tree-object-size.c --- 79908,79921 ---- 225440007d2169d1603a2d188e9adb72 gcc/tree-hasher.h fc64052660585b3d6d27ef83d34ddf40 gcc/tree-if-conv.c 0fe86b2b9a95865dd2aea247222d4dcf gcc/tree-if-conv.h ! 43c72448227eefeed839798c46a20d16 gcc/tree-inline.c 8454acd4d01cb3582c705e88d74d3283 gcc/tree-inline.h b78983a1e11b29b129e9c3085568c653 gcc/tree-into-ssa.c 6f7f61edb92c610f51c0a4c63816d0c9 gcc/tree-into-ssa.h 128a1bf3cc21b0667fce6afbc582ece4 gcc/tree-iterator.c 0c10dc55c53a2f9a6148855ba4710b52 gcc/tree-iterator.h ! 16511a3e56252e4c36964dc68a06f737 gcc/tree-loop-distribution.c ! ae2c35e47281f03e3fdb0779f619085b gcc/tree-nested.c 97f5a7e0334053228b88087b732f6a67 gcc/tree-nested.h e220e44e761cee85214b2cafa2e4849b gcc/tree-nrv.c 0334a4500c28bc021f639d715636c4dc gcc/tree-object-size.c *************** b4e0a37f771fc4a76ce646464d82d9f5 gcc/tr *** 79753,79772 **** 30e1ca6d5662e9320f1c3aa8bd91cfcb gcc/tree-profile.c c1752b439ea86c5f62b8119caa1c6afc gcc/tree-scalar-evolution.c 017de0578fb1371eef8cf4955b47471f gcc/tree-scalar-evolution.h ! c7c8fc4b09a196228fa1f9c110a4d369 gcc/tree-sra.c 71cc20d4743a15fefb27446e7653e2d1 gcc/tree-sra.h 87d8129acd88720031e13284b94d5bd1 gcc/tree-ssa-address.c fbc43c20731949aace70a7fd40e3686a gcc/tree-ssa-address.h b557b57367a5e37be104196948525f3a gcc/tree-ssa-alias.c 48a56f2cb3132e7430e35159af1e1e6b gcc/tree-ssa-alias.h ! ad882168a9a92ac846c717e3535d5329 gcc/tree-ssa-ccp.c e2bf1c52b8c66cfb9bf468c7c60b243f gcc/tree-ssa-ccp.h e245cf4b2d0a0ab436575b5267da6b9e gcc/tree-ssa-coalesce.c fb5fb25c0bf84f4deb3f9b217455a9bb gcc/tree-ssa-coalesce.h ac0b1053dfb49bc5b0a1730094fc3ea9 gcc/tree-ssa-copy.c e98fdeb69a40f7971fecbcf25d91b5e2 gcc/tree-ssa-dce.c 4d3bb522f662c24caa6940d29527d3bf gcc/tree-ssa-dce.h ! 034e6355a333834ee627ca3b1a0a6327 gcc/tree-ssa-dom.c 3fd94e5b2a00ff49e08ceed53182ee38 gcc/tree-ssa-dom.h 6e11b9149ccd3f77438a55a188da14f4 gcc/tree-ssa-dse.c 1e30750dd1407ad9992723b0e011b9b0 gcc/tree-ssa-dse.h --- 79933,79952 ---- 30e1ca6d5662e9320f1c3aa8bd91cfcb gcc/tree-profile.c c1752b439ea86c5f62b8119caa1c6afc gcc/tree-scalar-evolution.c 017de0578fb1371eef8cf4955b47471f gcc/tree-scalar-evolution.h ! 6b48866049e94f8f558317ae9704edfe gcc/tree-sra.c 71cc20d4743a15fefb27446e7653e2d1 gcc/tree-sra.h 87d8129acd88720031e13284b94d5bd1 gcc/tree-ssa-address.c fbc43c20731949aace70a7fd40e3686a gcc/tree-ssa-address.h b557b57367a5e37be104196948525f3a gcc/tree-ssa-alias.c 48a56f2cb3132e7430e35159af1e1e6b gcc/tree-ssa-alias.h ! 2833c126d42baba8d5940b86c4ff6935 gcc/tree-ssa-ccp.c e2bf1c52b8c66cfb9bf468c7c60b243f gcc/tree-ssa-ccp.h e245cf4b2d0a0ab436575b5267da6b9e gcc/tree-ssa-coalesce.c fb5fb25c0bf84f4deb3f9b217455a9bb gcc/tree-ssa-coalesce.h ac0b1053dfb49bc5b0a1730094fc3ea9 gcc/tree-ssa-copy.c e98fdeb69a40f7971fecbcf25d91b5e2 gcc/tree-ssa-dce.c 4d3bb522f662c24caa6940d29527d3bf gcc/tree-ssa-dce.h ! 7678f313d30402b1c9fc075565a23c46 gcc/tree-ssa-dom.c 3fd94e5b2a00ff49e08ceed53182ee38 gcc/tree-ssa-dom.h 6e11b9149ccd3f77438a55a188da14f4 gcc/tree-ssa-dse.c 1e30750dd1407ad9992723b0e011b9b0 gcc/tree-ssa-dse.h *************** e98fdeb69a40f7971fecbcf25d91b5e2 gcc/tr *** 79777,79783 **** 73da603af35d7ef37b8496ebd7dca5eb gcc/tree-ssa-loop-ch.c d2095c83dae5f50f4031680fea6684d9 gcc/tree-ssa-loop-im.c 9b06e443cde46a1c6558df7f4abda805 gcc/tree-ssa-loop-ivcanon.c ! 8287b51164ff1e134de843a506bb7dae gcc/tree-ssa-loop-ivopts.c 0caccb8fc15f362630bb5378f818e683 gcc/tree-ssa-loop-ivopts.h 23d79623554b440d4fb72e92305ea751 gcc/tree-ssa-loop-manip.c ec91776160764a815f2b46c7d27a1056 gcc/tree-ssa-loop-manip.h --- 79957,79963 ---- 73da603af35d7ef37b8496ebd7dca5eb gcc/tree-ssa-loop-ch.c d2095c83dae5f50f4031680fea6684d9 gcc/tree-ssa-loop-im.c 9b06e443cde46a1c6558df7f4abda805 gcc/tree-ssa-loop-ivcanon.c ! 9a28f9e88106e35042ca28f1e0b4991c gcc/tree-ssa-loop-ivopts.c 0caccb8fc15f362630bb5378f818e683 gcc/tree-ssa-loop-ivopts.h 23d79623554b440d4fb72e92305ea751 gcc/tree-ssa-loop-manip.c ec91776160764a815f2b46c7d27a1056 gcc/tree-ssa-loop-manip.h *************** ed91c7af1f1877eee14288a9011c4604 gcc/tr *** 79796,79808 **** 769f59bc5599d78b19aae3327674fda7 gcc/tree-ssa-pre.c 47231627d5b9c1bdccc192ad9bffcdfc gcc/tree-ssa-propagate.c df5bfed9047239abd92621f1e539d742 gcc/tree-ssa-propagate.h ! 36994b3260c265e6c49c6afbeb541866 gcc/tree-ssa-reassoc.c ! ed5bffc408c0169ffa4966e4169cb76e gcc/tree-ssa-sccvn.c 258ee06a3998b92f8c532aee82ba18e2 gcc/tree-ssa-sccvn.h feb7190fa935b6d25c621f31953a2228 gcc/tree-ssa-scopedtables.c 47b598298fa61c494505b9f430f243cf gcc/tree-ssa-scopedtables.h 893c3a2e43ffc65fb738bec71a93469d gcc/tree-ssa-sink.c ! c1e102a81f239575fbf259d47eb5e7c0 gcc/tree-ssa-strlen.c 8f45fcfe9c63e9106a68a75a236ac03a gcc/tree-ssa-strlen.h e0e046f2620756f55795dd38bd0331b8 gcc/tree-ssa-structalias.c 3dcabc4321b031865db6d427ec0f2c5d gcc/tree-ssa-tail-merge.c --- 79976,79988 ---- 769f59bc5599d78b19aae3327674fda7 gcc/tree-ssa-pre.c 47231627d5b9c1bdccc192ad9bffcdfc gcc/tree-ssa-propagate.c df5bfed9047239abd92621f1e539d742 gcc/tree-ssa-propagate.h ! aa0da4135f7d1c319849b79f4f81b91c gcc/tree-ssa-reassoc.c ! 7ce64bb3bc2033ee8e4ad8390f29d7c1 gcc/tree-ssa-sccvn.c 258ee06a3998b92f8c532aee82ba18e2 gcc/tree-ssa-sccvn.h feb7190fa935b6d25c621f31953a2228 gcc/tree-ssa-scopedtables.c 47b598298fa61c494505b9f430f243cf gcc/tree-ssa-scopedtables.h 893c3a2e43ffc65fb738bec71a93469d gcc/tree-ssa-sink.c ! e7c97cf7ef7c325ae62fcb84425b5727 gcc/tree-ssa-strlen.c 8f45fcfe9c63e9106a68a75a236ac03a gcc/tree-ssa-strlen.h e0e046f2620756f55795dd38bd0331b8 gcc/tree-ssa-structalias.c 3dcabc4321b031865db6d427ec0f2c5d gcc/tree-ssa-tail-merge.c *************** f685f69789eecc07be8cc42011b1ed06 gcc/tr *** 79815,79821 **** 7354dd478f9a6ffa467cab278853af66 gcc/tree-ssa-threadupdate.h bcb2b85822e2d63ea496c5071cd122f0 gcc/tree-ssa-uncprop.c 5071977461adfcabfa681f4e20d3b425 gcc/tree-ssa-uninit.c ! 9f3301d9a9fd774380dea7a74d3ecfee gcc/tree-ssa.c 574fe94352e0baddac8dca5a49f2b392 gcc/tree-ssa.h a10f26dfece937b8d3cd6995295e45ea gcc/tree-ssanames.c 3d5a97e5cb9701cc3c4f41f8e091dbd5 gcc/tree-ssanames.h --- 79995,80001 ---- 7354dd478f9a6ffa467cab278853af66 gcc/tree-ssa-threadupdate.h bcb2b85822e2d63ea496c5071cd122f0 gcc/tree-ssa-uncprop.c 5071977461adfcabfa681f4e20d3b425 gcc/tree-ssa-uninit.c ! 76cef1c033be697f8ade8d68ea21f282 gcc/tree-ssa.c 574fe94352e0baddac8dca5a49f2b392 gcc/tree-ssa.h a10f26dfece937b8d3cd6995295e45ea gcc/tree-ssanames.c 3d5a97e5cb9701cc3c4f41f8e091dbd5 gcc/tree-ssanames.h *************** d59856be0034d20fa3db4273fc8fa4bc gcc/tr *** 79841,79849 **** 10751a79fe750495853f00e04157d3bf gcc/tree-vectorizer.h c9783129905aec6436d087c4687eb51c gcc/tree-vrp.c c8c0df1c1023f580bc46385a5b4c1398 gcc/tree-vrp.h ! a0ca5a10b46bcc59476e360c4f031645 gcc/tree.c feec14642f58666703a84493d633bf44 gcc/tree.def ! c0379c1a37b7ab3d7e1bd0f88f887eb9 gcc/tree.h 1b65ea609f67932622f25f55787ab458 gcc/treestruct.def 13f52514cd082aaef51e5bf641c95001 gcc/tristate.cc f65513b8bb1e01109b10dae081b65514 gcc/tristate.h --- 80021,80029 ---- 10751a79fe750495853f00e04157d3bf gcc/tree-vectorizer.h c9783129905aec6436d087c4687eb51c gcc/tree-vrp.c c8c0df1c1023f580bc46385a5b4c1398 gcc/tree-vrp.h ! 43bf9d8a963473deb4a375071b9a7f06 gcc/tree.c feec14642f58666703a84493d633bf44 gcc/tree.def ! 594ded1449917ed124256f7ecfb6ad91 gcc/tree.h 1b65ea609f67932622f25f55787ab458 gcc/treestruct.def 13f52514cd082aaef51e5bf641c95001 gcc/tristate.cc f65513b8bb1e01109b10dae081b65514 gcc/tristate.h *************** a5a484b45e88c90e993b634185342d71 gcc/va *** 79863,79869 **** 339e0a29b5b2f84efc17bf9c6062f7fe gcc/value-range.cc b0d9e19182f317114b4ace7dd825aae4 gcc/value-range.h 1ea967a3a2963e2b8de5e7021b581b11 gcc/var-tracking.c ! cec2346ed2871a645e9128377795d889 gcc/varasm.c 653be5477fff14f116c6c0d91ccb8ed8 gcc/varasm.h c240a2fff05699dd50965775a1df8244 gcc/varpool.c 8f1a5181ac5eb5727cfdfb414fc2a534 gcc/vec-perm-indices.c --- 80043,80049 ---- 339e0a29b5b2f84efc17bf9c6062f7fe gcc/value-range.cc b0d9e19182f317114b4ace7dd825aae4 gcc/value-range.h 1ea967a3a2963e2b8de5e7021b581b11 gcc/var-tracking.c ! 6d065838893d4e09e2115a0f72b2ea90 gcc/varasm.c 653be5477fff14f116c6c0d91ccb8ed8 gcc/varasm.h c240a2fff05699dd50965775a1df8244 gcc/varpool.c 8f1a5181ac5eb5727cfdfb414fc2a534 gcc/vec-perm-indices.c *************** f5e07b81988ba373c2641b7058b4ff7b gcc/we *** 79883,79898 **** dd2af862c855085ed651c383b7cc8889 gcc/wide-int-bitmask.h 94ed324b2eb7f32f3a6d55f5d619799b gcc/wide-int-print.cc 83aae7736a83f425b3f7e52943ab2b1e gcc/wide-int-print.h ! 64c3b3451842814c9d19c6d6f60d3ada gcc/wide-int.cc ! 1ca675d08390ec2de1b90ebbba867352 gcc/wide-int.h 66087ece808189c4792bf7458f8b892e gcc/xcoff.h c1a1f47efd530769576572f8d67855e6 gcc/xcoffout.c 93de1ac25e02a930c0ccdc015fe3e4ff gcc/xcoffout.h ! 34474f174867c73e02e11be5642240c4 gnattools/ChangeLog aaa671ca98fa9f94bfedd0ab395c5505 gnattools/Makefile.in 8385a4d775aa1b9949c1f88488491c86 gnattools/configure 1e063bb0b806e41cc0ed23d1b7047746 gnattools/configure.ac ! 3d89c8be31381a0a8b36ff81c81814ed gotools/ChangeLog 303548024e6fc434838f0f42f2e9439e gotools/Makefile.am 2c91078d2a6aa9838e182a651608c4d0 gotools/Makefile.in 7e23031e2e274aaa07b61c1e8f18dc99 gotools/README --- 80063,80078 ---- dd2af862c855085ed651c383b7cc8889 gcc/wide-int-bitmask.h 94ed324b2eb7f32f3a6d55f5d619799b gcc/wide-int-print.cc 83aae7736a83f425b3f7e52943ab2b1e gcc/wide-int-print.h ! 56e680cb54b4451073b062c7c9cd73cc gcc/wide-int.cc ! 62d875f2f23b49dbb56192bea4f93cb2 gcc/wide-int.h 66087ece808189c4792bf7458f8b892e gcc/xcoff.h c1a1f47efd530769576572f8d67855e6 gcc/xcoffout.c 93de1ac25e02a930c0ccdc015fe3e4ff gcc/xcoffout.h ! ec3dc01a4b17ba844f35d4bf9ff52e45 gnattools/ChangeLog aaa671ca98fa9f94bfedd0ab395c5505 gnattools/Makefile.in 8385a4d775aa1b9949c1f88488491c86 gnattools/configure 1e063bb0b806e41cc0ed23d1b7047746 gnattools/configure.ac ! 45db7fb47644cdf89a4a8241bd6e90bf gotools/ChangeLog 303548024e6fc434838f0f42f2e9439e gotools/Makefile.am 2c91078d2a6aa9838e182a651608c4d0 gotools/Makefile.in 7e23031e2e274aaa07b61c1e8f18dc99 gotools/README *************** c4e8176c1964a5ebe0a55900f2141299 gotool *** 79903,79909 **** eb2aeb3a6cffe7b26a8f1c8a2da23dcd gotools/gofmt.1 59530bdf33659b29e73d4adb9f9f6552 include/COPYING d32239bcb673463ab874e80d47fae504 include/COPYING3 ! 81b002a17537131d23e58e9b93dcfbc8 include/ChangeLog 4263432a72ff47ed8bf420208ee7eea5 include/ChangeLog-9103 a43d76108493b20da790f953f829c6a5 include/ChangeLog.jit ca76b64dc47d03c76721ca95e36c7e3a include/ansidecl.h --- 80083,80089 ---- eb2aeb3a6cffe7b26a8f1c8a2da23dcd gotools/gofmt.1 59530bdf33659b29e73d4adb9f9f6552 include/COPYING d32239bcb673463ab874e80d47fae504 include/COPYING3 ! 11b814407da7deba4f82ba296968bd86 include/ChangeLog 4263432a72ff47ed8bf420208ee7eea5 include/ChangeLog-9103 a43d76108493b20da790f953f829c6a5 include/ChangeLog.jit ca76b64dc47d03c76721ca95e36c7e3a include/ansidecl.h *************** b07687cc9e0f873ac2e25628c5e7912a includ *** 79948,79954 **** 13e0194dd62a3563ba7c42d3db663f36 include/xregex2.h 6c83d27bff34846af1fad683ef5a77e3 include/xtensa-config.h 361482dd6b5b5eb7090fff3986fba68a install-sh ! 3c6a59d37441ce957c889406e9c19e09 intl/ChangeLog ad7ef2b19b44e4d5518287805d6ded02 intl/Makefile.in 6ec998bb4716c744bf8185e607f69301 intl/README 76ca170a525d5b84d90f0478fe788931 intl/VERSION --- 80128,80134 ---- 13e0194dd62a3563ba7c42d3db663f36 include/xregex2.h 6c83d27bff34846af1fad683ef5a77e3 include/xtensa-config.h 361482dd6b5b5eb7090fff3986fba68a install-sh ! 78890f1ef2f0afb4eee842bfde927336 intl/ChangeLog ad7ef2b19b44e4d5518287805d6ded02 intl/Makefile.in 6ec998bb4716c744bf8185e607f69301 intl/README 76ca170a525d5b84d90f0478fe788931 intl/VERSION *************** ec38b8a64a735196854a8f7d76b79a78 intl/p *** 79991,80002 **** b4758a0194e3e41362b939911472ce62 intl/relocatable.c bedade7bcfc3bc5eb09a2c6844f637f3 intl/relocatable.h 43f287d082528203fc85c1d2d81bf30d intl/textdomain.c ! a589bf2724798e0f0910454f09c4702e libada/ChangeLog 4147e5cbf56998a5d7cf62fdba854112 libada/Makefile.in c851e0f50ad5e334f1cdf3b8c0bae3e2 libada/configure 45fd7edb8aa72c41d45412e88010a79c libada/configure.ac 46d3fe6da7a771cc2d5420c4137a6861 libatomic/.gitignore ! 15a0c8d266bcbf07c7aa16a62a8bddb0 libatomic/ChangeLog d42e0b7d4357d88dd10273050673a93a libatomic/Makefile.am 7386f3baeb9aa80af4a01a49d38f0c10 libatomic/Makefile.in 879263fa8d462b018b9a483d6ac68e45 libatomic/acinclude.m4 --- 80171,80182 ---- b4758a0194e3e41362b939911472ce62 intl/relocatable.c bedade7bcfc3bc5eb09a2c6844f637f3 intl/relocatable.h 43f287d082528203fc85c1d2d81bf30d intl/textdomain.c ! c073ef2c07feb87da1c923d0565525d2 libada/ChangeLog 4147e5cbf56998a5d7cf62fdba854112 libada/Makefile.in c851e0f50ad5e334f1cdf3b8c0bae3e2 libada/configure 45fd7edb8aa72c41d45412e88010a79c libada/configure.ac 46d3fe6da7a771cc2d5420c4137a6861 libatomic/.gitignore ! 97357788eba6f3756d4019047827a2b2 libatomic/ChangeLog d42e0b7d4357d88dd10273050673a93a libatomic/Makefile.am 7386f3baeb9aa80af4a01a49d38f0c10 libatomic/Makefile.in 879263fa8d462b018b9a483d6ac68e45 libatomic/acinclude.m4 *************** e40ffd415624dadaa852688c304b3ff4 libato *** 80019,80025 **** --- 80199,80208 ---- d04f86e742ddfedb71fb4a3d0ceede39 libatomic/config/powerpc/host-config.h 123597bc839cd5b14a4a4cb054c8376a libatomic/config/rtems/host-config.h caa43be2ca8f1b926dd9c2c007e7b28d libatomic/config/rtems/lock.c + a8478ee8d2cd46e9a043499fcd5a5000 libatomic/config/s390/cas_n.c 971b5d8de77320963c1ba75ce62b82c9 libatomic/config/s390/exch_n.c + a5662851f79984e0d6f62988fd02f2e1 libatomic/config/s390/load_n.c + 49767832346a46e0dba239734437126c libatomic/config/s390/store_n.c d7c65698a2e7c7b08858f2afe9fc7b59 libatomic/config/x86/fenv.c 01cd847a8452ddeb89bd168abe8883c2 libatomic/config/x86/host-config.h f5ac0ec0371759c918422be1fa07158e libatomic/config/x86/init.c *************** c03a072efac9b30f8f8429ac52fd246b libato *** 80083,80089 **** 8a7308fda7ed1543cb9e3be0f8e47bce libatomic/testsuite/libatomic.c/atomic-store-5.c 40618200985a15bcba64f871863da498 libatomic/testsuite/libatomic.c/c.exp 97b0c9cdfcb733664bdf4efe0f5dc449 libatomic/testsuite/libatomic.c/generic-2.c ! 68bdfa3990cd3b4a7de23567d09e45da libbacktrace/ChangeLog eb3a88b53140eb234a99a4b3a55e56bf libbacktrace/ChangeLog.jit 0dee96cf83de0ad4944443622f9379c8 libbacktrace/Makefile.am cbc7c8020c0f8dcfa2d2a373f6da7e8b libbacktrace/Makefile.in --- 80266,80272 ---- 8a7308fda7ed1543cb9e3be0f8e47bce libatomic/testsuite/libatomic.c/atomic-store-5.c 40618200985a15bcba64f871863da498 libatomic/testsuite/libatomic.c/c.exp 97b0c9cdfcb733664bdf4efe0f5dc449 libatomic/testsuite/libatomic.c/generic-2.c ! aa75cf5a8559eaf25e2aae79274df183 libbacktrace/ChangeLog eb3a88b53140eb234a99a4b3a55e56bf libbacktrace/ChangeLog.jit 0dee96cf83de0ad4944443622f9379c8 libbacktrace/Makefile.am cbc7c8020c0f8dcfa2d2a373f6da7e8b libbacktrace/Makefile.in *************** c3e362d9085bb7d5ac4b6cc0d299e9b3 libbac *** 80128,80134 **** 230c6487aa41dcf6385603f0eba3f318 libbacktrace/unknown.c 38f8a61f09ebf0daecf10ca78c228587 libbacktrace/xcoff.c 2573cfcfdf54eb3b48c559e89d4b8e0b libbacktrace/ztest.c ! 93830cf16ea8a113906ea5cc0a38dec6 libcc1/ChangeLog c25ac45106391e5bfcbe7fb84b57da90 libcc1/Makefile.am 14bb0fce6ab9a6b5fe6b7a9ab0b0002c libcc1/Makefile.in 951b88f5687afa4f7735d87a83007fc0 libcc1/aclocal.m4 --- 80311,80317 ---- 230c6487aa41dcf6385603f0eba3f318 libbacktrace/unknown.c 38f8a61f09ebf0daecf10ca78c228587 libbacktrace/xcoff.c 2573cfcfdf54eb3b48c559e89d4b8e0b libbacktrace/ztest.c ! 8a8174cdcff27e4e7ffaf2473baea78b libcc1/ChangeLog c25ac45106391e5bfcbe7fb84b57da90 libcc1/Makefile.am 14bb0fce6ab9a6b5fe6b7a9ab0b0002c libcc1/Makefile.in 951b88f5687afa4f7735d87a83007fc0 libcc1/aclocal.m4 *************** b3af03e33f43aa92c6fd8d2022beb493 libcc1 *** 80157,80163 **** 95b7cbcd3c24af802f4a02f68e2e3304 libcc1/names.hh 755ea5d706408ca766c27354ac24d0d2 libcc1/rpc.hh 577d73d4b34d5f45d090858af7a98d82 libcc1/status.hh ! 38e5aa6f954086056a5107306908b0c1 libcpp/ChangeLog 2bd831b17997584e38305782cebe6948 libcpp/ChangeLog.jit 83cc3f43bcfa51a6019c4dbff5d9e6e6 libcpp/Makefile.in 5f73e265652f92a8ad72a80124ac7061 libcpp/aclocal.m4 --- 80340,80346 ---- 95b7cbcd3c24af802f4a02f68e2e3304 libcc1/names.hh 755ea5d706408ca766c27354ac24d0d2 libcc1/rpc.hh 577d73d4b34d5f45d090858af7a98d82 libcc1/status.hh ! d835fb65a5c8bdf897955031b11bb5eb libcpp/ChangeLog 2bd831b17997584e38305782cebe6948 libcpp/ChangeLog.jit 83cc3f43bcfa51a6019c4dbff5d9e6e6 libcpp/Makefile.in 5f73e265652f92a8ad72a80124ac7061 libcpp/aclocal.m4 *************** a82e3eb1d8561484e9ba80fe49aaa3d2 libcpp *** 80166,80172 **** 4cfab6637ea3472b21f31ea4e3bb53a8 libcpp/configure db98df9b3eb19f4fe581a917e87c5a57 libcpp/configure.ac 5450be14c9a74629a46f3fa6a948d86e libcpp/directives-only.c ! 577500fa319cb38653a7765ad8b3968d libcpp/directives.c 3eb366a5c93bc8bd46ecd4ce655e4241 libcpp/errors.c 1fb001fe286c05c4f0218e4f52eb5dd5 libcpp/expr.c d6df522c695dd05a286e3148c12c34a9 libcpp/files.c --- 80349,80355 ---- 4cfab6637ea3472b21f31ea4e3bb53a8 libcpp/configure db98df9b3eb19f4fe581a917e87c5a57 libcpp/configure.ac 5450be14c9a74629a46f3fa6a948d86e libcpp/directives-only.c ! 1dc821194cbdf7ecda4083fbdaf0b7e2 libcpp/directives.c 3eb366a5c93bc8bd46ecd4ce655e4241 libcpp/errors.c 1fb001fe286c05c4f0218e4f52eb5dd5 libcpp/expr.c d6df522c695dd05a286e3148c12c34a9 libcpp/files.c *************** e5e29557bc2d400ca19bf9698d8c4adb libcpp *** 80185,80191 **** 9bffef71f0dc7c27e6e9670482b78334 libcpp/makeucnid.c 6489fc7f57fdb7d583e7147ff0522602 libcpp/mkdeps.c 495ec808fc38a61b2088dbfaabe9c5cd libcpp/pch.c ! 9470027f9eab6f06c81ab49d2db8e205 libcpp/po/ChangeLog 236a7764238de3aa208e3a857c56f478 libcpp/po/be.gmo e3ee1b4c54df1144bdb2156cd4af4f8e libcpp/po/be.po a64f63d1193f804860308855177c5f6a libcpp/po/ca.gmo --- 80368,80374 ---- 9bffef71f0dc7c27e6e9670482b78334 libcpp/makeucnid.c 6489fc7f57fdb7d583e7147ff0522602 libcpp/mkdeps.c 495ec808fc38a61b2088dbfaabe9c5cd libcpp/pch.c ! eff9daa6dafcd74abbd966a613829db9 libcpp/po/ChangeLog 236a7764238de3aa208e3a857c56f478 libcpp/po/be.gmo e3ee1b4c54df1144bdb2156cd4af4f8e libcpp/po/be.po a64f63d1193f804860308855177c5f6a libcpp/po/ca.gmo *************** f15afc03bd997db77424a8404de0ba1e libcpp *** 80235,80241 **** b9ceddedbc75716da73d649fb6c90584 libcpp/ucnid.h 3dd5221704b1febaea71e979ee418d16 libcpp/ucnid.tab a6c2b3de06c7424706b16f4c206396a1 libdecnumber/.gitignore ! ec730465856a89d587602d22b53305f8 libdecnumber/ChangeLog 2bd831b17997584e38305782cebe6948 libdecnumber/ChangeLog.jit d692c4e4e0b6dff10132a781dc3115ec libdecnumber/Makefile.in 5f9283b55276ee7e43f1b2d807e0d85f libdecnumber/aclocal.m4 --- 80418,80424 ---- b9ceddedbc75716da73d649fb6c90584 libcpp/ucnid.h 3dd5221704b1febaea71e979ee418d16 libcpp/ucnid.tab a6c2b3de06c7424706b16f4c206396a1 libdecnumber/.gitignore ! a23b0213cafead444078214fb220dbe1 libdecnumber/ChangeLog 2bd831b17997584e38305782cebe6948 libdecnumber/ChangeLog.jit d692c4e4e0b6dff10132a781dc3115ec libdecnumber/Makefile.in 5f9283b55276ee7e43f1b2d807e0d85f libdecnumber/aclocal.m4 *************** a97c47969dfc92a7666dfe3c2e1e1448 libdec *** 80298,80304 **** 91741095dde1e8d43321a7d2c8af9ef0 libdecnumber/dpd/decimal64.c db0cc15dc64e7d60a762ebe3bb6a6921 libdecnumber/dpd/decimal64.h 0f6db29710e7075c2fd62bc4478b3b8d libdecnumber/dpd/decimal64Symbols.h ! 3ec63071164326cac11a45c30fa67c0f libffi/ChangeLog ba66fc19311348d373ec271be939a659 libffi/ChangeLog.libffi fbbc216bc25d759a72ea3e6d734af56b libffi/ChangeLog.libgcj d946d2b97454ad50a1dbfbf48923c5be libffi/ChangeLog.v1 --- 80481,80487 ---- 91741095dde1e8d43321a7d2c8af9ef0 libdecnumber/dpd/decimal64.c db0cc15dc64e7d60a762ebe3bb6a6921 libdecnumber/dpd/decimal64.h 0f6db29710e7075c2fd62bc4478b3b8d libdecnumber/dpd/decimal64Symbols.h ! 72aadceb8ca0027bb0320f04f2487c6a libffi/ChangeLog ba66fc19311348d373ec271be939a659 libffi/ChangeLog.libffi fbbc216bc25d759a72ea3e6d734af56b libffi/ChangeLog.libgcj d946d2b97454ad50a1dbfbf48923c5be libffi/ChangeLog.v1 *************** d47c79b281339983862a8e52d8c73f0f libffi *** 80659,80667 **** 291be426192f460f6a07dfe1c96ab094 libffi/testsuite/libffi.special/special.exp 93fc3ea311b79f64004992807ce75d1e libffi/testsuite/libffi.special/unwindtest.cc 185d0795017fbbe253a13db8e34085f9 libffi/testsuite/libffi.special/unwindtest_ffi_call.cc ! 19bf7c85bf8d7c051449121be9ad75d3 libgcc/ChangeLog 8a89bfe8c8707589b9b1470ad60f27c1 libgcc/Makefile.in ! 3a0e94f62100f9d19abcb78fa089089b libgcc/config.host 083f194c4f87d0510383fd4156d3aaef libgcc/config.in 9858db9b07dcce5cb230400b57775ac2 libgcc/config/aarch64/aarch64-unwind.h cb6bf25f692fb35cb8c66a813be70503 libgcc/config/aarch64/crtfastmath.c --- 80842,80850 ---- 291be426192f460f6a07dfe1c96ab094 libffi/testsuite/libffi.special/special.exp 93fc3ea311b79f64004992807ce75d1e libffi/testsuite/libffi.special/unwindtest.cc 185d0795017fbbe253a13db8e34085f9 libffi/testsuite/libffi.special/unwindtest_ffi_call.cc ! 90d2acd7d0b4d37ec1f56de8cd61dc55 libgcc/ChangeLog 8a89bfe8c8707589b9b1470ad60f27c1 libgcc/Makefile.in ! c7e019fd40fff0af456e3c9e1fe4333d libgcc/config.host 083f194c4f87d0510383fd4156d3aaef libgcc/config.in 9858db9b07dcce5cb230400b57775ac2 libgcc/config/aarch64/aarch64-unwind.h cb6bf25f692fb35cb8c66a813be70503 libgcc/config/aarch64/crtfastmath.c *************** edd359796dafc4dc78c672bcdfe885fa libgcc *** 80786,80792 **** 39e55a737e39fc207b8597387f60c342 libgcc/config/avr/lib1funcs.S 622f81485f02d0eac2caaafa7d3a2fd1 libgcc/config/avr/lib2-object.mk a1bb21bac26f7d1cb33aadeb1a2cb04d libgcc/config/avr/lib2funcs.c ! e87ee8fc2bad4b11c5379e9b55d22c45 libgcc/config/avr/libf7/ChangeLog 7c3f1609651224f834cf0c69375d2f58 libgcc/config/avr/libf7/asm-defs.h 0b54a2cbfebb93a4e1bddfa3600d6f0b libgcc/config/avr/libf7/f7-renames.h 75a098c00650382be6b1f9157fb4af2d libgcc/config/avr/libf7/f7-wraps.h --- 80969,80975 ---- 39e55a737e39fc207b8597387f60c342 libgcc/config/avr/lib1funcs.S 622f81485f02d0eac2caaafa7d3a2fd1 libgcc/config/avr/lib2-object.mk a1bb21bac26f7d1cb33aadeb1a2cb04d libgcc/config/avr/lib2funcs.c ! 784174091d7184cd08f1dc03cfa1a7d9 libgcc/config/avr/libf7/ChangeLog 7c3f1609651224f834cf0c69375d2f58 libgcc/config/avr/libf7/asm-defs.h 0b54a2cbfebb93a4e1bddfa3600d6f0b libgcc/config/avr/libf7/f7-renames.h 75a098c00650382be6b1f9157fb4af2d libgcc/config/avr/libf7/f7-wraps.h *************** c0d4a5a9b2844505ec941ff60cae008f libgcc *** 80794,80800 **** 91d3a1369031c918d258ea2ad023c550 libgcc/config/avr/libf7/f7wraps.sh 7834033aa655a14c2fc0bdcd19c657de libgcc/config/avr/libf7/libf7-array.def 5d9def53110ec07e8f29e66d593d758f libgcc/config/avr/libf7/libf7-asm-object.mk ! 5dcd162c23879c96da95bb1d840b26f2 libgcc/config/avr/libf7/libf7-asm.sx 6b4886ae302fca1fa733831066c5c830 libgcc/config/avr/libf7/libf7-c-object.mk 9e2660f882f79c124c85b8732a55464e libgcc/config/avr/libf7/libf7-common.mk 29b64ef2144e5a87760f4f4c72e5475b libgcc/config/avr/libf7/libf7-const.def --- 80977,80983 ---- 91d3a1369031c918d258ea2ad023c550 libgcc/config/avr/libf7/f7wraps.sh 7834033aa655a14c2fc0bdcd19c657de libgcc/config/avr/libf7/libf7-array.def 5d9def53110ec07e8f29e66d593d758f libgcc/config/avr/libf7/libf7-asm-object.mk ! 99161fb9c8319db3823e9a61e3d5e797 libgcc/config/avr/libf7/libf7-asm.sx 6b4886ae302fca1fa733831066c5c830 libgcc/config/avr/libf7/libf7-c-object.mk 9e2660f882f79c124c85b8732a55464e libgcc/config/avr/libf7/libf7-common.mk 29b64ef2144e5a87760f4f4c72e5475b libgcc/config/avr/libf7/libf7-const.def *************** be0a987973699f81d3104929e09fbbc0 libgcc *** 80870,80876 **** 0e4427ab50980a171acbc638f4a4846f libgcc/config/darwin-crt-tm.c a2ad7b17a6729bcf3885db737af1f9cd libgcc/config/darwin-crt3.c 3d9ace1569f13aadc86ee3608541f634 libgcc/config/darwin-unwind.ver ! 9e9354d2ce2c41094a62d88a3c777c4b libgcc/config/darwin10-unwind-find-enc-func.c da40956ae6b1ff7b16b27fe76c2213f5 libgcc/config/epiphany/crti.S 47a376f6f4c7229da1a008ae88b1481f libgcc/config/epiphany/crtint.S 5f979adbf276429d7e385bcc19b9a4cf libgcc/config/epiphany/crtm1reg-r43.S --- 81053,81059 ---- 0e4427ab50980a171acbc638f4a4846f libgcc/config/darwin-crt-tm.c a2ad7b17a6729bcf3885db737af1f9cd libgcc/config/darwin-crt3.c 3d9ace1569f13aadc86ee3608541f634 libgcc/config/darwin-unwind.ver ! 416f37158b8f19edbb3c495781577dd5 libgcc/config/darwin10-unwind-find-enc-func.c da40956ae6b1ff7b16b27fe76c2213f5 libgcc/config/epiphany/crti.S 47a376f6f4c7229da1a008ae88b1481f libgcc/config/epiphany/crtint.S 5f979adbf276429d7e385bcc19b9a4cf libgcc/config/epiphany/crtm1reg-r43.S *************** d4cd30e890b5d772946c79359704fc0b libgcc *** 80975,80981 **** 0987e17186e8a33dbf7c39d7934d4861 libgcc/config/i386/avx_resms64x.S ef88ad808d3f1101d7e96fae5706660f libgcc/config/i386/avx_savms64.S 12b992c114b195cf886a7a218b0d1e54 libgcc/config/i386/avx_savms64f.S ! 0b50691d7ab6f115485d528357f38443 libgcc/config/i386/cpuinfo.c 93e410f7c7a43b9f6ce33b5bd096c05e libgcc/config/i386/cpuinfo.h 0c87fa7e96794502d777bafe1dc1e3f2 libgcc/config/i386/crtfastmath.c 21c3fa1ea956ac3832e62d8fc364d235 libgcc/config/i386/crti.S --- 81158,81164 ---- 0987e17186e8a33dbf7c39d7934d4861 libgcc/config/i386/avx_resms64x.S ef88ad808d3f1101d7e96fae5706660f libgcc/config/i386/avx_savms64.S 12b992c114b195cf886a7a218b0d1e54 libgcc/config/i386/avx_savms64f.S ! 84ccc54cfa83c9e5ef119beae1c594f7 libgcc/config/i386/cpuinfo.c 93e410f7c7a43b9f6ce33b5bd096c05e libgcc/config/i386/cpuinfo.h 0c87fa7e96794502d777bafe1dc1e3f2 libgcc/config/i386/crtfastmath.c 21c3fa1ea956ac3832e62d8fc364d235 libgcc/config/i386/crti.S *************** c24f5e234b0091e469960bc984cb63ac libgcc *** 81079,81085 **** 3de7511560ec0cd082bc9f166d77732e libgcc/config/ia64/vms-unwind.h 739fa1e99eaa1be947f9160810ba8342 libgcc/config/iq2000/lib2funcs.c 102f7dad8ad6b54434a1b8313d1e42c4 libgcc/config/iq2000/t-iq2000 ! 6c4f662a7e7df8574207d177f723eadb libgcc/config/libbid/ChangeLog d686dd88df06e999b778807d77f67f20 libgcc/config/libbid/_addsub_dd.c 39440f40364aec5c858424ea091e6fb0 libgcc/config/libbid/_addsub_sd.c a2a461592be070f0e4bcf72559dc9e11 libgcc/config/libbid/_addsub_td.c --- 81262,81268 ---- 3de7511560ec0cd082bc9f166d77732e libgcc/config/ia64/vms-unwind.h 739fa1e99eaa1be947f9160810ba8342 libgcc/config/iq2000/lib2funcs.c 102f7dad8ad6b54434a1b8313d1e42c4 libgcc/config/iq2000/t-iq2000 ! a9e6521e8c3feb7c750de18af0251969 libgcc/config/libbid/ChangeLog d686dd88df06e999b778807d77f67f20 libgcc/config/libbid/_addsub_dd.c 39440f40364aec5c858424ea091e6fb0 libgcc/config/libbid/_addsub_sd.c a2a461592be070f0e4bcf72559dc9e11 libgcc/config/libbid/_addsub_td.c *************** b7584b976e66088ce53cfad8f41d72ad libgcc *** 81665,81675 **** 2c1f0875debda71927c06b36cfc33c5a libgcc/config/riscv/atomic.c d61879f5ed9372bd52bba7f21bb79dbc libgcc/config/riscv/crti.S 0485c6e233af87295472bb7a9f2767e0 libgcc/config/riscv/crtn.S ! 2e081db5a78f51ddb6f452840c396bd0 libgcc/config/riscv/div.S 346ea4876c0a22516ef5e16a966d75f3 libgcc/config/riscv/linux-unwind.h cbf80eb3d75c7ad80fa3817c8d73964c libgcc/config/riscv/muldi3.S d61c9066a2469317b35608dc3e8b55d7 libgcc/config/riscv/multi3.c ! c9b3f834e1e39b4388405334d62665ce libgcc/config/riscv/riscv-asm.h fbc00df2504b9fe8ea8d7132673f0403 libgcc/config/riscv/save-restore.S 2c68046e279b14f32ada2ac7882ce60e libgcc/config/riscv/sfp-machine.h 58fd6db5bcb1ee35d04b7b38b4c78984 libgcc/config/riscv/t-elf --- 81848,81858 ---- 2c1f0875debda71927c06b36cfc33c5a libgcc/config/riscv/atomic.c d61879f5ed9372bd52bba7f21bb79dbc libgcc/config/riscv/crti.S 0485c6e233af87295472bb7a9f2767e0 libgcc/config/riscv/crtn.S ! 5b61e152368e6b515c74d0cd063321f6 libgcc/config/riscv/div.S 346ea4876c0a22516ef5e16a966d75f3 libgcc/config/riscv/linux-unwind.h cbf80eb3d75c7ad80fa3817c8d73964c libgcc/config/riscv/muldi3.S d61c9066a2469317b35608dc3e8b55d7 libgcc/config/riscv/multi3.c ! 15938420810dd51814d65354c5eb146a libgcc/config/riscv/riscv-asm.h fbc00df2504b9fe8ea8d7132673f0403 libgcc/config/riscv/save-restore.S 2c68046e279b14f32ada2ac7882ce60e libgcc/config/riscv/sfp-machine.h 58fd6db5bcb1ee35d04b7b38b4c78984 libgcc/config/riscv/t-elf *************** ada9a39786da3b2e999f7440a17a1ed7 libgcc *** 81868,81875 **** 7f567bcd22705a965e07f79e8f68ebaa libgcc/config/stormy16/umodsi3.c f199b38114ce849b77b38bd475d72cff libgcc/config/t-crtfm 060a49bb5c4a53a2125123d4cbd571de libgcc/config/t-crtstuff-pic ! 06e78a9599e0fde8f283aa4d9bed8e2e libgcc/config/t-darwin f699f9e7159ba2c6033406086c5c8299 libgcc/config/t-darwin-ehs ee7ad6460936fc6f3f89ecb711376477 libgcc/config/t-dfprules d747115cbcc2bd56b6b4f73c350c2ae3 libgcc/config/t-eh-dw2-dip b9d08c1cbead9131f216accd515ec32c libgcc/config/t-fdpbit --- 82051,82061 ---- 7f567bcd22705a965e07f79e8f68ebaa libgcc/config/stormy16/umodsi3.c f199b38114ce849b77b38bd475d72cff libgcc/config/t-crtfm 060a49bb5c4a53a2125123d4cbd571de libgcc/config/t-crtstuff-pic ! fc8b2970727885119792967fb3344fda libgcc/config/t-darwin f699f9e7159ba2c6033406086c5c8299 libgcc/config/t-darwin-ehs + 5f05c653ae1e197bae3fc3fc5ca1e59d libgcc/config/t-darwin-min-1 + d8138086c2f686d6fb17804f19019954 libgcc/config/t-darwin-min-5 + 830793a6b0d554dc6c4495bc27a0c9e3 libgcc/config/t-darwin-min-8 ee7ad6460936fc6f3f89ecb711376477 libgcc/config/t-dfprules d747115cbcc2bd56b6b4f73c350c2ae3 libgcc/config/t-eh-dw2-dip b9d08c1cbead9131f216accd515ec32c libgcc/config/t-fdpbit *************** fb114fc474e86040a446fa90766e8f56 libgcc *** 81889,81895 **** eb3161bf886026cdcf8a78cea885fdd2 libgcc/config/t-openbsd-thread 474d97884b393e08b0ce416dd09493bc libgcc/config/t-rtems c719c44114540927ecf2555f7fb8475b libgcc/config/t-slibgcc ! 3ecc4173a1b262e4770c789455b2cfc9 libgcc/config/t-slibgcc-darwin 57f27c60e5d8c572d2645821ec5935e0 libgcc/config/t-slibgcc-elf-ver fa4305a341c2d0a5f01867ee0abe6504 libgcc/config/t-slibgcc-fuchsia 57e4154cb283fd7d9f323f5d85d534d9 libgcc/config/t-slibgcc-gld --- 82075,82081 ---- eb3161bf886026cdcf8a78cea885fdd2 libgcc/config/t-openbsd-thread 474d97884b393e08b0ce416dd09493bc libgcc/config/t-rtems c719c44114540927ecf2555f7fb8475b libgcc/config/t-slibgcc ! 588d81383c65cf44cee60a4c7ff77fcb libgcc/config/t-slibgcc-darwin 57f27c60e5d8c572d2645821ec5935e0 libgcc/config/t-slibgcc-elf-ver fa4305a341c2d0a5f01867ee0abe6504 libgcc/config/t-slibgcc-fuchsia 57e4154cb283fd7d9f323f5d85d534d9 libgcc/config/t-slibgcc-gld *************** aefd60a1c8d6ffbb7ec97e35dee710d4 libgcc *** 82126,82132 **** f36482a521eea94524c15eaa0859e473 libgcc/vtv_end_preinit.c 9b5f2df98cbfd1de5a6f0f09efb80101 libgcc/vtv_start.c e0c401f31054829f53b8a41ab55218cf libgcc/vtv_start_preinit.c ! 0ed3be323d5ebb256b1d76c647ec3c8b libgfortran/ChangeLog 9aca36338382e5b4b730e7779170b24d libgfortran/ChangeLog-2002 80d3edc880c2da0b7a2beec2e2c4f774 libgfortran/ChangeLog-2003 9f0239429993a5e64ed793eb6c55a5c1 libgfortran/ChangeLog-2004 --- 82312,82318 ---- f36482a521eea94524c15eaa0859e473 libgcc/vtv_end_preinit.c 9b5f2df98cbfd1de5a6f0f09efb80101 libgcc/vtv_start.c e0c401f31054829f53b8a41ab55218cf libgcc/vtv_start_preinit.c ! 6e2c42a859e977c7e2225021108fce2a libgfortran/ChangeLog 9aca36338382e5b4b730e7779170b24d libgfortran/ChangeLog-2002 80d3edc880c2da0b7a2beec2e2c4f774 libgfortran/ChangeLog-2003 9f0239429993a5e64ed793eb6c55a5c1 libgfortran/ChangeLog-2004 *************** b0e8fa5226e64de83fb7bcf98048134a libgo/ *** 87356,87362 **** 9f3cbb4598995168f1b1042a587ee8e9 libgo/runtime/runtime_c.c 7e8c8817ee732c944857259927850d02 libgo/runtime/stack.c f1f0917f45d626d15a5f129fef3d81e2 libgo/runtime/yield.c ! 1eda7c90b3d33a9e266793a21fe81f95 libgo/sysinfo.c 64195708a46fb2d5225149f15a8e3991 libgo/testsuite/Makefile.am b17bd64bcb44aa1d18b2dc2b263ebba4 libgo/testsuite/Makefile.in 180c96a619276205ec9fc8e8217b67bd libgo/testsuite/config/default.exp --- 87542,87548 ---- 9f3cbb4598995168f1b1042a587ee8e9 libgo/runtime/runtime_c.c 7e8c8817ee732c944857259927850d02 libgo/runtime/stack.c f1f0917f45d626d15a5f129fef3d81e2 libgo/runtime/yield.c ! 648918435e456f71f1fc88dceac08499 libgo/sysinfo.c 64195708a46fb2d5225149f15a8e3991 libgo/testsuite/Makefile.am b17bd64bcb44aa1d18b2dc2b263ebba4 libgo/testsuite/Makefile.in 180c96a619276205ec9fc8e8217b67bd libgo/testsuite/config/default.exp *************** e3e86019491a40bd4f45424d7ce11037 libgo/ *** 87365,87371 **** c5574d106d35be5d94e80301b0855ada libgo/testsuite/libgo-test-support.exp.in bf162aa572f7b96b25dbd2b027845d32 libgo/testsuite/libgo.testmain/testmain.exp cc9d2a0e34e31ba866a8caf9f46f48f3 libgomp/.gitattributes ! b96c1b833d64846e2104d0ca8e8117f0 libgomp/ChangeLog 0d55aa862aee66efdc5f8d62c94ff8fb libgomp/ChangeLog.graphite 9fd2a1e7d1a539dbbc2d854e30b0e00b libgomp/Makefile.am 9feaf433a0fb58e0e870f28ff2115ecc libgomp/Makefile.in --- 87551,87557 ---- c5574d106d35be5d94e80301b0855ada libgo/testsuite/libgo-test-support.exp.in bf162aa572f7b96b25dbd2b027845d32 libgo/testsuite/libgo.testmain/testmain.exp cc9d2a0e34e31ba866a8caf9f46f48f3 libgomp/.gitattributes ! 641f85a06194d4be3fa4764a182781ef libgomp/ChangeLog 0d55aa862aee66efdc5f8d62c94ff8fb libgomp/ChangeLog.graphite 9fd2a1e7d1a539dbbc2d854e30b0e00b libgomp/Makefile.am 9feaf433a0fb58e0e870f28ff2115ecc libgomp/Makefile.in *************** a975b1cf520505ee9be61620c216ea82 libgom *** 87493,87502 **** 80bd3c31185cf94ee2e48201c6ace5f1 libgomp/libgomp-plugin.c a183f11abf5bcd0b728c89ba99706f53 libgomp/libgomp-plugin.h e2da9a5d3298e4acf757d3e0c8066adb libgomp/libgomp.h ! 039bf2372e3e31416341efe82fff48d1 libgomp/libgomp.info 4052732f79d134fd439c1b39aa83c0db libgomp/libgomp.map 8b2aa50aecad82171348a6918309afd6 libgomp/libgomp.spec.in ! 0bf7d35e522085d8b7e5aa8f0efd6187 libgomp/libgomp.texi 9551cacd6b18881b3364e721d52390f1 libgomp/libgomp_f.h.in e86c9baf94937c05a5a03eb53b964061 libgomp/libgomp_g.h 6792fef62e7b80c7d2121018153e2f5d libgomp/lock.c --- 87679,87688 ---- 80bd3c31185cf94ee2e48201c6ace5f1 libgomp/libgomp-plugin.c a183f11abf5bcd0b728c89ba99706f53 libgomp/libgomp-plugin.h e2da9a5d3298e4acf757d3e0c8066adb libgomp/libgomp.h ! f96b00b90d06eafeeb48365bf441b3bd libgomp/libgomp.info 4052732f79d134fd439c1b39aa83c0db libgomp/libgomp.map 8b2aa50aecad82171348a6918309afd6 libgomp/libgomp.spec.in ! bf81a2c84bea04d3242724717d8c6666 libgomp/libgomp.texi 9551cacd6b18881b3364e721d52390f1 libgomp/libgomp_f.h.in e86c9baf94937c05a5a03eb53b964061 libgomp/libgomp_g.h 6792fef62e7b80c7d2121018153e2f5d libgomp/lock.c *************** df937a07ca169a97f163c3997bda0dfa libgom *** 87536,87543 **** 723f9272d0d9f33a1f83a303a09d4c43 libgomp/single.c ba124482fdc049e9a99041d9dd816bfa libgomp/splay-tree.c d7583e2ad844cee8070dfaae09c5501b libgomp/splay-tree.h ! 889bc97e4b57775b1fc28108d9a80036 libgomp/target.c ! 2d8b34e61b530c870f0fb578ce5cc568 libgomp/task.c 4ae37fdf436d548031b3b31c4ed65e63 libgomp/taskloop.c 143611e2f787d1ffe83f8912eded0919 libgomp/team.c d8605ac6c582f4457e119461358194f2 libgomp/teams.c --- 87722,87729 ---- 723f9272d0d9f33a1f83a303a09d4c43 libgomp/single.c ba124482fdc049e9a99041d9dd816bfa libgomp/splay-tree.c d7583e2ad844cee8070dfaae09c5501b libgomp/splay-tree.h ! dd9496a04a70b81a2b54213d3ed61aa3 libgomp/target.c ! d40148ba67a8c46404bc2b574f6aae1a libgomp/task.c 4ae37fdf436d548031b3b31c4ed65e63 libgomp/taskloop.c 143611e2f787d1ffe83f8912eded0919 libgomp/team.c d8605ac6c582f4457e119461358194f2 libgomp/teams.c *************** bddf1919febc77ab73283f66e954b61e libgom *** 87642,87647 **** --- 87828,87834 ---- 3bbd0f0d348eb705be604978b2e32097 libgomp/testsuite/libgomp.c++/member-7.C 1af322f02a0df2cf1f3c2c01d328da07 libgomp/testsuite/libgomp.c++/nested-1.C 3f755c96f4b692988ea0d1ddeef1ca9b libgomp/testsuite/libgomp.c++/parallel-1.C + 918bd233ad318b00f080ec4f186b4ee1 libgomp/testsuite/libgomp.c++/pr108180.C c57d4e906a72b08e5f49bef40306b63f libgomp/testsuite/libgomp.c++/pr24455-1.C e922df8c56b5c5885b9aa8d370725ea9 libgomp/testsuite/libgomp.c++/pr24455.C ebbf9a13ba035141ba01b3281fd27fea libgomp/testsuite/libgomp.c++/pr26691.C *************** d9c974865c1c03b48fac0231e028a7be libgom *** 87846,87851 **** --- 88033,88039 ---- 53fe13231ac841815b983b820fa61932 libgomp/testsuite/libgomp.c-c++-common/ordered-4.c 35032e9e752cf0fddfcf3aa3df880c48 libgomp/testsuite/libgomp.c-c++-common/pause-1.c 333f11e6a780e595ef92d101803745c9 libgomp/testsuite/libgomp.c-c++-common/pause-2.c + 010e1c442bf8c18b7045c53d36e8346e libgomp/testsuite/libgomp.c-c++-common/pr106981.c 67c38424bb3c5c571b180f7bdadaa4f8 libgomp/testsuite/libgomp.c-c++-common/pr45784.c 68cf777b22e15a310c790cabde33a5f1 libgomp/testsuite/libgomp.c-c++-common/pr64824.c 800ed634329eb97a562e7e84ebd4044b libgomp/testsuite/libgomp.c-c++-common/pr64868.c *************** e590f10fae9bf053ed7123777b03bf32 libgom *** 87887,87892 **** --- 88075,88082 ---- e4f419faa09d744436aad29d88eb43cf libgomp/testsuite/libgomp.c-c++-common/task-reduction-13.c d284915ed4a4ac417bfb2b7632453bec libgomp/testsuite/libgomp.c-c++-common/task-reduction-14.c 9c603541ce46d78d4526034634edb381 libgomp/testsuite/libgomp.c-c++-common/task-reduction-15.c + e653bf8d31dab3838d4fca110a3ce845 libgomp/testsuite/libgomp.c-c++-common/task-reduction-17.c + 6fc6fff584c1f373ed1f3621bae88c86 libgomp/testsuite/libgomp.c-c++-common/task-reduction-18.c 47acc8ff8c516165766737c2f13be4cf libgomp/testsuite/libgomp.c-c++-common/task-reduction-2.c 33b998ac8605f9aab9808c883f2e85eb libgomp/testsuite/libgomp.c-c++-common/task-reduction-3.c 5ab2e1d3a94c19b612a71f802938e9d8 libgomp/testsuite/libgomp.c-c++-common/task-reduction-4.c *************** cfb96280c2ccf2711f5cc008a7b246ae libgom *** 88236,88242 **** 3676a99310c885b9ffc9885d81871df4 libgomp/testsuite/libgomp.c/target-29.c b7efacf79d1aeccedabb2bb25be9f758 libgomp/testsuite/libgomp.c/target-3.c 89b93437359f4de22f03c55eb9283547 libgomp/testsuite/libgomp.c/target-30.c ! fb05ccdba2c69c6ada8c59531dc61e6b libgomp/testsuite/libgomp.c/target-31.c b1d109faffe0cd8b3129628be12bc293 libgomp/testsuite/libgomp.c/target-32.c bccccd438324ee9e479d4e3a0bdb6d81 libgomp/testsuite/libgomp.c/target-33.c 1ac6fb011b9f01d7645493e720fffe9b libgomp/testsuite/libgomp.c/target-34.c --- 88426,88432 ---- 3676a99310c885b9ffc9885d81871df4 libgomp/testsuite/libgomp.c/target-29.c b7efacf79d1aeccedabb2bb25be9f758 libgomp/testsuite/libgomp.c/target-3.c 89b93437359f4de22f03c55eb9283547 libgomp/testsuite/libgomp.c/target-30.c ! 95908bcfba12e260232003299ef50b2d libgomp/testsuite/libgomp.c/target-31.c b1d109faffe0cd8b3129628be12bc293 libgomp/testsuite/libgomp.c/target-32.c bccccd438324ee9e479d4e3a0bdb6d81 libgomp/testsuite/libgomp.c/target-33.c 1ac6fb011b9f01d7645493e720fffe9b libgomp/testsuite/libgomp.c/target-34.c *************** f7ff00e5f2a30832f7f427c91fa1f61b libgom *** 88260,88265 **** --- 88450,88457 ---- d3e7c403248ba696f161f0c29c1f87a6 libgomp/testsuite/libgomp.c/task-4.c d4661425a651c88d20ba240b4b095d25 libgomp/testsuite/libgomp.c/task-5.c 44bdb32169338741ef61362037413b94 libgomp/testsuite/libgomp.c/task-6.c + be9ace9f504e4b04cbe60d9c44b6ec06 libgomp/testsuite/libgomp.c/task-7.c + fa0452ae69f7810be8c0d18767e0b973 libgomp/testsuite/libgomp.c/task-8.c 38213b90919e07d4d9f35aca2fd48cdd libgomp/testsuite/libgomp.c/task-reduction-1.c ccf79f1a3cd3d9897f6ea88c19bfbdc8 libgomp/testsuite/libgomp.c/task-reduction-2.c e25fde9ed6b03c3c743ea8cf6c8eaa3e libgomp/testsuite/libgomp.c/task-reduction-3.c *************** e8a3245c095430c8ef2413afe2ee4c48 libgom *** 89235,89241 **** 1ee538b1d8c3361fa5c71fc8cac2aa7a libgomp/testsuite/libgomp.oacc-fortran/update-2.f90 989e6535f20045be32e9e91643a0b08f libgomp/testsuite/libgomp.oacc-fortran/vector-routine.f90 ba7b24b7084a24f7eeb9edb6a47f3dee libgomp/work.c ! e2c6e0e7bb514928f9b673c1c5a8feea libhsail-rt/ChangeLog 9147b482b39962a71e580b4a8265285e libhsail-rt/Makefile.am f63e3c959c7490f1fbe708067e4884ae libhsail-rt/Makefile.in de97a355fadb5753d182cbcf06b1b33a libhsail-rt/README --- 89427,89433 ---- 1ee538b1d8c3361fa5c71fc8cac2aa7a libgomp/testsuite/libgomp.oacc-fortran/update-2.f90 989e6535f20045be32e9e91643a0b08f libgomp/testsuite/libgomp.oacc-fortran/vector-routine.f90 ba7b24b7084a24f7eeb9edb6a47f3dee libgomp/work.c ! 5a11d8b5de9d621042a76e0907a509e8 libhsail-rt/ChangeLog 9147b482b39962a71e580b4a8265285e libhsail-rt/Makefile.am f63e3c959c7490f1fbe708067e4884ae libhsail-rt/Makefile.in de97a355fadb5753d182cbcf06b1b33a libhsail-rt/README *************** d3cb42f0affccdc8401528fdfd1f5b65 libhsa *** 89262,89268 **** ef9f05873915c22cae79ef5545355353 libhsail-rt/target-config.h.in 99c2e5e712b990ee07be10f53e41f3fb libiberty/.gitignore a916467b91076e631dd8edb7424769c7 libiberty/COPYING.LIB ! bccc686ae654a8b3efb46c1b10f67b47 libiberty/ChangeLog 347c31392973de6a4872d540c1718dc1 libiberty/ChangeLog.jit a3ef253370857a89895181e5431a20e3 libiberty/Makefile.in c68dbf7834af4281ebd84caa3fd54680 libiberty/README --- 89454,89460 ---- ef9f05873915c22cae79ef5545355353 libhsail-rt/target-config.h.in 99c2e5e712b990ee07be10f53e41f3fb libiberty/.gitignore a916467b91076e631dd8edb7424769c7 libiberty/COPYING.LIB ! 4ecdbb6073245ee1c25eeac1680fa610 libiberty/ChangeLog 347c31392973de6a4872d540c1718dc1 libiberty/ChangeLog.jit a3ef253370857a89895181e5431a20e3 libiberty/Makefile.in c68dbf7834af4281ebd84caa3fd54680 libiberty/README *************** fd7441d68af7274c4052f0b4d0011fd2 libibe *** 89390,89396 **** fd1435a5be24d2ed84909540998dd5d7 libiberty/strnlen.c 5b0eb0000c746fc4c1854f00bb80b53d libiberty/strrchr.c f214096086d1747033efa505022dd89c libiberty/strsignal.c ! e2f3721273c7ef1ab0194aad78ffa3aa libiberty/strstr.c 2ce1ef5f8fd7baae7b9b769d61338c94 libiberty/strtod.c c9bd3841bbde6d8ae680f62523f00ab0 libiberty/strtol.c 9968bbb75dc08ce768389912954f4348 libiberty/strtoll.c --- 89582,89588 ---- fd1435a5be24d2ed84909540998dd5d7 libiberty/strnlen.c 5b0eb0000c746fc4c1854f00bb80b53d libiberty/strrchr.c f214096086d1747033efa505022dd89c libiberty/strsignal.c ! 388e2b024e9ed4406e8c1f5099dbb4dd libiberty/strstr.c 2ce1ef5f8fd7baae7b9b769d61338c94 libiberty/strtod.c c9bd3841bbde6d8ae680f62523f00ab0 libiberty/strtol.c 9968bbb75dc08ce768389912954f4348 libiberty/strtoll.c *************** b2c289eb14e9197dcad172f3acba12b7 libibe *** 89427,89433 **** 6f774a92661ca4a067f1691a7925524b libiberty/xstrerror.c 2854fd878740d7ea0f0c5ba34f695362 libiberty/xstrndup.c 00ce7121672e7f540abedae54264e8e1 libiberty/xvasprintf.c ! 569646f2287ffc355a378a9f9b10070e libitm/ChangeLog a9df0726c501bf71a46f426068e8fc9f libitm/Makefile.am 06bb67375770bbbe550b5708624ed9d8 libitm/Makefile.in 3688bb99bcb94998fd633eabeeebd40f libitm/aatree.cc --- 89619,89625 ---- 6f774a92661ca4a067f1691a7925524b libiberty/xstrerror.c 2854fd878740d7ea0f0c5ba34f695362 libiberty/xstrndup.c 00ce7121672e7f540abedae54264e8e1 libiberty/xvasprintf.c ! dc4b6203c3704a294307fe008cb1b0d8 libitm/ChangeLog a9df0726c501bf71a46f426068e8fc9f libitm/Makefile.am 06bb67375770bbbe550b5708624ed9d8 libitm/Makefile.in 3688bb99bcb94998fd633eabeeebd40f libitm/aatree.cc *************** a878bfd544991c9b1f0f2f5b39e8ca23 libitm *** 89485,89491 **** 767a0f12cfa1b6ac5a7c058fcb704dc4 libitm/dispatch.h 0011a3c9a726269021c8d5adcbffc2e5 libitm/eh_cpp.cc 91636819710989afcfb9423bebd8d9b6 libitm/libitm.h ! 6128b2247c7738011cfe6053e3c07ce4 libitm/libitm.info 0c43820b921ecdbe9d98f068100e716a libitm/libitm.map ea467d7117853d139bb288ab75261139 libitm/libitm.spec.in d2826737d965aaa637712f0fe8f7f0ec libitm/libitm.texi --- 89677,89683 ---- 767a0f12cfa1b6ac5a7c058fcb704dc4 libitm/dispatch.h 0011a3c9a726269021c8d5adcbffc2e5 libitm/eh_cpp.cc 91636819710989afcfb9423bebd8d9b6 libitm/libitm.h ! a053aff7bf37a8965d4522bbc4e54cd2 libitm/libitm.info 0c43820b921ecdbe9d98f068100e716a libitm/libitm.map ea467d7117853d139bb288ab75261139 libitm/libitm.spec.in d2826737d965aaa637712f0fe8f7f0ec libitm/libitm.texi *************** b4e503ecfdccc9f13da8f73eeb6f23a9 libitm *** 89531,89537 **** ef24198422c19f99b0c41be6a16f7081 libitm/testsuite/libitm.c/txrelease.c bc16054ebacc75aa7800d984c09e69df libitm/useraction.cc 73b31e65f4454e0d3684afca18e8be62 libitm/util.cc ! 99e7a5a3ac4028cc449acaf0850f4e56 libobjc/ChangeLog 9d4f4158c2e1e11d5b0fbb824d28cb49 libobjc/Makefile.in 5d2db5fdd28bd269de26be0cffc1dfc5 libobjc/NXConstStr.m f7220a0d5e4ece5d5f47b88a837d818e libobjc/Object.m --- 89723,89729 ---- ef24198422c19f99b0c41be6a16f7081 libitm/testsuite/libitm.c/txrelease.c bc16054ebacc75aa7800d984c09e69df libitm/useraction.cc 73b31e65f4454e0d3684afca18e8be62 libitm/util.cc ! 441bf0a249f88b47dfc784422148af3a libobjc/ChangeLog 9d4f4158c2e1e11d5b0fbb824d28cb49 libobjc/Makefile.in 5d2db5fdd28bd269de26be0cffc1dfc5 libobjc/NXConstStr.m f7220a0d5e4ece5d5f47b88a837d818e libobjc/Object.m *************** a8ec801c9883d227d37816356bdc7327 libobj *** 89588,89594 **** b260ef0ddaeec837196c8e6104dbfb65 libobjc/selector.c 9bb351bbc1b307b03d3089874e1011a8 libobjc/sendmsg.c 1ab3f79e5cb7359150b4c5d0feb93d62 libobjc/thr.c ! ded9464bf4b734c25c04796b6761fdfc liboffloadmic/ChangeLog 99e2b0817f42c602b520261f7dee183b liboffloadmic/Makefile.am a64a74f82774f355013471ad4dbe5014 liboffloadmic/Makefile.in ab5ae12a0dda7edadc0bd2be40ccff6a liboffloadmic/aclocal.m4 --- 89780,89786 ---- b260ef0ddaeec837196c8e6104dbfb65 libobjc/selector.c 9bb351bbc1b307b03d3089874e1011a8 libobjc/sendmsg.c 1ab3f79e5cb7359150b4c5d0feb93d62 libobjc/thr.c ! 5b7ecd763c9360dc313ddd08f73de44d liboffloadmic/ChangeLog 99e2b0817f42c602b520261f7dee183b liboffloadmic/Makefile.am a64a74f82774f355013471ad4dbe5014 liboffloadmic/Makefile.in ab5ae12a0dda7edadc0bd2be40ccff6a liboffloadmic/aclocal.m4 *************** b1def68202639bd452fb59aea3371fe4 liboff *** 89676,89682 **** 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 ! e52cd039c8df31649d5cf4b449bdb20f libphobos/ChangeLog c0cf15c8749b27e8cbddf4b7a0624410 libphobos/Makefile.am 7ad7ee1e1bf5ae832c27808640f7d8fb libphobos/Makefile.in ee88c20a7744a2305503e1670f3b7889 libphobos/README.gcc --- 89868,89874 ---- 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 ! 7a175fae5fa614aba0d0633dc4839d3b libphobos/ChangeLog c0cf15c8749b27e8cbddf4b7a0624410 libphobos/Makefile.am 7ad7ee1e1bf5ae832c27808640f7d8fb libphobos/Makefile.in ee88c20a7744a2305503e1670f3b7889 libphobos/README.gcc *************** d64e7c6f9f940e7d7f14d7d36c358989 libpho *** 90309,90315 **** d471e006e4eff73c7d20b9167e24d741 libphobos/src/std/numeric.d 388208c6635979df5a07648d1f0cdc2e libphobos/src/std/outbuffer.d fb2ab68236e21bf3840a53b15043cac4 libphobos/src/std/parallelism.d ! 2b189485e4897de30dbd494f6d788e0b libphobos/src/std/path.d 164b6df12b19e11ca70b9684b1e947fa libphobos/src/std/process.d 592b96acd85b7ae34760c56d2e1af9f7 libphobos/src/std/random.d 1d5f5bfe4477f509753c7242be1c9583 libphobos/src/std/range/interfaces.d --- 90501,90507 ---- d471e006e4eff73c7d20b9167e24d741 libphobos/src/std/numeric.d 388208c6635979df5a07648d1f0cdc2e libphobos/src/std/outbuffer.d fb2ab68236e21bf3840a53b15043cac4 libphobos/src/std/parallelism.d ! fcf7bc584822bd24e2dff6630f0b2bfa libphobos/src/std/path.d 164b6df12b19e11ca70b9684b1e947fa libphobos/src/std/process.d 592b96acd85b7ae34760c56d2e1af9f7 libphobos/src/std/random.d 1d5f5bfe4477f509753c7242be1c9583 libphobos/src/std/range/interfaces.d *************** d6d76c43d490a2c9d8addee8eee021b8 libpho *** 90403,90409 **** 35a8e616fdcbacb81b4451aafb732c93 libphobos/testsuite/libphobos.typeinfo/typeinfo.exp 9e301017360325e39a83c6b15962800a libphobos/testsuite/testsuite_flags.in a916467b91076e631dd8edb7424769c7 libquadmath/COPYING.LIB ! f215f7fe7695e5d95b87b4584154033c libquadmath/ChangeLog 4696eddf264dd090e144b4849b0a6d91 libquadmath/Makefile.am 644a78a01d94abe28b364eaa21142d82 libquadmath/Makefile.in d9afbc1f1e04c7e461265ff9323cc6f4 libquadmath/acinclude.m4 --- 90595,90601 ---- 35a8e616fdcbacb81b4451aafb732c93 libphobos/testsuite/libphobos.typeinfo/typeinfo.exp 9e301017360325e39a83c6b15962800a libphobos/testsuite/testsuite_flags.in a916467b91076e631dd8edb7424769c7 libquadmath/COPYING.LIB ! f13239e8c5b1ab92b3efd7984b5c0e05 libquadmath/ChangeLog 4696eddf264dd090e144b4849b0a6d91 libquadmath/Makefile.am 644a78a01d94abe28b364eaa21142d82 libquadmath/Makefile.in d9afbc1f1e04c7e461265ff9323cc6f4 libquadmath/acinclude.m4 *************** d9afbc1f1e04c7e461265ff9323cc6f4 libqua *** 90411,90417 **** cf5a7864ff15ab4dd1604e0f6fe4e501 libquadmath/config.h.in 75e633e311f438dd649acfd4008abd14 libquadmath/configure 279cb151e8c43d5af048eb1a9608a435 libquadmath/configure.ac ! 74926f41c615e899b66a07e24300190a libquadmath/libquadmath.info 8442a7234a31a9e0c384bc6376ae9724 libquadmath/libquadmath.texi 77280bb7ee423875e03d9c0d34527df6 libquadmath/libtool-version 452fee0ef153d65eb7413a5103c63a23 libquadmath/math/acoshq.c --- 90603,90609 ---- cf5a7864ff15ab4dd1604e0f6fe4e501 libquadmath/config.h.in 75e633e311f438dd649acfd4008abd14 libquadmath/configure 279cb151e8c43d5af048eb1a9608a435 libquadmath/configure.ac ! 0ea1ff3d84c35811520698429b2d0aa7 libquadmath/libquadmath.info 8442a7234a31a9e0c384bc6376ae9724 libquadmath/libquadmath.texi 77280bb7ee423875e03d9c0d34527df6 libquadmath/libtool-version 452fee0ef153d65eb7413a5103c63a23 libquadmath/math/acoshq.c *************** cd139c8f7066ccd99c46052b7b67b2cb libqua *** 90539,90549 **** a21481cfd0382ef41901608376f2161c libquadmath/quadmath_weak.h e766022f8615b72cbc38335d262e9d3d libquadmath/strtod/grouping.h a73fdec6746eaad8ccdc8e8403aac562 libquadmath/strtod/mpn2flt128.c ! a81cc82679e80c86cfbd5575867450d0 libquadmath/strtod/strtod_l.c af84fa5118f4adec8393614994e1c4d6 libquadmath/strtod/strtoflt128.c d15a18f7c46ba2add6148edc5b7563c0 libquadmath/strtod/tens_in_limb.c 12c73a846f7668d29de720bd79502bef libquadmath/update-quadmath.py ! a9a91907aa530e4bacbba62e746ba8ba libsanitizer/ChangeLog 0e35a2dc2727acc707a3f5ead45c8e12 libsanitizer/HOWTO_MERGE 0249c37748936faf5b1efd5789587909 libsanitizer/LICENSE.TXT 214b34d29a767814ebb2e1fc47be8b55 libsanitizer/LOCAL_PATCHES --- 90731,90741 ---- a21481cfd0382ef41901608376f2161c libquadmath/quadmath_weak.h e766022f8615b72cbc38335d262e9d3d libquadmath/strtod/grouping.h a73fdec6746eaad8ccdc8e8403aac562 libquadmath/strtod/mpn2flt128.c ! e0bd9b8669e44ec6010f92da1d5188ad libquadmath/strtod/strtod_l.c af84fa5118f4adec8393614994e1c4d6 libquadmath/strtod/strtoflt128.c d15a18f7c46ba2add6148edc5b7563c0 libquadmath/strtod/tens_in_limb.c 12c73a846f7668d29de720bd79502bef libquadmath/update-quadmath.py ! a22ca735a78a1956486be11ee37aa079 libsanitizer/ChangeLog 0e35a2dc2727acc707a3f5ead45c8e12 libsanitizer/HOWTO_MERGE 0249c37748936faf5b1efd5789587909 libsanitizer/LICENSE.TXT 214b34d29a767814ebb2e1fc47be8b55 libsanitizer/LOCAL_PATCHES *************** b0666c8f23d627e872a9a54b1a201cec libsan *** 90623,90629 **** 4d6948c4912be5da16e30aac001b87d7 libsanitizer/config.h.in 5298a8aa0af358b921073718b8fa3f89 libsanitizer/configure e2da6d2fe49e4bc7b52487b9ea222f7f libsanitizer/configure.ac ! a3b991a02d2433cab2b57a9c3eb24d7c libsanitizer/configure.tgt 62164e6387eaa4f03566444e00018275 libsanitizer/include/sanitizer/allocator_interface.h 59dccccf5737e12e033f7467a7f3768e libsanitizer/include/sanitizer/asan_interface.h d462269eefcb3ebf53e43398ad8a6804 libsanitizer/include/sanitizer/common_interface_defs.h --- 90815,90821 ---- 4d6948c4912be5da16e30aac001b87d7 libsanitizer/config.h.in 5298a8aa0af358b921073718b8fa3f89 libsanitizer/configure e2da6d2fe49e4bc7b52487b9ea222f7f libsanitizer/configure.ac ! 0b85b016ea5041aca1bb796d13c86f4e libsanitizer/configure.tgt 62164e6387eaa4f03566444e00018275 libsanitizer/include/sanitizer/allocator_interface.h 59dccccf5737e12e033f7467a7f3768e libsanitizer/include/sanitizer/asan_interface.h d462269eefcb3ebf53e43398ad8a6804 libsanitizer/include/sanitizer/common_interface_defs.h *************** d2bf2d24145b87281fed9790d72e64fb libsan *** 90787,90793 **** 8b4031e08b6385eb303cbeea8d39acfe libsanitizer/sanitizer_common/sanitizer_platform_limits_netbsd.h 8000711a00d2894dbf4e5b23932e4241 libsanitizer/sanitizer_common/sanitizer_platform_limits_openbsd.cpp 9d9e2ca7e7d8ece7182fbd83d5df0b42 libsanitizer/sanitizer_common/sanitizer_platform_limits_openbsd.h ! fc1df6b95c43bc8e6f2d39099d322f11 libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp 25f5260cb615823da4467e930f2c8c68 libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.h 3ee58b1ba29dcc881e4bb98f0b8f8b16 libsanitizer/sanitizer_common/sanitizer_platform_limits_solaris.cpp 65580ad77115e59c2e7c3343384d5991 libsanitizer/sanitizer_common/sanitizer_platform_limits_solaris.h --- 90979,90985 ---- 8b4031e08b6385eb303cbeea8d39acfe libsanitizer/sanitizer_common/sanitizer_platform_limits_netbsd.h 8000711a00d2894dbf4e5b23932e4241 libsanitizer/sanitizer_common/sanitizer_platform_limits_openbsd.cpp 9d9e2ca7e7d8ece7182fbd83d5df0b42 libsanitizer/sanitizer_common/sanitizer_platform_limits_openbsd.h ! 345c5c16e20616a71f7d31c25a9d8fc9 libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cpp 25f5260cb615823da4467e930f2c8c68 libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.h 3ee58b1ba29dcc881e4bb98f0b8f8b16 libsanitizer/sanitizer_common/sanitizer_platform_limits_solaris.cpp 65580ad77115e59c2e7c3343384d5991 libsanitizer/sanitizer_common/sanitizer_platform_limits_solaris.h *************** cabf4d60cc2e457091514cb4f2237bbd libsan *** 90963,90969 **** 545e91fffb8d4987ca5d1c0054aadd11 libsanitizer/ubsan/ubsan_win_dll_thunk.cpp e9c85349d92ab1a6b66d0872077acd3b libsanitizer/ubsan/ubsan_win_dynamic_runtime_thunk.cpp 72f297f487b6bb9db917cce361192c28 libsanitizer/ubsan/ubsan_win_weak_interception.cpp ! c81071dbe26dfb7935a3beadd3fe159d libssp/ChangeLog 587c237b1073b8be40a1975c86d0ce01 libssp/Makefile.am b56958cdc5828ca811c35bbf479b3a09 libssp/Makefile.in f6f6c804e40e3a3ef407d3d13fafb6c0 libssp/aclocal.m4 --- 91155,91161 ---- 545e91fffb8d4987ca5d1c0054aadd11 libsanitizer/ubsan/ubsan_win_dll_thunk.cpp e9c85349d92ab1a6b66d0872077acd3b libsanitizer/ubsan/ubsan_win_dynamic_runtime_thunk.cpp 72f297f487b6bb9db917cce361192c28 libsanitizer/ubsan/ubsan_win_weak_interception.cpp ! f06b486b0d8a064caced5575cd5f9b4d libssp/ChangeLog 587c237b1073b8be40a1975c86d0ce01 libssp/Makefile.am b56958cdc5828ca811c35bbf479b3a09 libssp/Makefile.in f6f6c804e40e3a3ef407d3d13fafb6c0 libssp/aclocal.m4 *************** a8291ec60d5058c6b652ad3948ba88f2 libssp *** 90992,90998 **** b7a581dfcf315a2215d8792224b15ba4 libssp/strncpy-chk.c 4720732375196e3834d0dc2a4ccd4678 libssp/vsnprintf-chk.c c67bcbd0e33f52512fa906f33a6ad93c libssp/vsprintf-chk.c ! ad95d6ac06fb29673fe5570daba8643e libstdc++-v3/ChangeLog 7aa6c40440a44fcf5ec94c066160c2f8 libstdc++-v3/ChangeLog-1998 7aff86600b6a1ed3fa87305075a92db0 libstdc++-v3/ChangeLog-1999 a6f28e8fc9bb07696a9e068b439a3a87 libstdc++-v3/ChangeLog-2000 --- 91184,91190 ---- b7a581dfcf315a2215d8792224b15ba4 libssp/strncpy-chk.c 4720732375196e3834d0dc2a4ccd4678 libssp/vsnprintf-chk.c c67bcbd0e33f52512fa906f33a6ad93c libssp/vsprintf-chk.c ! 024c2d496be978641a3277ece004c46f libstdc++-v3/ChangeLog 7aa6c40440a44fcf5ec94c066160c2f8 libstdc++-v3/ChangeLog-1998 7aff86600b6a1ed3fa87305075a92db0 libstdc++-v3/ChangeLog-1999 a6f28e8fc9bb07696a9e068b439a3a87 libstdc++-v3/ChangeLog-2000 *************** cb723a587a363c4fa71e6712aeff2458 libstd *** 91170,91176 **** 392a5979e3829b759e1848f75ea231a7 libstdc++-v3/config/os/gnu-linux/ctype_configure_char.cc 6ccf22a952f8ff3a744f441f9faa02a3 libstdc++-v3/config/os/gnu-linux/ctype_inline.h e7a5616dfe1ba65fd2ef182675c2f3e4 libstdc++-v3/config/os/gnu-linux/ldbl-extra.ver ! 63bfbd899e138a2361b556f27bf76bed libstdc++-v3/config/os/gnu-linux/os_defines.h 7dd9d1c93692872f6caba3b914589ab8 libstdc++-v3/config/os/hpux/ctype_base.h dfcb95a6906bfd8758f8d0b94f77dfd5 libstdc++-v3/config/os/hpux/ctype_configure_char.cc 6ccf22a952f8ff3a744f441f9faa02a3 libstdc++-v3/config/os/hpux/ctype_inline.h --- 91362,91368 ---- 392a5979e3829b759e1848f75ea231a7 libstdc++-v3/config/os/gnu-linux/ctype_configure_char.cc 6ccf22a952f8ff3a744f441f9faa02a3 libstdc++-v3/config/os/gnu-linux/ctype_inline.h e7a5616dfe1ba65fd2ef182675c2f3e4 libstdc++-v3/config/os/gnu-linux/ldbl-extra.ver ! b1f435dc9461945a1d743c4eab8a6807 libstdc++-v3/config/os/gnu-linux/os_defines.h 7dd9d1c93692872f6caba3b914589ab8 libstdc++-v3/config/os/hpux/ctype_base.h dfcb95a6906bfd8758f8d0b94f77dfd5 libstdc++-v3/config/os/hpux/ctype_configure_char.cc 6ccf22a952f8ff3a744f441f9faa02a3 libstdc++-v3/config/os/hpux/ctype_inline.h *************** ca3e62817fc4c45c6f1e23e555fbbab1 libstd *** 91220,91229 **** 520db39aef0e2a59418132af88b897ed libstdc++-v3/doc/doxygen/mainpage.html 3486d64b0aaa601908006a0e78395ca3 libstdc++-v3/doc/doxygen/stdheader.cc 1273764cd133c402d2d3f22cf2913af5 libstdc++-v3/doc/doxygen/tables.html ! 8d3d0719b43327ae94a379bcc3283bcd libstdc++-v3/doc/doxygen/user.cfg.in 66e139590a163a3e9d632f33fbe1d1b3 libstdc++-v3/doc/html/README c68ff21babfa14f20b98e36a2c808418 libstdc++-v3/doc/html/api.html ! fd168dc2b2d0c12b1e17b40ffec96390 libstdc++-v3/doc/html/bk02.html 47886ba7da131bf3cbf81a27cada5f6f libstdc++-v3/doc/html/bk03.html f8da0f34d5632ef2fa41bc24b870c7ca libstdc++-v3/doc/html/faq.html 1ae70f0bf94464b036515d333fff8ab2 libstdc++-v3/doc/html/images/confdeps.png --- 91412,91421 ---- 520db39aef0e2a59418132af88b897ed libstdc++-v3/doc/doxygen/mainpage.html 3486d64b0aaa601908006a0e78395ca3 libstdc++-v3/doc/doxygen/stdheader.cc 1273764cd133c402d2d3f22cf2913af5 libstdc++-v3/doc/doxygen/tables.html ! 1eda2ddd8a73fd964b649e07fbe8531d libstdc++-v3/doc/doxygen/user.cfg.in 66e139590a163a3e9d632f33fbe1d1b3 libstdc++-v3/doc/html/README c68ff21babfa14f20b98e36a2c808418 libstdc++-v3/doc/html/api.html ! 08920438eea18325b4bfdf979379ff66 libstdc++-v3/doc/html/bk02.html 47886ba7da131bf3cbf81a27cada5f6f libstdc++-v3/doc/html/bk03.html f8da0f34d5632ef2fa41bc24b870c7ca libstdc++-v3/doc/html/faq.html 1ae70f0bf94464b036515d333fff8ab2 libstdc++-v3/doc/html/images/confdeps.png *************** df705f3839120dcb896e9839cf3404d0 libstd *** 91308,91314 **** df179506f96fcb91052f81a4364915b5 libstdc++-v3/doc/html/index.html c1e5ffe8cab62b023f6ec0921dae323f libstdc++-v3/doc/html/manual/abi.html 4ce10e27356ac31a5b7962aecbeb3638 libstdc++-v3/doc/html/manual/algorithms.html ! ed0df2a39ee4dc6f7612c69f53f6f5a6 libstdc++-v3/doc/html/manual/api.html 5da5f8ee60b9c017065648d24e093ac6 libstdc++-v3/doc/html/manual/appendix.html 9fecd7dab1bd0d46e97d36cded231ebe libstdc++-v3/doc/html/manual/appendix_contributing.html 23038a3eb57967596dd7dc4f944e55e6 libstdc++-v3/doc/html/manual/appendix_free.html --- 91500,91506 ---- df179506f96fcb91052f81a4364915b5 libstdc++-v3/doc/html/index.html c1e5ffe8cab62b023f6ec0921dae323f libstdc++-v3/doc/html/manual/abi.html 4ce10e27356ac31a5b7962aecbeb3638 libstdc++-v3/doc/html/manual/algorithms.html ! 715a3fb22a282b19e745097c3bebc33e libstdc++-v3/doc/html/manual/api.html 5da5f8ee60b9c017065648d24e093ac6 libstdc++-v3/doc/html/manual/appendix.html 9fecd7dab1bd0d46e97d36cded231ebe libstdc++-v3/doc/html/manual/appendix_contributing.html 23038a3eb57967596dd7dc4f944e55e6 libstdc++-v3/doc/html/manual/appendix_free.html *************** afcc2751dae09e088abc1e3175cb94cc libstd *** 91341,91358 **** 6ff2323d07ed91e8dec5a072df16f901 libstdc++-v3/doc/html/manual/ext_concurrency_impl.html 9eae121ff2ad3f2dd5a2748f87f9f530 libstdc++-v3/doc/html/manual/ext_concurrency_use.html 0597d03ff215b7f17e0240178c030166 libstdc++-v3/doc/html/manual/ext_containers.html ! 2388a381a3fca44bacf99a523f6e2bba libstdc++-v3/doc/html/manual/ext_demangling.html 05003e71d54cfdfd4c8291489f8ffa07 libstdc++-v3/doc/html/manual/ext_io.html 44f8ef8b093904d418755d0e32d700b7 libstdc++-v3/doc/html/manual/ext_iterators.html 8f3bd86e04d263ad87cc258c289aae6d libstdc++-v3/doc/html/manual/ext_numerics.html 6d380acac52eb8c888a54068e44b16ac libstdc++-v3/doc/html/manual/ext_preface.html 5632eb8ef681cd35b41be7eb7a3d7a98 libstdc++-v3/doc/html/manual/ext_sgi.html 9b34310c7cb7faa4373ee6683678c457 libstdc++-v3/doc/html/manual/ext_utilities.html ! 00c415f7a8c72582b50938a7eb8366e7 libstdc++-v3/doc/html/manual/extensions.html 35b79745331dead1ad1971dd05389baf 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 ! 4594f00fd54dea536f6a64d04948a56c libstdc++-v3/doc/html/manual/index.html 8687facb6d19ccc2a663efbc50e745a1 libstdc++-v3/doc/html/manual/internals.html 4b8578e3de6c36c2681abb0a4d88b99f libstdc++-v3/doc/html/manual/intro.html 46de5aefef02b8c599fc816bea53ae67 libstdc++-v3/doc/html/manual/io.html --- 91533,91550 ---- 6ff2323d07ed91e8dec5a072df16f901 libstdc++-v3/doc/html/manual/ext_concurrency_impl.html 9eae121ff2ad3f2dd5a2748f87f9f530 libstdc++-v3/doc/html/manual/ext_concurrency_use.html 0597d03ff215b7f17e0240178c030166 libstdc++-v3/doc/html/manual/ext_containers.html ! 3946985aede4994e9743b0f8d71b41ba libstdc++-v3/doc/html/manual/ext_demangling.html 05003e71d54cfdfd4c8291489f8ffa07 libstdc++-v3/doc/html/manual/ext_io.html 44f8ef8b093904d418755d0e32d700b7 libstdc++-v3/doc/html/manual/ext_iterators.html 8f3bd86e04d263ad87cc258c289aae6d libstdc++-v3/doc/html/manual/ext_numerics.html 6d380acac52eb8c888a54068e44b16ac libstdc++-v3/doc/html/manual/ext_preface.html 5632eb8ef681cd35b41be7eb7a3d7a98 libstdc++-v3/doc/html/manual/ext_sgi.html 9b34310c7cb7faa4373ee6683678c457 libstdc++-v3/doc/html/manual/ext_utilities.html ! 994542df83e91ccc062dfb4cb5da945c libstdc++-v3/doc/html/manual/extensions.html 35b79745331dead1ad1971dd05389baf 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 ! 6538244a2a1b55753314d7f3eae09f67 libstdc++-v3/doc/html/manual/index.html 8687facb6d19ccc2a663efbc50e745a1 libstdc++-v3/doc/html/manual/internals.html 4b8578e3de6c36c2681abb0a4d88b99f libstdc++-v3/doc/html/manual/intro.html 46de5aefef02b8c599fc816bea53ae67 libstdc++-v3/doc/html/manual/io.html *************** e5a44446efe24c37e9b107d443d76878 libstd *** 91411,91417 **** ccc3b1a320ccc49a977c80546610195b libstdc++-v3/doc/html/manual/using_namespaces.html d881fcffb799c09a28d8174ccb1326a2 libstdc++-v3/doc/html/manual/utilities.html ccbc0492a648982f2dc225595bdbc567 libstdc++-v3/doc/xml/api.xml ! 61748d51ede56b338ef61ce9232c23e0 libstdc++-v3/doc/xml/authors.xml f5a41d4f7585b850b3182fc5f4888f93 libstdc++-v3/doc/xml/book.txml 95d1335e76860d53246f3e400231ec38 libstdc++-v3/doc/xml/chapter.txml 7f8c520dc83013026c671c5c342f73e2 libstdc++-v3/doc/xml/class.txml --- 91603,91609 ---- ccc3b1a320ccc49a977c80546610195b libstdc++-v3/doc/html/manual/using_namespaces.html d881fcffb799c09a28d8174ccb1326a2 libstdc++-v3/doc/html/manual/utilities.html ccbc0492a648982f2dc225595bdbc567 libstdc++-v3/doc/xml/api.xml ! e1775a73c7dd9e58d002cffb39192faa libstdc++-v3/doc/xml/authors.xml f5a41d4f7585b850b3182fc5f4888f93 libstdc++-v3/doc/xml/book.txml 95d1335e76860d53246f3e400231ec38 libstdc++-v3/doc/xml/chapter.txml 7f8c520dc83013026c671c5c342f73e2 libstdc++-v3/doc/xml/class.txml *************** e6ca26c475748296f849f8024304550a libstd *** 91616,91623 **** c2b5fe8f3aba75d63e43dedc1c66c9a1 libstdc++-v3/doc/xml/manual/debug_mode.xml de9142912808678c2c2ce8b0192c394f libstdc++-v3/doc/xml/manual/diagnostics.xml c1e74618e099a0a26f35c653a9d49971 libstdc++-v3/doc/xml/manual/documentation_hacking.xml ! fca17d234bdc033e9e27285ab9c84b4b libstdc++-v3/doc/xml/manual/evolution.xml ! 14742e66a2ac01343ef60e87d06d05ff libstdc++-v3/doc/xml/manual/extensions.xml 26083dec441281888a23365de5567180 libstdc++-v3/doc/xml/manual/internals.xml 9e3bc83dd5e6e039ede33f797fb40e33 libstdc++-v3/doc/xml/manual/intro.xml 82d01f11ebf848dc64a611a829ef5a38 libstdc++-v3/doc/xml/manual/io.xml --- 91808,91815 ---- c2b5fe8f3aba75d63e43dedc1c66c9a1 libstdc++-v3/doc/xml/manual/debug_mode.xml de9142912808678c2c2ce8b0192c394f libstdc++-v3/doc/xml/manual/diagnostics.xml c1e74618e099a0a26f35c653a9d49971 libstdc++-v3/doc/xml/manual/documentation_hacking.xml ! 4387a5d915d24e27adf5773c02bd8fba libstdc++-v3/doc/xml/manual/evolution.xml ! 137276d6eb0bbaf6563b8319770dc747 libstdc++-v3/doc/xml/manual/extensions.xml 26083dec441281888a23365de5567180 libstdc++-v3/doc/xml/manual/internals.xml 9e3bc83dd5e6e039ede33f797fb40e33 libstdc++-v3/doc/xml/manual/intro.xml 82d01f11ebf848dc64a611a829ef5a38 libstdc++-v3/doc/xml/manual/io.xml *************** eb99bd418a3e47c7fc7a2298d1d63d27 libstd *** 91632,91638 **** e2ea3eb265b0daa00700ec1b06a363d9 libstdc++-v3/doc/xml/manual/policy_data_structures_biblio.xml ee6d5b2bc3741b3e049dc335f2c25284 libstdc++-v3/doc/xml/manual/prerequisites.xml d006612b2e21ab181c25bc88697b4543 libstdc++-v3/doc/xml/manual/shared_ptr.xml ! 4973f5115dccc7a4572777a094cc60e8 libstdc++-v3/doc/xml/manual/spine.xml 6043d036e7b64486d97bce2607a3236c libstdc++-v3/doc/xml/manual/status_cxx1998.xml ff64342bfa017d4722f15a35e800f076 libstdc++-v3/doc/xml/manual/status_cxx2011.xml 2de777c1edabc6676dcd7eb0a6604326 libstdc++-v3/doc/xml/manual/status_cxx2014.xml --- 91824,91830 ---- e2ea3eb265b0daa00700ec1b06a363d9 libstdc++-v3/doc/xml/manual/policy_data_structures_biblio.xml ee6d5b2bc3741b3e049dc335f2c25284 libstdc++-v3/doc/xml/manual/prerequisites.xml d006612b2e21ab181c25bc88697b4543 libstdc++-v3/doc/xml/manual/shared_ptr.xml ! c74e23b18491ad421253f72aa8309404 libstdc++-v3/doc/xml/manual/spine.xml 6043d036e7b64486d97bce2607a3236c libstdc++-v3/doc/xml/manual/status_cxx1998.xml ff64342bfa017d4722f15a35e800f076 libstdc++-v3/doc/xml/manual/status_cxx2011.xml 2de777c1edabc6676dcd7eb0a6604326 libstdc++-v3/doc/xml/manual/status_cxx2014.xml *************** cc6b44837ffecfed21ba33bf580865af libstd *** 91651,91658 **** a8f0003856ec916712e8abaddf746a77 libstdc++-v3/doc/xml/spine.xml bd966b4a0df6f2a84f9770525581d45c libstdc++-v3/doc/xsl/customization.xsl.in 7bb72420e699e194cf6066457cb6d6a5 libstdc++-v3/fragment.am ! c0f9573af94f62fd17bf64d9e33719c6 libstdc++-v3/include/Makefile.am ! 769f3a275b75b125f2d8b6a9a70cf9ef libstdc++-v3/include/Makefile.in 4fdaa579a320c5b2f53586fac01d65d0 libstdc++-v3/include/backward/auto_ptr.h 831dbf0ebc9318ec68636e9546b698fc libstdc++-v3/include/backward/backward_warning.h e9f460a762e1c4ab8196c03532a7568e libstdc++-v3/include/backward/binders.h --- 91843,91850 ---- a8f0003856ec916712e8abaddf746a77 libstdc++-v3/doc/xml/spine.xml bd966b4a0df6f2a84f9770525581d45c libstdc++-v3/doc/xsl/customization.xsl.in 7bb72420e699e194cf6066457cb6d6a5 libstdc++-v3/fragment.am ! c44ec35fa9fba0a42f634003e4ff47a0 libstdc++-v3/include/Makefile.am ! 4ac3274dd27b70453b1fc2db79314d7a libstdc++-v3/include/Makefile.in 4fdaa579a320c5b2f53586fac01d65d0 libstdc++-v3/include/backward/auto_ptr.h 831dbf0ebc9318ec68636e9546b698fc libstdc++-v3/include/backward/backward_warning.h e9f460a762e1c4ab8196c03532a7568e libstdc++-v3/include/backward/binders.h *************** d27802ff0f98ec6d7d75defdbadafdf1 libstd *** 91687,91706 **** 556b2f94404e66c119a7ad397aa4b614 libstdc++-v3/include/bits/fs_dir.h af0f1aba7930a95736ae0bbadc6bf2db libstdc++-v3/include/bits/fs_fwd.h 29c11f7e70d67fe804809aaf9c97cfe7 libstdc++-v3/include/bits/fs_ops.h ! fd8d70f0ef1d258dad26708011e525ec libstdc++-v3/include/bits/fs_path.h 22ff14d1a36511441f5a67a1abe47856 libstdc++-v3/include/bits/fstream.tcc 9769ec5cf1d70f5d388572a69a3a88d5 libstdc++-v3/include/bits/functexcept.h 0c6dbf801e218a9215ed73bf2a9f72a2 libstdc++-v3/include/bits/functional_hash.h f0068dbef0ebc56ffae5652b6064f420 libstdc++-v3/include/bits/gslice.h ! c56b5968917762b750c5c3803221ffe9 libstdc++-v3/include/bits/gslice_array.h 947bd93feb1720a9b5185c6abfedba17 libstdc++-v3/include/bits/hashtable.h bb29dabfdbd8a2092a023e4614908c2d libstdc++-v3/include/bits/hashtable_policy.h ! e1d6ec24244158a9f2776a8628955317 libstdc++-v3/include/bits/indirect_array.h 2103c37950b04e2ddd4fe96183d4a4eb libstdc++-v3/include/bits/invoke.h 2413e956f6232abf2d9fd5a794c781b0 libstdc++-v3/include/bits/ios_base.h f41ecd4020ddfbf088767f2ce83cddd9 libstdc++-v3/include/bits/istream.tcc 77de7ac74ec409d536ff19bd440c4411 libstdc++-v3/include/bits/iterator_concepts.h ! 5e1af8238a7182366476acc7c95f6cb9 libstdc++-v3/include/bits/list.tcc 120cce3cf9c42fc21d3311bfb091f538 libstdc++-v3/include/bits/locale_classes.h 1a4d19df3be9b714847a5e438ba25b3b libstdc++-v3/include/bits/locale_classes.tcc c4fed2b5b4879837686150624f51ddbc libstdc++-v3/include/bits/locale_conv.h --- 91879,91898 ---- 556b2f94404e66c119a7ad397aa4b614 libstdc++-v3/include/bits/fs_dir.h af0f1aba7930a95736ae0bbadc6bf2db libstdc++-v3/include/bits/fs_fwd.h 29c11f7e70d67fe804809aaf9c97cfe7 libstdc++-v3/include/bits/fs_ops.h ! dbe174f7673bd158a42653b711109849 libstdc++-v3/include/bits/fs_path.h 22ff14d1a36511441f5a67a1abe47856 libstdc++-v3/include/bits/fstream.tcc 9769ec5cf1d70f5d388572a69a3a88d5 libstdc++-v3/include/bits/functexcept.h 0c6dbf801e218a9215ed73bf2a9f72a2 libstdc++-v3/include/bits/functional_hash.h f0068dbef0ebc56ffae5652b6064f420 libstdc++-v3/include/bits/gslice.h ! 4400f9517a572b5b5b25630e929f85f9 libstdc++-v3/include/bits/gslice_array.h 947bd93feb1720a9b5185c6abfedba17 libstdc++-v3/include/bits/hashtable.h bb29dabfdbd8a2092a023e4614908c2d libstdc++-v3/include/bits/hashtable_policy.h ! 6e6959e9895118152a037277bf902062 libstdc++-v3/include/bits/indirect_array.h 2103c37950b04e2ddd4fe96183d4a4eb libstdc++-v3/include/bits/invoke.h 2413e956f6232abf2d9fd5a794c781b0 libstdc++-v3/include/bits/ios_base.h f41ecd4020ddfbf088767f2ce83cddd9 libstdc++-v3/include/bits/istream.tcc 77de7ac74ec409d536ff19bd440c4411 libstdc++-v3/include/bits/iterator_concepts.h ! 92f968da4b68631b539b8592b63643e1 libstdc++-v3/include/bits/list.tcc 120cce3cf9c42fc21d3311bfb091f538 libstdc++-v3/include/bits/locale_classes.h 1a4d19df3be9b714847a5e438ba25b3b libstdc++-v3/include/bits/locale_classes.tcc c4fed2b5b4879837686150624f51ddbc libstdc++-v3/include/bits/locale_conv.h *************** ad3726c17e8e10e80b100401ec35a07c libstd *** 91709,91715 **** 3213b72bb6b5dcc587d72a81f7937bce libstdc++-v3/include/bits/locale_facets_nonio.h a3cf6cabd7bdaee154cafa2c88aede3a libstdc++-v3/include/bits/locale_facets_nonio.tcc 756fbe1353340b4e7cae5d8a93132788 libstdc++-v3/include/bits/localefwd.h ! 480b0beba1f5529acd192ffe964fdd82 libstdc++-v3/include/bits/mask_array.h b3ac8f248c9d88c5e616eb3275077b80 libstdc++-v3/include/bits/memoryfwd.h bfe6db802b03cdca43b4360bcf8b5be7 libstdc++-v3/include/bits/move.h f6aa6553dc5524abdfe41a7da3a49706 libstdc++-v3/include/bits/node_handle.h --- 91901,91907 ---- 3213b72bb6b5dcc587d72a81f7937bce libstdc++-v3/include/bits/locale_facets_nonio.h a3cf6cabd7bdaee154cafa2c88aede3a libstdc++-v3/include/bits/locale_facets_nonio.tcc 756fbe1353340b4e7cae5d8a93132788 libstdc++-v3/include/bits/localefwd.h ! 1a372ce9e4f0f5089b629cb56af6aef4 libstdc++-v3/include/bits/mask_array.h b3ac8f248c9d88c5e616eb3275077b80 libstdc++-v3/include/bits/memoryfwd.h bfe6db802b03cdca43b4360bcf8b5be7 libstdc++-v3/include/bits/move.h f6aa6553dc5524abdfe41a7da3a49706 libstdc++-v3/include/bits/node_handle.h *************** b6673c70044c63dc76561b464a4c6e28 libstd *** 91722,91749 **** c1dbfdcef6bb8952176db50e5956f3f0 libstdc++-v3/include/bits/quoted_string.h 715337d5eaa307b9b51ebb60a4e6fe04 libstdc++-v3/include/bits/random.h 891e4ae0ae0106f7bfdb7a0c6e2a6cf6 libstdc++-v3/include/bits/random.tcc ! b5abbb3cb59db8cc75504ce491cda56b libstdc++-v3/include/bits/range_access.h 98ddc447ed23629cfe71a497dd38cc0a libstdc++-v3/include/bits/range_cmp.h d4aca81ccc4482f066764310c4f1ef15 libstdc++-v3/include/bits/ranges_algo.h d47d05fc4ee976d40c5901730e4e5283 libstdc++-v3/include/bits/ranges_algobase.h 9359674d91413bb86cab3df1fee00aa7 libstdc++-v3/include/bits/ranges_uninitialized.h 2b83e058f8d0793df437d0a6d422c974 libstdc++-v3/include/bits/refwrap.h ! 5a3f7431075fbcacaccf9ac19e4f3791 libstdc++-v3/include/bits/regex.h ! f23ad4b66e11fbf0102e9bb997345693 libstdc++-v3/include/bits/regex.tcc ! d566c247041097c6045c8796de365631 libstdc++-v3/include/bits/regex_automaton.h ec658fb588ddb17f4f5d56f054a2120b libstdc++-v3/include/bits/regex_automaton.tcc ! 0c770629fb4ee30877ee168fc18a1e42 libstdc++-v3/include/bits/regex_compiler.h ! a03aaf7d03a9b71dbb400f20ac3a24ba libstdc++-v3/include/bits/regex_compiler.tcc 0ed75f64f6a2ef9e246d1df78bec8ce9 libstdc++-v3/include/bits/regex_constants.h ! 85a93e603444bb3a23b75da73192dee2 libstdc++-v3/include/bits/regex_error.h 2495bcb90af2bcf8217b48a97c5ec1e3 libstdc++-v3/include/bits/regex_executor.h ! a5f7599269265e9fa08515b3153fae50 libstdc++-v3/include/bits/regex_executor.tcc ! 79f74adcb24e2a20a2a7783fe81ef2a4 libstdc++-v3/include/bits/regex_scanner.h ! e17036c2169768877a2decc8fafb1408 libstdc++-v3/include/bits/regex_scanner.tcc b5a31ffdf16d0753e273cdfff0ff6e08 libstdc++-v3/include/bits/shared_ptr.h b7b7c3f4f5b8b0d7472d13c86dc9ba9d libstdc++-v3/include/bits/shared_ptr_atomic.h ! de783ee03b6490a4c18914f825de28ee libstdc++-v3/include/bits/shared_ptr_base.h ! 68b74d340f7cf348bc4ba2cdd2abef9b libstdc++-v3/include/bits/slice_array.h 9b2e9f2b083444d10d31440adb7617d1 libstdc++-v3/include/bits/specfun.h e899b384347b53af6ce6e1034e25b861 libstdc++-v3/include/bits/sstream.tcc a2872a3a5e8bdfdb68af596ab9b2956c libstdc++-v3/include/bits/std_abs.h --- 91914,91941 ---- c1dbfdcef6bb8952176db50e5956f3f0 libstdc++-v3/include/bits/quoted_string.h 715337d5eaa307b9b51ebb60a4e6fe04 libstdc++-v3/include/bits/random.h 891e4ae0ae0106f7bfdb7a0c6e2a6cf6 libstdc++-v3/include/bits/random.tcc ! 6e04a39c60a6444157fa36fb5bdee3da libstdc++-v3/include/bits/range_access.h 98ddc447ed23629cfe71a497dd38cc0a libstdc++-v3/include/bits/range_cmp.h d4aca81ccc4482f066764310c4f1ef15 libstdc++-v3/include/bits/ranges_algo.h d47d05fc4ee976d40c5901730e4e5283 libstdc++-v3/include/bits/ranges_algobase.h 9359674d91413bb86cab3df1fee00aa7 libstdc++-v3/include/bits/ranges_uninitialized.h 2b83e058f8d0793df437d0a6d422c974 libstdc++-v3/include/bits/refwrap.h ! 7fe86b8d7ec106ae49fad858425e421b libstdc++-v3/include/bits/regex.h ! 0818b22e457f9849af571aa2671701ef libstdc++-v3/include/bits/regex.tcc ! 96476e343a72ad51000554b090714781 libstdc++-v3/include/bits/regex_automaton.h ec658fb588ddb17f4f5d56f054a2120b libstdc++-v3/include/bits/regex_automaton.tcc ! bd8ff992fd002ef8a2f1728d942dadfb libstdc++-v3/include/bits/regex_compiler.h ! 0e3eb826614d6420714be926647bb9ee libstdc++-v3/include/bits/regex_compiler.tcc 0ed75f64f6a2ef9e246d1df78bec8ce9 libstdc++-v3/include/bits/regex_constants.h ! b2094e72d39f789ce000b9c1a9b5a7d7 libstdc++-v3/include/bits/regex_error.h 2495bcb90af2bcf8217b48a97c5ec1e3 libstdc++-v3/include/bits/regex_executor.h ! ca310e180218af82bc1d0f2be6e94e7c libstdc++-v3/include/bits/regex_executor.tcc ! c97e4957a7256e5e137360dd14413b88 libstdc++-v3/include/bits/regex_scanner.h ! 9402b8307d03ced065096cda373996b7 libstdc++-v3/include/bits/regex_scanner.tcc b5a31ffdf16d0753e273cdfff0ff6e08 libstdc++-v3/include/bits/shared_ptr.h b7b7c3f4f5b8b0d7472d13c86dc9ba9d libstdc++-v3/include/bits/shared_ptr_atomic.h ! db6d4b3a1a9ad9763c1834f68e606633 libstdc++-v3/include/bits/shared_ptr_base.h ! f5433780bb5e225730394acf7e1aed52 libstdc++-v3/include/bits/slice_array.h 9b2e9f2b083444d10d31440adb7617d1 libstdc++-v3/include/bits/specfun.h e899b384347b53af6ce6e1034e25b861 libstdc++-v3/include/bits/sstream.tcc a2872a3a5e8bdfdb68af596ab9b2956c libstdc++-v3/include/bits/std_abs.h *************** d1037bf0672c6f31a8ab232accf76b5b libstd *** 91756,91762 **** c1f22e72439efaf933695e8de80c864d libstdc++-v3/include/bits/stl_deque.h f87fbc5d632d6a84307ec8d2ada3d6c3 libstdc++-v3/include/bits/stl_function.h ce0341fe6e305b41215648e27a5b71eb libstdc++-v3/include/bits/stl_heap.h ! 440554c6fd095f22a03b8639bf747533 libstdc++-v3/include/bits/stl_iterator.h ec8f5457561f81d938fe7292bd695aa3 libstdc++-v3/include/bits/stl_iterator_base_funcs.h 90b6c5c8762ac7b4ad98628e4c841fff libstdc++-v3/include/bits/stl_iterator_base_types.h 5f49cd6ecd76af79a9fac53049c58c08 libstdc++-v3/include/bits/stl_list.h --- 91948,91954 ---- c1f22e72439efaf933695e8de80c864d libstdc++-v3/include/bits/stl_deque.h f87fbc5d632d6a84307ec8d2ada3d6c3 libstdc++-v3/include/bits/stl_function.h ce0341fe6e305b41215648e27a5b71eb libstdc++-v3/include/bits/stl_heap.h ! 03dca18319e72d89a4080360c8602b69 libstdc++-v3/include/bits/stl_iterator.h ec8f5457561f81d938fe7292bd695aa3 libstdc++-v3/include/bits/stl_iterator_base_funcs.h 90b6c5c8762ac7b4ad98628e4c841fff libstdc++-v3/include/bits/stl_iterator_base_types.h 5f49cd6ecd76af79a9fac53049c58c08 libstdc++-v3/include/bits/stl_list.h *************** ef12bb1e27ffe914484f7aefd01fe24b libstd *** 91772,91778 **** afe766f0ecb032df023c7042cf701b96 libstdc++-v3/include/bits/stl_stack.h 43ec67c71a6a4de0533398e4142dcde7 libstdc++-v3/include/bits/stl_tempbuf.h 16e1b48de9ff648411bca19144fc3406 libstdc++-v3/include/bits/stl_tree.h ! ed05d0b7c24493d3fc4c711407844017 libstdc++-v3/include/bits/stl_uninitialized.h 7de0f0dc86a833efdd78c658d956e37c libstdc++-v3/include/bits/stl_vector.h 07ff4d5903d9bb5d2a93ab5e39a20545 libstdc++-v3/include/bits/stream_iterator.h 173a77332f78d2ca96b9c0d2c72fbdfb libstdc++-v3/include/bits/streambuf.tcc --- 91964,91970 ---- afe766f0ecb032df023c7042cf701b96 libstdc++-v3/include/bits/stl_stack.h 43ec67c71a6a4de0533398e4142dcde7 libstdc++-v3/include/bits/stl_tempbuf.h 16e1b48de9ff648411bca19144fc3406 libstdc++-v3/include/bits/stl_tree.h ! bceaed141932442b09b532352388f834 libstdc++-v3/include/bits/stl_uninitialized.h 7de0f0dc86a833efdd78c658d956e37c libstdc++-v3/include/bits/stl_vector.h 07ff4d5903d9bb5d2a93ab5e39a20545 libstdc++-v3/include/bits/stream_iterator.h 173a77332f78d2ca96b9c0d2c72fbdfb libstdc++-v3/include/bits/streambuf.tcc *************** addea971b35a75f23989171878228e4f libstd *** 91941,91948 **** 69a595ed7e32bab5f954957195e1863e libstdc++-v3/include/experimental/memory_resource a7d3ea8538cf6c8e57484af9a461a655 libstdc++-v3/include/experimental/net bf4ef7b68a82e1643ee24b5dac94501f libstdc++-v3/include/experimental/netfwd ! 7fcfb5fbfa3aa6bd01ac4d2bd9377171 libstdc++-v3/include/experimental/numeric ! 4cc322f3bd5270b2be197853c6d8061f libstdc++-v3/include/experimental/optional 0b97a31a359048a2dc2a0faaa4eecac0 libstdc++-v3/include/experimental/propagate_const 883a8fabcc4a030b8dbf11dd3c3c4527 libstdc++-v3/include/experimental/random 2082e6de6ad79541d6a07e1ad809a6e1 libstdc++-v3/include/experimental/ratio --- 92133,92140 ---- 69a595ed7e32bab5f954957195e1863e libstdc++-v3/include/experimental/memory_resource a7d3ea8538cf6c8e57484af9a461a655 libstdc++-v3/include/experimental/net bf4ef7b68a82e1643ee24b5dac94501f libstdc++-v3/include/experimental/netfwd ! 56823834560fc7952c2be33bf3485c2a libstdc++-v3/include/experimental/numeric ! 75ee35dd52ee347c5c9f491a083453b4 libstdc++-v3/include/experimental/optional 0b97a31a359048a2dc2a0faaa4eecac0 libstdc++-v3/include/experimental/propagate_const 883a8fabcc4a030b8dbf11dd3c3c4527 libstdc++-v3/include/experimental/random 2082e6de6ad79541d6a07e1ad809a6e1 libstdc++-v3/include/experimental/ratio *************** d3d2812c60e828c1e822801f148c7630 libstd *** 92315,92321 **** b273dc977fd70ba3f379d1a3b1863379 libstdc++-v3/include/pstl/unseq_backend_simd.h 248e4a4c932ee32246a6216c3b58a482 libstdc++-v3/include/pstl/utils.h d13b5b555064cbe65fe9a48522f98fc6 libstdc++-v3/include/std/algorithm ! 264dfe8d0bc871c1b56dccbc57bf0b7f libstdc++-v3/include/std/any 2eb20d4a1a3384519f368d3874a83786 libstdc++-v3/include/std/array d1ea53a6b3aa2a26dd2a34579929a0a2 libstdc++-v3/include/std/atomic ee08323765838e4ca57e151bd2f5f369 libstdc++-v3/include/std/bit --- 92507,92513 ---- b273dc977fd70ba3f379d1a3b1863379 libstdc++-v3/include/pstl/unseq_backend_simd.h 248e4a4c932ee32246a6216c3b58a482 libstdc++-v3/include/pstl/utils.h d13b5b555064cbe65fe9a48522f98fc6 libstdc++-v3/include/std/algorithm ! f762659c2a613188b317e953149502c3 libstdc++-v3/include/std/any 2eb20d4a1a3384519f368d3874a83786 libstdc++-v3/include/std/array d1ea53a6b3aa2a26dd2a34579929a0a2 libstdc++-v3/include/std/atomic ee08323765838e4ca57e151bd2f5f369 libstdc++-v3/include/std/bit *************** a0a50587d2eec5a78f74a98dabe20be6 libstd *** 92344,92365 **** d44965fd1119516c430f841e5e500b2b libstdc++-v3/include/std/list 665715a7b0758a25afbee33a0423900d libstdc++-v3/include/std/locale caaabd7110451202bfa1b8ad2aabddb9 libstdc++-v3/include/std/map ! 8975a010c439e0c88f6d8c77e44d643b libstdc++-v3/include/std/memory 3f400dd93f6a698931858300f3e1943a libstdc++-v3/include/std/memory_resource 7bf570019cd4f0a6d5a6a52e97bb04d6 libstdc++-v3/include/std/mutex 6eef564e779ff625b1fb0fa009e40fd4 libstdc++-v3/include/std/numbers ! 1ccb103f249440dabfde6c0fd0a7c061 libstdc++-v3/include/std/numeric 393364dba7f058bf4c81111ddd1f9cdd libstdc++-v3/include/std/optional 56e5a336148ae6e8cfc713dd640b2f8d libstdc++-v3/include/std/ostream c43c4eb1ed1a4868d4c6323cc6de7522 libstdc++-v3/include/std/queue eb0270a262359d9c42cc05dff455433d libstdc++-v3/include/std/random ! 98b92b811a8216770375bed0aa0f4d18 libstdc++-v3/include/std/ranges ca89269b97d7354f7f0b65d424029d90 libstdc++-v3/include/std/ratio a8222a3097b562fb1cd796c07ec7c61f libstdc++-v3/include/std/regex b66d9f96bf954c63d6525112c84eb381 libstdc++-v3/include/std/scoped_allocator 245521f6014ae11952787e3814f04026 libstdc++-v3/include/std/set e1565837b946ced2d0133cbaa1e3d8ec libstdc++-v3/include/std/shared_mutex ! 8c2db7cae66143469e27ffc9996d3fb5 libstdc++-v3/include/std/span 57d20fd66958cb5ff87fd63d0146d6b1 libstdc++-v3/include/std/sstream 2e668b0677af4c060836d386a013d36b libstdc++-v3/include/std/stack b7cb1423f5d00d33fe1a8be9cf5aa752 libstdc++-v3/include/std/stdexcept --- 92536,92557 ---- d44965fd1119516c430f841e5e500b2b libstdc++-v3/include/std/list 665715a7b0758a25afbee33a0423900d libstdc++-v3/include/std/locale caaabd7110451202bfa1b8ad2aabddb9 libstdc++-v3/include/std/map ! d0c25a0e56fc91e58966220c9f3acb1e libstdc++-v3/include/std/memory 3f400dd93f6a698931858300f3e1943a libstdc++-v3/include/std/memory_resource 7bf570019cd4f0a6d5a6a52e97bb04d6 libstdc++-v3/include/std/mutex 6eef564e779ff625b1fb0fa009e40fd4 libstdc++-v3/include/std/numbers ! e92432e4c9c04eca7eb27be1bce3cc12 libstdc++-v3/include/std/numeric 393364dba7f058bf4c81111ddd1f9cdd libstdc++-v3/include/std/optional 56e5a336148ae6e8cfc713dd640b2f8d libstdc++-v3/include/std/ostream c43c4eb1ed1a4868d4c6323cc6de7522 libstdc++-v3/include/std/queue eb0270a262359d9c42cc05dff455433d libstdc++-v3/include/std/random ! ca2152e1d060bbe53c33fa3c45be5eaf libstdc++-v3/include/std/ranges ca89269b97d7354f7f0b65d424029d90 libstdc++-v3/include/std/ratio a8222a3097b562fb1cd796c07ec7c61f libstdc++-v3/include/std/regex b66d9f96bf954c63d6525112c84eb381 libstdc++-v3/include/std/scoped_allocator 245521f6014ae11952787e3814f04026 libstdc++-v3/include/std/set e1565837b946ced2d0133cbaa1e3d8ec libstdc++-v3/include/std/shared_mutex ! 91895d3ce98bbe6c78823174c5c2d201 libstdc++-v3/include/std/span 57d20fd66958cb5ff87fd63d0146d6b1 libstdc++-v3/include/std/sstream 2e668b0677af4c060836d386a013d36b libstdc++-v3/include/std/stack b7cb1423f5d00d33fe1a8be9cf5aa752 libstdc++-v3/include/std/stdexcept *************** a4fb839cf1231ef9e1358c002e576ec8 libstd *** 92375,92381 **** 1337d5daba21c28cdeb4c94ca872b4ba libstdc++-v3/include/std/unordered_map e3b3bdf6bb027fd8ddee13353d7b6234 libstdc++-v3/include/std/unordered_set 121c5a282a5a4db2a38d858687acc93c libstdc++-v3/include/std/utility ! 567ad93eeaa373e6e893843e804a3df6 libstdc++-v3/include/std/valarray 1298d6992e2344f7d186593abd955fef libstdc++-v3/include/std/variant d226f70ed3db8fb048011cc9efe12c5a libstdc++-v3/include/std/vector 27d7969b96498b2777dbe1bdbeeb2fae libstdc++-v3/include/std/version --- 92567,92573 ---- 1337d5daba21c28cdeb4c94ca872b4ba libstdc++-v3/include/std/unordered_map e3b3bdf6bb027fd8ddee13353d7b6234 libstdc++-v3/include/std/unordered_set 121c5a282a5a4db2a38d858687acc93c libstdc++-v3/include/std/utility ! 40f9626852b3bfcd195524824c674bb5 libstdc++-v3/include/std/valarray 1298d6992e2344f7d186593abd955fef libstdc++-v3/include/std/variant d226f70ed3db8fb048011cc9efe12c5a libstdc++-v3/include/std/vector 27d7969b96498b2777dbe1bdbeeb2fae libstdc++-v3/include/std/version *************** dd2d88360d92246b172169fa496272e9 libstd *** 92545,92551 **** 68b329da9893e34099c7d8ad5cb9c940 libstdc++-v3/python/libstdcxx/__init__.py ae17853071ca9899f6cb501024af780a libstdc++-v3/python/libstdcxx/v6/__init__.py 1de76e87902410c000656c409774db0c libstdc++-v3/python/libstdcxx/v6/printers.py ! 0fc25e43df52cda8714a2f6dd550e226 libstdc++-v3/python/libstdcxx/v6/xmethods.py cdac7363b91e7d57b85f7b560f62f033 libstdc++-v3/scripts/check_compile 135cc633b60b1fe91bcc3ea62a5ff845 libstdc++-v3/scripts/check_performance 222d3bed3efbfa2cc45349dba7566fb4 libstdc++-v3/scripts/create_testsuite_files --- 92737,92743 ---- 68b329da9893e34099c7d8ad5cb9c940 libstdc++-v3/python/libstdcxx/__init__.py ae17853071ca9899f6cb501024af780a libstdc++-v3/python/libstdcxx/v6/__init__.py 1de76e87902410c000656c409774db0c libstdc++-v3/python/libstdcxx/v6/printers.py ! 6039de69fd43b433fe36eb02bfa6a27c libstdc++-v3/python/libstdcxx/v6/xmethods.py cdac7363b91e7d57b85f7b560f62f033 libstdc++-v3/scripts/check_compile 135cc633b60b1fe91bcc3ea62a5ff845 libstdc++-v3/scripts/check_performance 222d3bed3efbfa2cc45349dba7566fb4 libstdc++-v3/scripts/create_testsuite_files *************** f261a5695cf413b262d8d771012c36cf libstd *** 92615,92621 **** 67489e44aabf6ee27491f83aded895e5 libstdc++-v3/src/c++11/string-inst.cc 90fff7ea468ea45ee79b57c88711d684 libstdc++-v3/src/c++11/string-io-inst.cc 4702dde44800dea5f9ad46ebea5eaccf libstdc++-v3/src/c++11/system_error.cc ! 3c91c9ec8d1b0a5df45bf18e30b0af8e libstdc++-v3/src/c++11/thread.cc 13e198b930798010d9e16aee69f138b5 libstdc++-v3/src/c++11/wlocale-inst.cc 1ea4c9bf30c5548ffad100b839a94a6a libstdc++-v3/src/c++11/wstring-inst.cc 39ae108cfb70c0557e92896f0a8d4672 libstdc++-v3/src/c++11/wstring-io-inst.cc --- 92807,92813 ---- 67489e44aabf6ee27491f83aded895e5 libstdc++-v3/src/c++11/string-inst.cc 90fff7ea468ea45ee79b57c88711d684 libstdc++-v3/src/c++11/string-io-inst.cc 4702dde44800dea5f9ad46ebea5eaccf libstdc++-v3/src/c++11/system_error.cc ! 4840031040cf603543128c7baa79987f libstdc++-v3/src/c++11/thread.cc 13e198b930798010d9e16aee69f138b5 libstdc++-v3/src/c++11/wlocale-inst.cc 1ea4c9bf30c5548ffad100b839a94a6a libstdc++-v3/src/c++11/wstring-inst.cc 39ae108cfb70c0557e92896f0a8d4672 libstdc++-v3/src/c++11/wstring-io-inst.cc *************** ef1ee344de2bc2b04be3d0f275c0b4d3 libstd *** 92628,92634 **** 21e22ff1ddec6a91c7b379d6f6398649 libstdc++-v3/src/c++17/default_resource.h 3ad10d2e6e8714710066bc9e7d022796 libstdc++-v3/src/c++17/fs_dir.cc 37132b81957ff5846a46a7e467f5e65a libstdc++-v3/src/c++17/fs_ops.cc ! 42defcdc2c69bd9b77c3825755b86943 libstdc++-v3/src/c++17/fs_path.cc 194bab9f1a1b9fef9dcd795adf026641 libstdc++-v3/src/c++17/memory_resource.cc 87912386c5e6de771b56062a52139e93 libstdc++-v3/src/c++17/ostream-inst.cc 2f637a3602ab38de44daa31a9a1de119 libstdc++-v3/src/c++17/string-inst.cc --- 92820,92826 ---- 21e22ff1ddec6a91c7b379d6f6398649 libstdc++-v3/src/c++17/default_resource.h 3ad10d2e6e8714710066bc9e7d022796 libstdc++-v3/src/c++17/fs_dir.cc 37132b81957ff5846a46a7e467f5e65a libstdc++-v3/src/c++17/fs_ops.cc ! eb0697ad748acd58d8b129cb43f4c87e libstdc++-v3/src/c++17/fs_path.cc 194bab9f1a1b9fef9dcd795adf026641 libstdc++-v3/src/c++17/memory_resource.cc 87912386c5e6de771b56062a52139e93 libstdc++-v3/src/c++17/ostream-inst.cc 2f637a3602ab38de44daa31a9a1de119 libstdc++-v3/src/c++17/string-inst.cc *************** ad507228914ca1a6132e381c670846ef libstd *** 92865,92871 **** 7a2795d9a67b4c9e54bb021822709cbb libstdc++-v3/testsuite/18_support/numeric_limits/infinity.cc c4a7e4b3187b8e56f133b8ce3006eaaa libstdc++-v3/testsuite/18_support/numeric_limits/is_iec559.cc deee65878b9e3cf529167436b40d5385 libstdc++-v3/testsuite/18_support/numeric_limits/is_signed.cc ! ce7982d7741c922ca2c747157b63acb8 libstdc++-v3/testsuite/18_support/numeric_limits/lowest.cc 2281311a2e612f693209189aa998c60a libstdc++-v3/testsuite/18_support/numeric_limits/max_digits10.cc afaa5e4e61410f8220b04577a19ec0b4 libstdc++-v3/testsuite/18_support/numeric_limits/min_max.cc de7c9181a9d940179f552929948bf90b libstdc++-v3/testsuite/18_support/numeric_limits/primary.cc --- 93057,93063 ---- 7a2795d9a67b4c9e54bb021822709cbb libstdc++-v3/testsuite/18_support/numeric_limits/infinity.cc c4a7e4b3187b8e56f133b8ce3006eaaa libstdc++-v3/testsuite/18_support/numeric_limits/is_iec559.cc deee65878b9e3cf529167436b40d5385 libstdc++-v3/testsuite/18_support/numeric_limits/is_signed.cc ! c38f20d462579205d19577ee776f412d libstdc++-v3/testsuite/18_support/numeric_limits/lowest.cc 2281311a2e612f693209189aa998c60a libstdc++-v3/testsuite/18_support/numeric_limits/max_digits10.cc afaa5e4e61410f8220b04577a19ec0b4 libstdc++-v3/testsuite/18_support/numeric_limits/min_max.cc de7c9181a9d940179f552929948bf90b libstdc++-v3/testsuite/18_support/numeric_limits/primary.cc *************** d36f17ddc5af3683e9f73f91a7260f8e libstd *** 93683,93688 **** --- 93875,93881 ---- 6ef4ddbe5a32b7eb9d71c46c64d8e78d libstdc++-v3/testsuite/20_util/pair/astuple/astuple_cpp14.cc f48c07c44140150e937f03bb12848635 libstdc++-v3/testsuite/20_util/pair/astuple/constexpr_get.cc 92db3c7cd40898a1713a71660bbd32e1 libstdc++-v3/testsuite/20_util/pair/astuple/constexpr_get_by_type.cc + f2f2b91309730f195c55679493733944 libstdc++-v3/testsuite/20_util/pair/astuple/get-2.cc 728049cccec5bf6658c5cbb4d0af4ec0 libstdc++-v3/testsuite/20_util/pair/astuple/get.cc c933c0e8dc73afd62ff2b2f667dd8227 libstdc++-v3/testsuite/20_util/pair/astuple/get_by_type.cc 4c31e1c7f6940621c5f0f720507aa909 libstdc++-v3/testsuite/20_util/pair/astuple/get_by_type_neg.cc *************** ec79612af30d4118681cd24d521fcc4c libstd *** 93795,93800 **** --- 93988,93994 ---- 1f18023aad96c237ba249d9957ec9f05 libstdc++-v3/testsuite/20_util/result_of/sfinae_friendly_1.cc f07ab1dffe53ab00f86f3026cf86818d libstdc++-v3/testsuite/20_util/result_of/sfinae_friendly_2.cc 694ba23126474c18fc064b738675a2d6 libstdc++-v3/testsuite/20_util/scoped_allocator/1.cc + 35133b79da6d1d1682fa724daad0923a libstdc++-v3/testsuite/20_util/scoped_allocator/108952.cc a545c7c7a6b52d41a0c2234d630c6ac6 libstdc++-v3/testsuite/20_util/scoped_allocator/2.cc 8daf2d919b1ef09c3e9be2eb757822a0 libstdc++-v3/testsuite/20_util/scoped_allocator/3.cc 7e9f8edf716e9726b9acd264006fb719 libstdc++-v3/testsuite/20_util/scoped_allocator/65279.cc *************** dbeedb1eb8c27c088f26c25e4eb41ff5 libstd *** 93927,93933 **** --- 94121,94129 ---- a44a5f6ebd99c9a9ad523cee846b636b libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/58982.cc bdbbf73d23c2708a909ffa067a430c92 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/89164.cc d589653cebbadf45aa7504d84f485063 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_copy_n/move_iterators/1.cc + bb515d1b8e38042eeedcfa58f8e11b14 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_default/94540.cc 09231e7dbd01dc9d5603ce93ecec28e0 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_default_construct/constrained.cc + 014728f643cbd2502fe2e8c3d8af05de libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_default_n/94540.cc d57f7b8b2bd226c51593e4928693775b libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill/32158.cc a7381ea2f9112128a1fefbb037399116 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill/58982.cc ae4c8d13e228d61d7bb7badc49770e43 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill/89164.cc *************** a79a2c659eedeb13d02614038fda5e3a libstd *** 93939,93946 **** --- 94135,94144 ---- 373638dd7048affaf6ffed8eef615bb5 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/94017.cc 37afd793c2c2b520eac6a470e35f1a9e libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_fill_n/dr1339.cc dc7e67084ee40a7b89b329a388673ec1 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_move/constrained.cc + 773c29a9c669bb150d91527dace70fc3 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_value_construct/94540.cc 14bab55e8ff7bd3624cdaf87bf0fd22e libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_value_construct/94831.cc 97e677bb0e3cd867286dfa17c6e9b67d libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_value_construct/constrained.cc + f65604b18e62f5d8eecde4ae5cf41455 libstdc++-v3/testsuite/20_util/specialized_algorithms/uninitialized_value_construct_n/94540.cc 9a1b7e4bfb2a3964d65ab2b01702d1c5 libstdc++-v3/testsuite/20_util/steady_clock/constexpr_data.cc f8db55835a14db41bba0bf7b0b30bb2b libstdc++-v3/testsuite/20_util/synchronized_pool_resource/allocate.cc a5c12a29c462f85283fda0dbec2182f0 libstdc++-v3/testsuite/20_util/synchronized_pool_resource/allocate_single.cc *************** c9f4e2afbe952dbc89c61a0a46dfefa7 libstd *** 94138,94143 **** --- 94336,94342 ---- 49b89488c5f2f8b08b5afbace59564e7 libstdc++-v3/testsuite/20_util/uses_allocator/92878_92947.cc 670720ca5a72e1ccb9eb01b3f0fd7a45 libstdc++-v3/testsuite/20_util/uses_allocator/cons_neg.cc 2bee549b036390dc8ab271a20439c07a libstdc++-v3/testsuite/20_util/uses_allocator/construction.cc + 91b3ce25542d2c354c6bf26e9e2c27e4 libstdc++-v3/testsuite/20_util/uses_allocator/lwg3527.cc 09515817bf420f2311396b2daf00ffb7 libstdc++-v3/testsuite/20_util/uses_allocator/make_obj.cc ae03c2b43b20cf8ac1bd997bfa0b9ce9 libstdc++-v3/testsuite/20_util/uses_allocator/requirements/explicit_instantiation.cc 6889bd8ba19a5b84ea84a55886bf1951 libstdc++-v3/testsuite/20_util/uses_allocator/requirements/typedefs.cc *************** cfd09fb260ddcc6454286c1ee0974762 libstd *** 94171,94176 **** --- 94370,94376 ---- b20cdb20e2ae350d976e52b340735a4c libstdc++-v3/testsuite/20_util/weak_ptr/cons/constexpr.cc bae6e6433438180812f30ae7d4a856d5 libstdc++-v3/testsuite/20_util/weak_ptr/cons/deduction.cc c1ea55493ce2eb7ca9a08850a37018fc libstdc++-v3/testsuite/20_util/weak_ptr/cons/noexcept_move_construct.cc + 6a9ce5f99e0bc779530a9660ce1210f8 libstdc++-v3/testsuite/20_util/weak_ptr/cons/self_move.cc 1f53a3ef9fa709ccf9168083abcc8ab8 libstdc++-v3/testsuite/20_util/weak_ptr/lock/1.cc 0408e5cda7627b1f0ec51ff64d654b0e libstdc++-v3/testsuite/20_util/weak_ptr/observers/owner_before.cc 7e1b904216ad534b48fdd6638bb21311 libstdc++-v3/testsuite/20_util/weak_ptr/requirements/explicit_instantiation/1.cc *************** fd72ebc8f5564c07ba57595544146515 libstd *** 96007,96012 **** --- 96207,96214 ---- 9f3f7297de5ffd1be04994ce0ae49439 libstdc++-v3/testsuite/23_containers/span/2.cc 99d6c1ea7d3fcf797ffd17f5c8f123bd libstdc++-v3/testsuite/23_containers/span/back_assert_neg.cc 7257a3841d42a4b4e2c526754a12138a libstdc++-v3/testsuite/23_containers/span/back_neg.cc + 06a45501dcaec8e13d6ae1e6ee40d1b7 libstdc++-v3/testsuite/23_containers/span/cons_1_assert_neg.cc + b500468357c8536c575705ba4a6c389f libstdc++-v3/testsuite/23_containers/span/cons_2_assert_neg.cc 074820b375398998fb7f897dd96ed804 libstdc++-v3/testsuite/23_containers/span/contiguous_range_neg.cc 05767a53f7beb996573792ac2ad9ac88 libstdc++-v3/testsuite/23_containers/span/deduction.cc e6eb55004ff18e42d36a0e8a174bc424 libstdc++-v3/testsuite/23_containers/span/everything.cc *************** b88d2378fda69ce34b7aca5a960cb2e8 libstd *** 96520,96525 **** --- 96722,96728 ---- 57f43448495a1f4eec092cb9e2012fd2 libstdc++-v3/testsuite/23_containers/vector/cons/87809.cc 3fc61c2eea4ee30b1b78c0784fc95061 libstdc++-v3/testsuite/23_containers/vector/cons/89164.cc 91e34dc9d3989a7274744c16d06d3922 libstdc++-v3/testsuite/23_containers/vector/cons/89164_c++17.cc + 443ccddb1bb60667d2ed2a2bd3e76788 libstdc++-v3/testsuite/23_containers/vector/cons/94540.cc 2b455887b8664a15556cd198ea2793f3 libstdc++-v3/testsuite/23_containers/vector/cons/94831.cc 1b0637cd75d90c6f78015e03dd67a628 libstdc++-v3/testsuite/23_containers/vector/cons/clear_allocator.cc d2beca7d5db03f0cbf7463e386d24849 libstdc++-v3/testsuite/23_containers/vector/cons/cons_size.cc *************** adf4d560e5aaa898a39c8a8adbd8c03a libstd *** 96643,96649 **** ac5672e7f14c29e4e9daa6e47f80992b libstdc++-v3/testsuite/24_iterators/back_insert_iterator/requirements/typedefs.cc 882c665ff5f8175c7c78a6ab0c38dbcf libstdc++-v3/testsuite/24_iterators/bidirectional/concept.cc 7bcc36e24b1de7e367f9734b360cd260 libstdc++-v3/testsuite/24_iterators/bidirectional/tag.cc ! 3800d5ae8dd74f040738a1d3d352c3b9 libstdc++-v3/testsuite/24_iterators/common_iterator/1.cc 324435aecd194db25d558253509d1c24 libstdc++-v3/testsuite/24_iterators/common_iterator/2.cc 5129c792e6bfe1b6cbea670e3aa9b745 libstdc++-v3/testsuite/24_iterators/container_access.cc 14ab787ffbe7315c795d857e5257adca libstdc++-v3/testsuite/24_iterators/contiguous/concept.cc --- 96846,96853 ---- ac5672e7f14c29e4e9daa6e47f80992b libstdc++-v3/testsuite/24_iterators/back_insert_iterator/requirements/typedefs.cc 882c665ff5f8175c7c78a6ab0c38dbcf libstdc++-v3/testsuite/24_iterators/bidirectional/concept.cc 7bcc36e24b1de7e367f9734b360cd260 libstdc++-v3/testsuite/24_iterators/bidirectional/tag.cc ! 0cd033551125be655a0bfc9cd52adfca libstdc++-v3/testsuite/24_iterators/common_iterator/1.cc ! fb111ce7bbedeceab984ff4e60e07c4f libstdc++-v3/testsuite/24_iterators/common_iterator/100823.cc 324435aecd194db25d558253509d1c24 libstdc++-v3/testsuite/24_iterators/common_iterator/2.cc 5129c792e6bfe1b6cbea670e3aa9b745 libstdc++-v3/testsuite/24_iterators/container_access.cc 14ab787ffbe7315c795d857e5257adca libstdc++-v3/testsuite/24_iterators/contiguous/concept.cc *************** af2c66edde57fed474cc7c47119167f4 libstd *** 97592,97599 **** 98aaa071c218ed2b03b506e7e1dea91c libstdc++-v3/testsuite/26_numerics/exclusive_scan/1.cc 786c88392ad21476586549a3bc39caeb libstdc++-v3/testsuite/26_numerics/exclusive_scan/constexpr.cc 8c35eb135966eac7f9f735660421deec libstdc++-v3/testsuite/26_numerics/gcd/1.cc 95693fa697af2ce7ef6deaa0394c7fef libstdc++-v3/testsuite/26_numerics/gcd/92978.cc ! 181c083afcb45ba3ff41798db8b2bc8f libstdc++-v3/testsuite/26_numerics/gcd/gcd_neg.cc 6313a74200a87668bca313215e442bd4 libstdc++-v3/testsuite/26_numerics/headers/ccomplex/std_c++0x_neg.cc 20a1d7fbdc4a485c2ab5c2da4623df1c libstdc++-v3/testsuite/26_numerics/headers/cfenv/std_c++0x_neg.cc 7d3b4a095ff9cd832fa48e1efd2baf89 libstdc++-v3/testsuite/26_numerics/headers/cfenv/types_std_c++0x.cc --- 97796,97804 ---- 98aaa071c218ed2b03b506e7e1dea91c libstdc++-v3/testsuite/26_numerics/exclusive_scan/1.cc 786c88392ad21476586549a3bc39caeb libstdc++-v3/testsuite/26_numerics/exclusive_scan/constexpr.cc 8c35eb135966eac7f9f735660421deec libstdc++-v3/testsuite/26_numerics/gcd/1.cc + f09f29f322df2c041a6b58149c341fbf libstdc++-v3/testsuite/26_numerics/gcd/105844.cc 95693fa697af2ce7ef6deaa0394c7fef libstdc++-v3/testsuite/26_numerics/gcd/92978.cc ! eea9ece0078c25949a461f34d7567f9d libstdc++-v3/testsuite/26_numerics/gcd/gcd_neg.cc 6313a74200a87668bca313215e442bd4 libstdc++-v3/testsuite/26_numerics/headers/ccomplex/std_c++0x_neg.cc 20a1d7fbdc4a485c2ab5c2da4623df1c libstdc++-v3/testsuite/26_numerics/headers/cfenv/std_c++0x_neg.cc 7d3b4a095ff9cd832fa48e1efd2baf89 libstdc++-v3/testsuite/26_numerics/headers/cfenv/types_std_c++0x.cc *************** c982d6aaa4c9dab0894ace50f9f3db73 libstd *** 97665,97672 **** 77e3964372e7319438f2e4bf00b4ffcb libstdc++-v3/testsuite/26_numerics/iota/requirements/explicit_instantiation/2.cc 60f92e8ec904935ac8d4151cc0b481e5 libstdc++-v3/testsuite/26_numerics/iota/requirements/explicit_instantiation/pod.cc 08539aa6d85601e5c884414e0e3665d0 libstdc++-v3/testsuite/26_numerics/lcm/1.cc e34475da99458f7a1a16d3d58bc08693 libstdc++-v3/testsuite/26_numerics/lcm/92978.cc ! 5173c15e5da52949296fbfb05fc1ad06 libstdc++-v3/testsuite/26_numerics/lcm/lcm_neg.cc 4e72ddc5145e1ca4cbaa0da8f2f0e7c9 libstdc++-v3/testsuite/26_numerics/lerp/1.cc f9ae973e3d6f85f4c35471e62402ba98 libstdc++-v3/testsuite/26_numerics/lerp/constexpr.cc 198cb21048f5d36f6a9bf84a5b2dd536 libstdc++-v3/testsuite/26_numerics/lerp/version.cc --- 97870,97878 ---- 77e3964372e7319438f2e4bf00b4ffcb libstdc++-v3/testsuite/26_numerics/iota/requirements/explicit_instantiation/2.cc 60f92e8ec904935ac8d4151cc0b481e5 libstdc++-v3/testsuite/26_numerics/iota/requirements/explicit_instantiation/pod.cc 08539aa6d85601e5c884414e0e3665d0 libstdc++-v3/testsuite/26_numerics/lcm/1.cc + b3b67f4d902b9b5f173eaee34ac9da98 libstdc++-v3/testsuite/26_numerics/lcm/105844.cc e34475da99458f7a1a16d3d58bc08693 libstdc++-v3/testsuite/26_numerics/lcm/92978.cc ! 80a2c8b44ed4f4298cc6588348ea293d libstdc++-v3/testsuite/26_numerics/lcm/lcm_neg.cc 4e72ddc5145e1ca4cbaa0da8f2f0e7c9 libstdc++-v3/testsuite/26_numerics/lerp/1.cc f9ae973e3d6f85f4c35471e62402ba98 libstdc++-v3/testsuite/26_numerics/lerp/constexpr.cc 198cb21048f5d36f6a9bf84a5b2dd536 libstdc++-v3/testsuite/26_numerics/lerp/version.cc *************** a9a0edf832a94e5f249cbef1cd05c30a libstd *** 98807,98812 **** --- 99013,99019 ---- fa5e9c2abafec0dc9a19cea96b11e09e libstdc++-v3/testsuite/27_io/filesystem/operations/symlink_status.cc ca1159d8b32610beba14521c75acf586 libstdc++-v3/testsuite/27_io/filesystem/operations/temp_directory_path.cc a03eed977cf4ae9c04cecde7c11529bb libstdc++-v3/testsuite/27_io/filesystem/operations/weakly_canonical.cc + 9897c7912c7b47987d118515b02ab561 libstdc++-v3/testsuite/27_io/filesystem/path/108636.cc 6fb4260b01b570a6ba3aa218acb876bf libstdc++-v3/testsuite/27_io/filesystem/path/append/path.cc 74da2255a2532220b114aac7b9b77455 libstdc++-v3/testsuite/27_io/filesystem/path/append/source.cc eeff032db1b1e8607861f00f13a58f01 libstdc++-v3/testsuite/27_io/filesystem/path/assign/assign.cc *************** a7f6c5c6d42fc724e816f0a6f81b0956 libstd *** 99074,99080 **** 7798f06f2baae27dd7cccb4e9dd1bc34 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/basic/string_range_00_03.cc ca26e5ccbbeaab37ecfcc00462922d44 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/basic/string_range_01_03.cc 96b0f61e9cf66850c48be2d450360191 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/basic/string_range_02_03.cc ! 313ceb1f034d04f98a16a56fcb13fe8d libstdc++-v3/testsuite/28_regex/algorithms/regex_match/cstring_bracket_01.cc 44aa196cbe2393c1a9247e66c2f3e737 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/dr2329_neg.cc 6cfc2d7e68acfe2e75c13a43b6f5cd05 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/char/53622.cc 52ede5880ec0edb2f7e0753905868a79 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/char/57173.cc --- 99281,99287 ---- 7798f06f2baae27dd7cccb4e9dd1bc34 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/basic/string_range_00_03.cc ca26e5ccbbeaab37ecfcc00462922d44 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/basic/string_range_01_03.cc 96b0f61e9cf66850c48be2d450360191 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/basic/string_range_02_03.cc ! be18eb4b82bfced849527ba79c197674 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/cstring_bracket_01.cc 44aa196cbe2393c1a9247e66c2f3e737 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/dr2329_neg.cc 6cfc2d7e68acfe2e75c13a43b6f5cd05 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/char/53622.cc 52ede5880ec0edb2f7e0753905868a79 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/ecma/char/57173.cc *************** e2bd7fda5e0bfbf9e4428443108b54b4 libstd *** 99100,99105 **** --- 99307,99313 ---- 983995a04e275b5882b415656384c1e7 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/extended/string_range_01_03.cc 7a18523c815a3106661acaafdb948419 libstdc++-v3/testsuite/28_regex/algorithms/regex_match/extended/string_range_02_03.cc bbd2683264a70b1d23273be7cb8128cd libstdc++-v3/testsuite/28_regex/algorithms/regex_match/extended/wstring_locale.cc + e26d22882121948981f066bd564997ca libstdc++-v3/testsuite/28_regex/algorithms/regex_replace/char/103664.cc b2c6bdb034ead3eacbcdbf5001c856a6 libstdc++-v3/testsuite/28_regex/algorithms/regex_replace/char/51711.cc a7401baeec76a127399e4fbd38a674fa libstdc++-v3/testsuite/28_regex/algorithms/regex_replace/char/basic_replace.cc 9e0edefa83821a1d1bd68b202d2c91ca libstdc++-v3/testsuite/28_regex/algorithms/regex_replace/char/dr2213.cc *************** bf13a438aebdc93496f0b45942930d38 libstd *** 99114,99119 **** --- 99322,99329 ---- 7b3b9fad09f313d373cfe55dc5b3f027 libstdc++-v3/testsuite/28_regex/algorithms/regex_search/ecma/flags.cc 9cc4271d5c4a71cd165955d89d2bc10f libstdc++-v3/testsuite/28_regex/algorithms/regex_search/ecma/greedy.cc e3e1e1ae2b895f50dfd5cbbe78b79e6e libstdc++-v3/testsuite/28_regex/algorithms/regex_search/ecma/string_01.cc + 5a7641749deafb9050db1a58a28b53ec libstdc++-v3/testsuite/28_regex/basic_regex/106607.cc + 850c6de509fe6f5e66e773d2feab92e5 libstdc++-v3/testsuite/28_regex/basic_regex/84110.cc fb6abbbc7c451636b6ccd343cea0e6cb libstdc++-v3/testsuite/28_regex/basic_regex/85098.cc 8249857c5e3c1c506df6a82e8ba371ec libstdc++-v3/testsuite/28_regex/basic_regex/assign/char/cstring.cc cfe999eee9edc9ca5b7d53df6db1cf2a libstdc++-v3/testsuite/28_regex/basic_regex/assign/char/cstring_op.cc *************** cc955dcac675cc78bd58be0e740e6556 libstd *** 99150,99155 **** --- 99360,99366 ---- 47c3772ca93b01fa25e7be16778abd38 libstdc++-v3/testsuite/28_regex/basic_regex/ctors/deduction.cc 437b3d22f8190e964f4615d211ab5b6f libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/cstring.cc 04efa12a03b043487d67d750b563691d libstdc++-v3/testsuite/28_regex/basic_regex/ctors/extended/string_range_01_02_03.cc + 2e401c1bf8aabcb389e6eb25f1356cc9 libstdc++-v3/testsuite/28_regex/basic_regex/ctors/grammar.cc c9134d00af6a9ce17d264051b8cad3fb libstdc++-v3/testsuite/28_regex/basic_regex/ctors/move_char.cc 9ab99c10e4cec903186d94aa0e794be2 libstdc++-v3/testsuite/28_regex/basic_regex/ctors/string_char.cc 7d9ece324ad6c087e95c8ef439a69080 libstdc++-v3/testsuite/28_regex/basic_regex/ctors/string_wchar_t.cc *************** f754118861b851f83334813d834cb200 libstd *** 99843,99849 **** 84f30e82c651a89a906788a43f6ecab8 libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc d67c05d9075c1be29c5fc673624caf85 libstdc++-v3/testsuite/experimental/filesystem/iterators/97731.cc e5a1b3250ecbac6348905da5d905d47f libstdc++-v3/testsuite/experimental/filesystem/iterators/directory_iterator.cc ! 6800b111af867d1c5dc76da92647aa5f libstdc++-v3/testsuite/experimental/filesystem/iterators/error_reporting.cc f0e03612f42cb31e388462b8dc7d39fe libstdc++-v3/testsuite/experimental/filesystem/iterators/pop.cc 3c16044a4c55ee682b2645a084b70c29 libstdc++-v3/testsuite/experimental/filesystem/iterators/recursive_directory_iterator.cc 4f73aa6296f892370377563d55069b11 libstdc++-v3/testsuite/experimental/filesystem/operations/absolute.cc --- 100054,100060 ---- 84f30e82c651a89a906788a43f6ecab8 libstdc++-v3/testsuite/experimental/filesystem/filesystem_error/cons.cc d67c05d9075c1be29c5fc673624caf85 libstdc++-v3/testsuite/experimental/filesystem/iterators/97731.cc e5a1b3250ecbac6348905da5d905d47f libstdc++-v3/testsuite/experimental/filesystem/iterators/directory_iterator.cc ! 46fed4912ad4b635be120936e2dd4fe2 libstdc++-v3/testsuite/experimental/filesystem/iterators/error_reporting.cc f0e03612f42cb31e388462b8dc7d39fe libstdc++-v3/testsuite/experimental/filesystem/iterators/pop.cc 3c16044a4c55ee682b2645a084b70c29 libstdc++-v3/testsuite/experimental/filesystem/iterators/recursive_directory_iterator.cc 4f73aa6296f892370377563d55069b11 libstdc++-v3/testsuite/experimental/filesystem/operations/absolute.cc *************** e631cc31fafc1a2fb997671378cb0128 libstd *** 100543,100549 **** ae489ce2f8e4f19b9ad3a63328fdc48e libstdc++-v3/testsuite/libstdc++-xmethods/deque.cc ddb3fcfdfe325dbf4ecdb92191c70722 libstdc++-v3/testsuite/libstdc++-xmethods/forwardlist.cc 8b979c7a5c4be942e0606e70ae008d0b libstdc++-v3/testsuite/libstdc++-xmethods/list.cc ! 1d027dbd869684ca0cb61192b7cada37 libstdc++-v3/testsuite/libstdc++-xmethods/shared_ptr.cc 945c6057e20bbc4b97d5620191b23cc8 libstdc++-v3/testsuite/libstdc++-xmethods/unique_ptr.cc 5b7f0264150ad47c5ff834e86c6e81d1 libstdc++-v3/testsuite/libstdc++-xmethods/vector.cc 0913db5536c8cb3684a316c9a21cb531 libstdc++-v3/testsuite/libstdc++-xmethods/xmethods.exp --- 100754,100760 ---- ae489ce2f8e4f19b9ad3a63328fdc48e libstdc++-v3/testsuite/libstdc++-xmethods/deque.cc ddb3fcfdfe325dbf4ecdb92191c70722 libstdc++-v3/testsuite/libstdc++-xmethods/forwardlist.cc 8b979c7a5c4be942e0606e70ae008d0b libstdc++-v3/testsuite/libstdc++-xmethods/list.cc ! b11d6d85435e8dfeb2c159c271d97eee libstdc++-v3/testsuite/libstdc++-xmethods/shared_ptr.cc 945c6057e20bbc4b97d5620191b23cc8 libstdc++-v3/testsuite/libstdc++-xmethods/unique_ptr.cc 5b7f0264150ad47c5ff834e86c6e81d1 libstdc++-v3/testsuite/libstdc++-xmethods/vector.cc 0913db5536c8cb3684a316c9a21cb531 libstdc++-v3/testsuite/libstdc++-xmethods/xmethods.exp *************** f34438af4cd4cb8233c9bc8e4ead8e98 libstd *** 100792,100798 **** 388c77d8d530897650c1d9b9c5e2f2e7 libstdc++-v3/testsuite/std/ranges/adaptors/drop_while.cc 105ea802ef341f4d5aef7d47828701fd libstdc++-v3/testsuite/std/ranges/adaptors/elements.cc 422b7c7dcad00cde0852203edf42aaa3 libstdc++-v3/testsuite/std/ranges/adaptors/filter.cc ! 4707fdca5d12b8213e0d631f1e05c99e libstdc++-v3/testsuite/std/ranges/adaptors/join.cc aa13eee6ba501f263a3160f55ab522db libstdc++-v3/testsuite/std/ranges/adaptors/lwg3286.cc b214eeca1323d25665dd69499f5b8bbc libstdc++-v3/testsuite/std/ranges/adaptors/lwg3313_neg.cc b4f233ae889b1a6c5cc26257b09ea2a7 libstdc++-v3/testsuite/std/ranges/adaptors/lwg3325_neg.cc --- 101003,101009 ---- 388c77d8d530897650c1d9b9c5e2f2e7 libstdc++-v3/testsuite/std/ranges/adaptors/drop_while.cc 105ea802ef341f4d5aef7d47828701fd libstdc++-v3/testsuite/std/ranges/adaptors/elements.cc 422b7c7dcad00cde0852203edf42aaa3 libstdc++-v3/testsuite/std/ranges/adaptors/filter.cc ! cb172dd95100d224cc90b0045c0ff583 libstdc++-v3/testsuite/std/ranges/adaptors/join.cc aa13eee6ba501f263a3160f55ab522db libstdc++-v3/testsuite/std/ranges/adaptors/lwg3286.cc b214eeca1323d25665dd69499f5b8bbc libstdc++-v3/testsuite/std/ranges/adaptors/lwg3313_neg.cc b4f233ae889b1a6c5cc26257b09ea2a7 libstdc++-v3/testsuite/std/ranges/adaptors/lwg3325_neg.cc *************** e29b189a9133430a1874afdc34808c26 libstd *** 100813,100819 **** 8d8e3eb5f08d2b84159861294c9ec4b6 libstdc++-v3/testsuite/std/ranges/iota/size.cc 28aec73b7cd10c11b9e1a909e8c4ba66 libstdc++-v3/testsuite/std/ranges/istream_view.cc 39a74ff1ef561d51b687d686060239c1 libstdc++-v3/testsuite/std/ranges/p2259.cc ! 8ad5c819617ad623f237ce25af7657a8 libstdc++-v3/testsuite/std/ranges/p2325.cc 5f258fdd276b98d0cf03b265e1546406 libstdc++-v3/testsuite/std/ranges/range.cc 611f120f9b18a09ab8b2e78fa3ba9ef2 libstdc++-v3/testsuite/std/ranges/refinements.cc 8ef3ca45217d902b9162717de706dd0a libstdc++-v3/testsuite/std/ranges/safe_range.cc --- 101024,101030 ---- 8d8e3eb5f08d2b84159861294c9ec4b6 libstdc++-v3/testsuite/std/ranges/iota/size.cc 28aec73b7cd10c11b9e1a909e8c4ba66 libstdc++-v3/testsuite/std/ranges/istream_view.cc 39a74ff1ef561d51b687d686060239c1 libstdc++-v3/testsuite/std/ranges/p2259.cc ! 60729af2bfb02c4bef1809797a19e395 libstdc++-v3/testsuite/std/ranges/p2325.cc 5f258fdd276b98d0cf03b265e1546406 libstdc++-v3/testsuite/std/ranges/range.cc 611f120f9b18a09ab8b2e78fa3ba9ef2 libstdc++-v3/testsuite/std/ranges/refinements.cc 8ef3ca45217d902b9162717de706dd0a libstdc++-v3/testsuite/std/ranges/safe_range.cc *************** e29b189a9133430a1874afdc34808c26 libstd *** 100821,100826 **** --- 101032,101038 ---- 85a2edb450129d2ffc9c81303930f46f libstdc++-v3/testsuite/std/ranges/single_view.cc 8a3bc76ad2e10ea103445876cf99f0ea libstdc++-v3/testsuite/std/ranges/sized.cc efaf2202d6b2d3f0be93e38c4b9f3cab libstdc++-v3/testsuite/std/ranges/subrange/96042.cc + 1296c3e0f2c2c6e1cbf08f5653d24b2d libstdc++-v3/testsuite/std/ranges/subrange/constexpr.cc 220e7c63243ad2a4bfb6e409f46cb5bc libstdc++-v3/testsuite/std/ranges/subrange/lwg3282_neg.cc a001429cc75f99af68b5fb8d03a383cf libstdc++-v3/testsuite/std/ranges/subrange/lwg3286.cc c5a935dae00aaf011e3dd35c5c3e93ed libstdc++-v3/testsuite/std/ranges/subrange/lwg3433.cc *************** c836a90323b839246645b3db18ad61db libstd *** 101550,101556 **** 831e968fad59c8fb2c29852e989b4933 libstdc++-v3/testsuite/util/thread/all.h b950d655469c477755252b1e18009596 libtool-ldflags c91d7743f7070c79d86515441fc7e347 libtool.m4 ! 6440ed3f06adfd00004bae442da020dd libvtv/ChangeLog 917a384819d8c88f932f05b9f8901a27 libvtv/Makefile.am b1170aae9472f26fdc8326737dc22aba libvtv/Makefile.in 3b765c4f4a0a0f606db1472bce2b8d29 libvtv/acinclude.m4 --- 101762,101768 ---- 831e968fad59c8fb2c29852e989b4933 libstdc++-v3/testsuite/util/thread/all.h b950d655469c477755252b1e18009596 libtool-ldflags c91d7743f7070c79d86515441fc7e347 libtool.m4 ! 2132fe6b87df05ca9a0bd02a886d4e23 libvtv/ChangeLog 917a384819d8c88f932f05b9f8901a27 libvtv/Makefile.am b1170aae9472f26fdc8326737dc22aba libvtv/Makefile.in 3b765c4f4a0a0f606db1472bce2b8d29 libvtv/acinclude.m4 *************** a82059e4cf6d1733664ef9a8ac817f42 libvtv *** 101633,101639 **** f1ea2b13357bfe01c43d3b6fbf31fd48 libvtv/vtv_utils.h 247597a3fcc5b5aa8bd923351c59d853 ltgcc.m4 06c2854f9cfe5864b2885e0d0e9c512f ltmain.sh ! 5a8e03071c7c90cd50a6ecf9ec3101c1 lto-plugin/ChangeLog 48ea87886a6a768ab6024edccc8e1e31 lto-plugin/Makefile.am 9113360bfd397d09dc99413406c60ad4 lto-plugin/Makefile.in 75fc65b35d0a47ac098f7a278d37060b lto-plugin/aclocal.m4 --- 101845,101851 ---- f1ea2b13357bfe01c43d3b6fbf31fd48 libvtv/vtv_utils.h 247597a3fcc5b5aa8bd923351c59d853 ltgcc.m4 06c2854f9cfe5864b2885e0d0e9c512f ltmain.sh ! 5287f85c1ebb68ded224ad878e5765a2 lto-plugin/ChangeLog 48ea87886a6a768ab6024edccc8e1e31 lto-plugin/Makefile.am 9113360bfd397d09dc99413406c60ad4 lto-plugin/Makefile.in 75fc65b35d0a47ac098f7a278d37060b lto-plugin/aclocal.m4 *************** dee72a6a60e99528b0d17bf3ff9a1e15 ltopti *** 101645,101651 **** bc2f6032c98896249eadb56177c7d357 ltsugar.m4 c30cd33c496505f13d9fbdb6970c7c33 ltversion.m4 293853a13b7e218e3a4342cf85fbbf25 lt~obsolete.m4 ! 3c082eac4d3fb4968216f65bca9530b5 maintainer-scripts/ChangeLog 33c7bc2d2c55956dfac85a05d8a80eff maintainer-scripts/README e70ffb6559f8817db41ee1e69bc60287 maintainer-scripts/branch_changer.py 1c3f2c7d87d076b4209a2a03844292e5 maintainer-scripts/bugzilla-close-candidate.py --- 101857,101863 ---- bc2f6032c98896249eadb56177c7d357 ltsugar.m4 c30cd33c496505f13d9fbdb6970c7c33 ltversion.m4 293853a13b7e218e3a4342cf85fbbf25 lt~obsolete.m4 ! 9707f90d249cd69600518d20b9754756 maintainer-scripts/ChangeLog 33c7bc2d2c55956dfac85a05d8a80eff maintainer-scripts/README e70ffb6559f8817db41ee1e69bc60287 maintainer-scripts/branch_changer.py 1c3f2c7d87d076b4209a2a03844292e5 maintainer-scripts/bugzilla-close-candidate.py *************** cf2baa0854f564a7785307e79f155efc symlin *** 101665,101671 **** 40bb1f4ce4a60a36d1ec50d66aeed4d1 test-driver cb06c1be6a41d68b0a65e0c1a91752bc ylwrap 03bf3ba8089f4bf475ef4035cf316a47 zlib/CMakeLists.txt ! 1027c2fbfdfcd84db4e4b4055ebc26a5 zlib/ChangeLog 25f33f86e95b8478cd142323485efc71 zlib/ChangeLog.gcj 0e9a37be8e3b85cc0ccf60504064c297 zlib/ChangeLog.jit b7a1991f01daea3efe108a215c5514a5 zlib/FAQ --- 101877,101883 ---- 40bb1f4ce4a60a36d1ec50d66aeed4d1 test-driver cb06c1be6a41d68b0a65e0c1a91752bc ylwrap 03bf3ba8089f4bf475ef4035cf316a47 zlib/CMakeLists.txt ! 17eb8d382097ea6ccf801269a1c6eb4f zlib/ChangeLog 25f33f86e95b8478cd142323485efc71 zlib/ChangeLog.gcj 0e9a37be8e3b85cc0ccf60504064c297 zlib/ChangeLog.jit b7a1991f01daea3efe108a215c5514a5 zlib/FAQ diff -Nrcpad gcc-10.4.0/NEWS gcc-10.5.0/NEWS *** gcc-10.4.0/NEWS Tue Jun 28 08:55:31 2022 --- gcc-10.5.0/NEWS Fri Jul 7 07:09:16 2023 *************** see ONEWS. *** 6,34 **** ====================================================================== http://gcc.gnu.org/gcc-10/index.html GCC 10 Release Series ! June 28, 2022 The [1]GNU project and the GCC developers are pleased to announce the ! release of GCC 10.4. This release is a bug-fix release, containing fixes for regressions in ! GCC 10.3 relative to previous releases of GCC. Release History GCC 10.4 ! June 28, 2022 ([2]changes, [3]documentation) GCC 10.3 ! April 8, 2021 ([4]changes, [5]documentation) GCC 10.2 ! July 23, 2020 ([6]changes, [7]documentation) GCC 10.1 ! May 7, 2020 ([8]changes, [9]documentation) References and Acknowledgements --- 6,38 ---- ====================================================================== http://gcc.gnu.org/gcc-10/index.html + GCC 10 Release Series ! July, 7, 2023 The [1]GNU project and the GCC developers are pleased to announce the ! release of GCC 10.5. This release is a bug-fix release, containing fixes for regressions in ! GCC 10.4 relative to previous releases of GCC. Release History + GCC 10.5 + July 7, 2023 ([2]changes, [3]documentation) + GCC 10.4 ! June 28, 2022 ([4]changes, [5]documentation) GCC 10.3 ! April 8, 2021 ([6]changes, [7]documentation) GCC 10.2 ! July 23, 2020 ([8]changes, [9]documentation) GCC 10.1 ! May 7, 2020 ([10]changes, [11]documentation) References and Acknowledgements *************** References and Acknowledgements *** 36,96 **** 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 ! 2022-06-28[22]. References 1. http://www.gnu.org/ 2. http://gcc.gnu.org/gcc-10/changes.html ! 3. http://gcc.gnu.org/onlinedocs/10.4.0/ 4. http://gcc.gnu.org/gcc-10/changes.html ! 5. http://gcc.gnu.org/onlinedocs/10.3.0/ 6. http://gcc.gnu.org/gcc-10/changes.html ! 7. http://gcc.gnu.org/onlinedocs/10.2.0/ 8. http://gcc.gnu.org/gcc-10/changes.html ! 9. http://gcc.gnu.org/onlinedocs/10.1.0/ ! 10. http://gcc.gnu.org/gcc-10/buildstat.html ! 11. http://gcc.gnu.org/onlinedocs/gcc-10.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-10/changes.html GCC 10 Release Series Changes, New Features, and Fixes --- 40,102 ---- 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 ! 2023-07-07. References 1. http://www.gnu.org/ 2. http://gcc.gnu.org/gcc-10/changes.html ! 3. http://gcc.gnu.org/onlinedocs/10.5.0/ 4. http://gcc.gnu.org/gcc-10/changes.html ! 5. http://gcc.gnu.org/onlinedocs/10.4.0/ 6. http://gcc.gnu.org/gcc-10/changes.html ! 7. http://gcc.gnu.org/onlinedocs/10.3.0/ 8. http://gcc.gnu.org/gcc-10/changes.html ! 9. http://gcc.gnu.org/onlinedocs/10.2.0/ ! 10. http://gcc.gnu.org/gcc-10/changes.html ! 11. http://gcc.gnu.org/onlinedocs/10.1.0/ ! 12. http://gcc.gnu.org/gcc-10/buildstat.html ! 13. http://gcc.gnu.org/onlinedocs/gcc-10.1.0/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 ====================================================================== http://gcc.gnu.org/gcc-10/changes.html + GCC 10 Release Series Changes, New Features, and Fixes *************** General Improvements *** 195,210 **** New Languages and Language-Specific Improvements ! * Version 2.6 of the [17]OpenACC specification is now supported in the C, C++ and Fortran compilers. See the [18]implementation status section on the OpenACC wiki page and the [19]run-time library documentation for further information. * GCC 10 adds a number of newly implemented [20]OpenMP 5.0 features ! on top of the GCC 9 release such as conditional lastprivate clause, ! scan and loop directives, order(concurrent) and use_device_addr ! clauses support, if clause on simd construct or partial support for ! the declare variant directive, getting closer to full support of ! the OpenMP 5.0 standard. * OpenMP and OpenACC now support [21]offloading to AMD Radeon (GCN) GPUs; supported are the third-generation Fiji (fiji) and the fifth-generation VEGA 10/VEGA 20 (gfx900 or gfx906). --- 201,216 ---- New Languages and Language-Specific Improvements ! * Version 2.6 of the [17]OpenACC specification is now supported by the C, C++ and Fortran compilers. See the [18]implementation status section on the OpenACC wiki page and the [19]run-time library documentation for further information. * GCC 10 adds a number of newly implemented [20]OpenMP 5.0 features ! such as conditional lastprivate clause, scan and loop directives, ! order(concurrent) and use_device_addr clauses support, if clause on ! simd construct, and partial support for the declare variant ! directive, getting closer to full support of the OpenMP 5.0 ! standard. * OpenMP and OpenACC now support [21]offloading to AMD Radeon (GCN) GPUs; supported are the third-generation Fiji (fiji) and the fifth-generation VEGA 10/VEGA 20 (gfx900 or gfx906). *************** New Languages and Language-Specific Impr *** 258,266 **** the input encoding (UTF-8, by default), in addition to the UCN syntax (\uNNNN or \UNNNNNNNN) that is already supported: ! static const int Ï€ = 3; ! int get_naïve_pi() { ! return Ï€; } C --- 264,272 ---- the input encoding (UTF-8, by default), in addition to the UCN syntax (\uNNNN or \UNNNNNNNN) that is already supported: ! static const int p = 3; ! int get_naïve_pi() { ! return p; } C *************** typedef svbool_t pred512 __attribute__(( *** 540,546 **** one. Previously it would always use SVE if possible. + If a vector loop uses Advanced SIMD rather than SVE, the vectorizer now considers using SVE to vectorize the left-over ! elements (the “scalar tail†or “epilogâ€). + Besides these specific points, there have been many general improvements to the way that the vectorizer uses SVE. * The -mbranch-protection=pac-ret option now accepts the optional --- 546,552 ---- one. Previously it would always use SVE if possible. + If a vector loop uses Advanced SIMD rather than SVE, the vectorizer now considers using SVE to vectorize the left-over ! elements (the "scalar tail" or "epilog"). + Besides these specific points, there have been many general improvements to the way that the vectorizer uses SVE. * The -mbranch-protection=pac-ret option now accepts the optional *************** typedef svbool_t pred512 __attribute__(( *** 645,652 **** AMD Radeon (GCN) ! * The code generation and in particular the vectorization support has ! been much improved. ARC --- 651,658 ---- AMD Radeon (GCN) ! * Code generation and in particular vectorization support have been ! much improved. ARC *************** GCC 10.4 *** 829,848 **** MMX no longer changes how they are passed nor returned. This ABI change is now diagnosed with -Wpsabi. For questions related to the use of GCC, please consult these web ! pages and the [61]GCC manuals. If that fails, the ! [62]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 [63]gcc@gcc.gnu.org. All of [64]our lists have public archives. ! Copyright (C) [65]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 [66]maintained by the GCC team. Last modified ! 2022-06-28[67]. References --- 835,861 ---- MMX no longer changes how they are passed nor returned. This ABI change is now diagnosed with -Wpsabi. + GCC 10.5 + + This is the [61]list of problem reports (PRs) from GCC's bug tracking + system that are known to be fixed in the 10.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 [62]GCC manuals. If that fails, the ! [63]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 [64]gcc@gcc.gnu.org. All of [65]our lists have public archives. ! Copyright (C) [66]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 [67]maintained by the GCC team. Last modified ! 2023-07-07. References *************** References *** 863,869 **** 15. https://facebook.github.io/zstd/ 16. https://gcc.gnu.org/onlinedocs/gcc-10.1.0/gcc/Optimize-Options.html#index-fprofile-values 17. https://www.openacc.org/ ! 18. https://gcc.gnu.org/wiki/OpenACC/Implementation Status#status-10 19. https://gcc.gnu.org/onlinedocs/gcc-10.1.0/libgomp/#toc-Enabling-OpenACC-1 20. https://www.openmp.org/specifications/ 21. https://gcc.gnu.org/wiki/Offloading --- 876,882 ---- 15. https://facebook.github.io/zstd/ 16. https://gcc.gnu.org/onlinedocs/gcc-10.1.0/gcc/Optimize-Options.html#index-fprofile-values 17. https://www.openacc.org/ ! 18. https://gcc.gnu.org/wiki/OpenACC/Implementation%20Status#status-10 19. https://gcc.gnu.org/onlinedocs/gcc-10.1.0/libgomp/#toc-Enabling-OpenACC-1 20. https://www.openmp.org/specifications/ 21. https://gcc.gnu.org/wiki/Offloading *************** References *** 889,896 **** 41. https://gcc.gnu.org/onlinedocs/jit/topics/compatibility.html#c.gcc_jit_version_patchlevel 42. https://gcc.gnu.org/onlinedocs/jit/topics/types.html#c.gcc_jit_context_new_bitfield 43. https://developer.arm.com/documentation/101028/0009/Data-processing-intrinsics ! 44. https://developer.arm.com/architectures/cpu-architecture/m-profile ! 45. https://developer.arm.com/architectures/instruction-sets/simd-isas/helium/helium-intrinsics 46. https://developer.arm.com/documentation/101028/0010/Custom-Datapath-Extension 47. https://gcc.gnu.org/onlinedocs/gcc-10.1.0/gcc/AVR-Options.html#index-nodevicespecs 48. https://gcc.gnu.org/install/configure.html#avr --- 902,909 ---- 41. https://gcc.gnu.org/onlinedocs/jit/topics/compatibility.html#c.gcc_jit_version_patchlevel 42. https://gcc.gnu.org/onlinedocs/jit/topics/types.html#c.gcc_jit_context_new_bitfield 43. https://developer.arm.com/documentation/101028/0009/Data-processing-intrinsics ! 44. https://developer.arm.com/Architectures/M-Profile%20Architecture ! 45. https://developer.arm.com/architectures/instruction-sets/intrinsics/ 46. https://developer.arm.com/documentation/101028/0010/Custom-Datapath-Extension 47. https://gcc.gnu.org/onlinedocs/gcc-10.1.0/gcc/AVR-Options.html#index-nodevicespecs 48. https://gcc.gnu.org/install/configure.html#avr *************** References *** 906,922 **** 58. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=10.2 59. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=10.3 60. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=10.4 ! 61. https://gcc.gnu.org/onlinedocs/ ! 62. mailto:gcc-help@gcc.gnu.org ! 63. mailto:gcc@gcc.gnu.org ! 64. https://gcc.gnu.org/lists.html ! 65. https://www.fsf.org/ ! 66. https://gcc.gnu.org/about.html ! 67. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-9/index.html GCC 9 Release Series May 27, 2022 The [1]GNU project and the GCC developers are pleased to announce the --- 919,938 ---- 58. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=10.2 59. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=10.3 60. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=10.4 ! 61. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=10.5 ! 62. https://gcc.gnu.org/onlinedocs/ ! 63. mailto:gcc-help@gcc.gnu.org ! 64. mailto:gcc@gcc.gnu.org ! 65. https://gcc.gnu.org/lists.html ! 66. https://www.fsf.org/ ! 67. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-9/index.html + GCC 9 Release Series + (This release series is no longer supported.) + May 27, 2022 The [1]GNU project and the GCC developers are pleased to announce the *************** References and Acknowledgements *** 975,981 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-05-27[24]. References --- 991,997 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 1002,1010 **** 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-9/changes.html GCC 9 Release Series Changes, New Features, and Fixes --- 1018,1026 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-9/changes.html + GCC 9 Release Series Changes, New Features, and Fixes *************** General Improvements *** 1058,1069 **** 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. --- 1074,1083 ---- 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] ! generates code suitable for live patching. At the same time it ! provides multiple-level control over IPA optimizations. See the ! user guide for more details. * 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. *************** New Targets and Target Specific Improvem *** 1641,1646 **** --- 1655,1684 ---- following ISA extensions: AVX512F, AVX512VL, AVX512CD, AVX512BW, AVX512DQ, AVX512VNNI. + MIPS + + * The Loongson loongson-mmi and loongson-ext extensions have been + split from loongson3a: + + loongson-mmi contains the Loongson MMI (MultiMedia extensions + Instructions). + + loongson-ext contains the Loongson EXT (EXTensions + instructions). + * The Loongson EXT2 (EXTensions R2 instructions) are now supported. + + loongson-ext2 contains the Loongson EXT2 instructions. + Command-line options-m[no-]loongson-mmi, -m[no-]loongson-ext, and + -m[no-]loongson-ext2 enable or disable those extensions. + * Support has been added for the following processors (GCC + identifiers in parentheses): + + Loongson 3A1000 (gs464) which enables loongson-mmi, + loongson-ext by default. + + Loongson 3A2000/3A3000 (gs464e) which enables loongson-mmi, + loongson-ext, loongson-ext2 by default. + + Loongson 2K1000 (gs264e) which enables loongson-ext, + loongson-ext2, msa by default. + The GCC identifiers can be used as arguments to the -mcpu and + -mtune options (as in -mcpu=gs464 or -mtune=gs464e) or as arguments + to the equivalent target attributes and pragmas. + OpenRISC * A new back end targeting OpenRISC processors has been contributed *************** GCC 9.5 *** 1782,1788 **** provided this notice is preserved. These pages are [75]maintained by the GCC team. Last modified ! 2022-05-27[76]. References --- 1820,1826 ---- provided this notice is preserved. These pages are [75]maintained by the GCC team. Last modified ! 2023-02-22. References *************** References *** 1821,1827 **** 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/Implementation Status#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 --- 1859,1865 ---- 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/Implementation%20Status#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 *************** References *** 1861,1869 **** 73. https://gcc.gnu.org/lists.html 74. https://www.fsf.org/ 75. https://gcc.gnu.org/about.html - 76. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-8/index.html GCC 8 Release Series (This release series is no longer supported.) --- 1899,1907 ---- 73. https://gcc.gnu.org/lists.html 74. https://www.fsf.org/ 75. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-8/index.html + GCC 8 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 1926,1932 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-05-06[24]. References --- 1964,1970 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 1953,1961 **** 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-8/changes.html GCC 8 Release Series Changes, New Features, and Fixes --- 1991,1999 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-8/changes.html + GCC 8 Release Series Changes, New Features, and Fixes *************** void copy (const char *s) *** 2240,2246 **** { char buf[80]; strncpy (buf, s, sizeof buf); ! … } warning: 'strncpy' specified bound 80 equals destination size [-Wstringop-trunca tion] --- 2278,2284 ---- { char buf[80]; strncpy (buf, s, sizeof buf); ! ... } warning: 'strncpy' specified bound 80 equals destination size [-Wstringop-trunca tion] *************** void f (void) *** 2313,2319 **** { char a[] = "abcd1234"; strcpy (a, a + 4); ! … } warning: 'strcpy' accessing 5 bytes at offsets 0 and 4 overlaps 1 byte at offset 4 [-Wrestrict] --- 2351,2357 ---- { char a[] = "abcd1234"; strcpy (a, a + 4); ! ... } warning: 'strcpy' accessing 5 bytes at offsets 0 and 4 overlaps 1 byte at offset 4 [-Wrestrict] *************** New Targets and Target Specific Improvem *** 2736,2748 **** + Secure functions via sjli instruction. * New exception handling implementation. * Revamped trampoline implementation. ! * Refactored small data feature implementation, controlled via -G ! command line option. * New support for reduced register set ARC architecture ! configurations, controlled via -mrf16 command line option. * Refurbished and improved support for zero overhead loops. ! Introduced -mlpc-width command line option to control the width of ! lp_count register. ARM --- 2774,2786 ---- + Secure functions via sjli instruction. * New exception handling implementation. * Revamped trampoline implementation. ! * Refactored small data feature implementation, controlled via the -G ! command-line option. * New support for reduced register set ARC architecture ! configurations, controlled via the -mrf16 command-line option. * Refurbished and improved support for zero overhead loops. ! Introduced -mlpc-width command-line option to control the width of ! the lp_count register. ARM *************** GCC 8.5 *** 3035,3041 **** provided this notice is preserved. These pages are [44]maintained by the GCC team. Last modified ! 2021-10-01[45]. References --- 3073,3079 ---- provided this notice is preserved. These pages are [44]maintained by the GCC team. Last modified ! 2023-01-11. References *************** References *** 3083,3091 **** 42. https://gcc.gnu.org/lists.html 43. https://www.fsf.org/ 44. https://gcc.gnu.org/about.html - 45. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-7/index.html GCC 7 Release Series (This release series is no longer supported.) --- 3121,3129 ---- 42. https://gcc.gnu.org/lists.html 43. https://www.fsf.org/ 44. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-7/index.html + GCC 7 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 3148,3154 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-05-06[24]. References --- 3186,3192 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 3175,3183 **** 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 Changes, New Features, and Fixes --- 3213,3221 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-7/changes.html + GCC 7 Release Series Changes, New Features, and Fixes *************** void f (int n) *** 3546,3552 **** d = alloca (n); else d = malloc (n); ! … } warning: argument to 'alloca may be too large due to conversion from 'int' to 'l --- 3584,3590 ---- d = alloca (n); else d = malloc (n); ! ... } warning: argument to 'alloca may be too large due to conversion from 'int' to 'l *************** ong unsigned int' [-Walloca-larger-than= *** 3559,3565 **** void f (size_t n) { char *d = alloca (n); ! … } warning: unbounded use of 'alloca' [-Walloca-larger-than=] --- 3597,3603 ---- void f (size_t n) { char *d = alloca (n); ! ... } warning: unbounded use of 'alloca' [-Walloca-larger-than=] *************** void f (unsigned x) *** 3607,3613 **** { char d[4]; snprintf (d, sizeof d, "%#02x", x & 0xff); ! … } warning: 'snprintf' output may be truncated before the last format character [-W --- 3645,3651 ---- { char d[4]; snprintf (d, sizeof d, "%#02x", x & 0xff); ! ... } warning: 'snprintf' output may be truncated before the last format character [-W *************** void f (const char *fname) *** 3635,3641 **** char d[8]; strncpy (d, "/tmp/", sizeof d); strncat (d, fname, sizeof d); ! … } warning: specified bound 8 equals the size of the destination [-Wstringop-overfl --- 3673,3679 ---- char d[8]; strncpy (d, "/tmp/", sizeof d); strncat (d, fname, sizeof d); ! ... } warning: specified bound 8 equals the size of the destination [-Wstringop-overfl *************** test.cc:4:11: error: expected ';' after *** 3773,3782 **** + std::as_const, std::not_fn, std::has_unique_object_representations, constexpr std::addressof. ! Thanks to Daniel Krügler, Tim Shen, Edward Smith-Rowland, and Ville Voutilainen for work on the C++17 support. * A new power-of-two rehashing policy for use with the _Hashtable ! internals, thanks to François Dumont. Fortran --- 3811,3820 ---- + std::as_const, std::not_fn, std::has_unique_object_representations, constexpr std::addressof. ! Thanks to Daniel Krügler, Tim Shen, Edward Smith-Rowland, and Ville Voutilainen for work on the C++17 support. * A new power-of-two rehashing policy for use with the _Hashtable ! internals, thanks to François Dumont. Fortran *************** const int* get_address (unsigned idx) *** 3946,3952 **** } * A new command-line option -Wmisspelled-isr has been added. It turns ! off — or turns into errors — warnings that are reported for interrupt service routines (ISRs) which don't follow AVR-LibC's naming convention of prefixing ISR names with __vector. * __builtin_avr_nops(n) is a new [17]built-in function that inserts n --- 3984,3990 ---- } * A new command-line option -Wmisspelled-isr has been added. It turns ! off -- or turns into errors -- warnings that are reported for interrupt service routines (ISRs) which don't follow AVR-LibC's naming convention of prefixing ISR names with __vector. * __builtin_avr_nops(n) is a new [17]built-in function that inserts n *************** GCC 7.5 *** 4245,4251 **** provided this notice is preserved. These pages are [33]maintained by the GCC team. Last modified ! 2021-10-17[34]. References --- 4283,4289 ---- provided this notice is preserved. These pages are [33]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 4282,4290 **** 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 (This release series is no longer supported.) --- 4320,4328 ---- 31. https://gcc.gnu.org/lists.html 32. https://www.fsf.org/ 33. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-6/index.html + GCC 6 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 4347,4353 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2021-07-28[24]. References --- 4385,4391 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 4374,4382 **** 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-6/changes.html GCC 6 Release Series Changes, New Features, and Fixes --- 4412,4420 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-6/changes.html + GCC 6 Release Series Changes, New Features, and Fixes *************** New Targets and Target Specific Improvem *** 4795,4801 **** added. This includes new intrinsic and built-in support. It is enabled through option -mmwaitx. The instructions monitorx and mwaitx implement the same functionality as the old monitor and ! mwait instructions. In addition mwaitx adds a configurable timer. The timer value is received as third argument and stored in register %ebx. * x86-64 targets now allow stack realignment from a word-aligned --- 4833,4839 ---- added. This includes new intrinsic and built-in support. It is enabled through option -mmwaitx. The instructions monitorx and mwaitx implement the same functionality as the old monitor and ! mwait instructions. In addition, mwaitx adds a configurable timer. The timer value is received as third argument and stored in register %ebx. * x86-64 targets now allow stack realignment from a word-aligned *************** Operating Systems *** 4982,4993 **** RTEMS * The RTEMS thread model implementation changed. Mutexes now use ! self-contained objects defined in Newlibinstead of Classic API semaphores. The keys for thread specific data and the once function are directly defined via . Self-contained ! condition variables are provided via Newlib . The RTEMS thread model also supports C++11 threads. ! * OpenMP support now uses self-contained objects provided by Newlib and offers a significantly better performance compared to the POSIX configuration of libgomp. It is possible to configure thread pools for each scheduler instance via the environment --- 5020,5031 ---- RTEMS * The RTEMS thread model implementation changed. Mutexes now use ! self-contained objects defined in newlib instead of Classic API semaphores. The keys for thread specific data and the once function are directly defined via . Self-contained ! condition variables are provided via newlib . The RTEMS thread model also supports C++11 threads. ! * OpenMP support now uses self-contained objects provided by newlib and offers a significantly better performance compared to the POSIX configuration of libgomp. It is possible to configure thread pools for each scheduler instance via the environment *************** Operating Systems *** 5085,5091 **** provided this notice is preserved. These pages are [32]maintained by the GCC team. Last modified ! 2021-10-31[33]. References --- 5123,5129 ---- provided this notice is preserved. These pages are [32]maintained by the GCC team. Last modified ! 2023-02-20. References *************** References *** 5099,5105 **** 8. https://gcc.gnu.org/wiki/Offloading 9. https://www.openmp.org/specifications/ 10. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-1266 ! 11. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4377.pdf 12. https://gcc.gnu.org/projects/cxx-status.html#cxx1z 13. https://gcc.gnu.org/onlinedocs/gcc-6.1.0/jit/topics/performance.html 14. https://gcc.gnu.org/onlinedocs/gcc-6.1.0/jit/topics/functions.html#gcc_jit_block_end_with_switch --- 5137,5143 ---- 8. https://gcc.gnu.org/wiki/Offloading 9. https://www.openmp.org/specifications/ 10. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2014-1266 ! 11. https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2015/n4377.pdf 12. https://gcc.gnu.org/projects/cxx-status.html#cxx1z 13. https://gcc.gnu.org/onlinedocs/gcc-6.1.0/jit/topics/performance.html 14. https://gcc.gnu.org/onlinedocs/gcc-6.1.0/jit/topics/functions.html#gcc_jit_block_end_with_switch *************** References *** 5121,5129 **** 30. https://gcc.gnu.org/lists.html 31. https://www.fsf.org/ 32. https://gcc.gnu.org/about.html - 33. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-5/index.html GCC 5 Release Series (This release series is no longer supported.) --- 5159,5167 ---- 30. https://gcc.gnu.org/lists.html 31. https://www.fsf.org/ 32. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-5/index.html + GCC 5 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 5186,5192 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2021-07-28[24]. References --- 5224,5230 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 5213,5221 **** 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-5/changes.html GCC 5 Release Series Changes, New Features, and Fixes --- 5251,5259 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-5/changes.html + GCC 5 Release Series Changes, New Features, and Fixes *************** Target Specific Changes *** 6013,6019 **** added. This includes new intrinsic and built-in support. It is enabled through option -mmwaitx. The instructions monitorx and mwaitx implement the same functionality as the old monitor and ! mwait instructions. In addition mwaitx adds a configurable timer. The timer value is received as third argument and stored in register %ebx. --- 6051,6057 ---- added. This includes new intrinsic and built-in support. It is enabled through option -mmwaitx. The instructions monitorx and mwaitx implement the same functionality as the old monitor and ! mwait instructions. In addition, mwaitx adds a configurable timer. The timer value is received as third argument and stored in register %ebx. *************** Target Specific Changes *** 6095,6108 **** provided this notice is preserved. These pages are [49]maintained by the GCC team. Last modified ! 2022-03-11[50]. References 1. http://gcc.gnu.org/gcc-5/changes.html#libstdcxx 2. https://gcc.gnu.org/onlinedocs/gcc/Spec-Files.html 3. https://savannah.nongnu.org/bugs/?44574 ! 4. https://gcc.gnu.org/wiki/Intel MPX support in the GCC compiler 5. https://www.openmp.org/wp-content/uploads/OpenMP4.0.0.pdf 6. https://www.openmp.org/wp-content/uploads/OpenMP4.0.0.Examples.pdf 7. https://gcc.gnu.org/wiki/OpenACC --- 6133,6146 ---- provided this notice is preserved. These pages are [49]maintained by the GCC team. Last modified ! 2023-02-20. References 1. http://gcc.gnu.org/gcc-5/changes.html#libstdcxx 2. https://gcc.gnu.org/onlinedocs/gcc/Spec-Files.html 3. https://savannah.nongnu.org/bugs/?44574 ! 4. https://gcc.gnu.org/wiki/Intel%20MPX%20support%20in%20the%20GCC%20compiler 5. https://www.openmp.org/wp-content/uploads/OpenMP4.0.0.pdf 6. https://www.openmp.org/wp-content/uploads/OpenMP4.0.0.Examples.pdf 7. https://gcc.gnu.org/wiki/OpenACC *************** References *** 6113,6124 **** 12. http://gcc.gnu.org/projects/cxx1y.html 13. http://gcc.gnu.org/projects/cxx1y.html 14. http://gcc.gnu.org/projects/cxx1y.html ! 15. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3639.html 16. http://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html 17. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/libstdc++/manual/manual/status.html#status.iso.2011 18. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/libstdc++/manual/manual/status.html#status.iso.2014 19. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/libstdc++/manual/manual/status.html#status.iso.2014 ! 20. https://sourceware.org/gdb/current/onlinedocs/gdb/Xmethods-In-Python.html 21. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gfortran/Error-and-Warning-Options.html 22. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gcc/Language-Independent-Options.html 23. https://gcc.gnu.org/install/configure.html --- 6151,6162 ---- 12. http://gcc.gnu.org/projects/cxx1y.html 13. http://gcc.gnu.org/projects/cxx1y.html 14. http://gcc.gnu.org/projects/cxx1y.html ! 15. https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3639.html 16. http://gcc.gnu.org/onlinedocs/libstdc++/manual/using_dual_abi.html 17. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/libstdc++/manual/manual/status.html#status.iso.2011 18. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/libstdc++/manual/manual/status.html#status.iso.2014 19. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/libstdc++/manual/manual/status.html#status.iso.2014 ! 20. https://sourceware.org/gdb/current/onlinedocs/gdb#Xmethods-In-Python 21. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gfortran/Error-and-Warning-Options.html 22. https://gcc.gnu.org/onlinedocs/gcc-5.1.0/gcc/Language-Independent-Options.html 23. https://gcc.gnu.org/install/configure.html *************** References *** 6148,6156 **** 47. https://gcc.gnu.org/lists.html 48. https://www.fsf.org/ 49. https://gcc.gnu.org/about.html - 50. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.9/index.html GCC 4.9 Release Series (This release series is no longer supported.) --- 6186,6194 ---- 47. https://gcc.gnu.org/lists.html 48. https://www.fsf.org/ 49. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.9/index.html + GCC 4.9 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 6213,6219 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2021-07-28[24]. References --- 6251,6257 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 6240,6248 **** 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-4.9/changes.html GCC 4.9 Release Series Changes, New Features, and Fixes --- 6278,6286 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.9/changes.html + GCC 4.9 Release Series Changes, New Features, and Fixes *************** New Languages and Language specific impr *** 6356,6376 **** -fdiagnostics-color=never. Sample diagnostics output: $ g++ -fdiagnostics-color=always -S -Wall test.C ! test.C: In function ‘int foo()’: test.C:1:14: warning: no return statement in function returning non-void [-W return-type] int foo () { } ^ test.C:2:46: error: template instantiation depth exceeds maximum of 900 (use ! -ftemplate-depth= to increase the maximum) instantiating ‘struct X<100>’ template struct X { static const int value = X ::value; }; temp late struct X<1000>; ^ ! test.C:2:46: recursively required from ‘const int X<999>::value’ ! test.C:2:46: required from ‘const int X<1000>::value’ test.C:2:88: required from here ! test.C:2:46: error: incomplete type ‘X<100>’ used in nested name specifier * With the new [7]#pragma GCC ivdep, the user can assert that there are no loop-carried dependencies which would prevent concurrent --- 6394,6414 ---- -fdiagnostics-color=never. Sample diagnostics output: $ g++ -fdiagnostics-color=always -S -Wall test.C ! test.C: In function `int foo()': test.C:1:14: warning: no return statement in function returning non-void [-W return-type] int foo () { } ^ test.C:2:46: error: template instantiation depth exceeds maximum of 900 (use ! -ftemplate-depth= to increase the maximum) instantiating `struct X<100>' template struct X { static const int value = X ::value; }; temp late struct X<1000>; ^ ! test.C:2:46: recursively required from `const int X<999>::value' ! test.C:2:46: required from `const int X<1000>::value' test.C:2:88: required from here ! test.C:2:46: error: incomplete type `X<100>' used in nested name specifier * With the new [7]#pragma GCC ivdep, the user can assert that there are no loop-carried dependencies which would prevent concurrent *************** auto incr = [](auto x) { return x++; }; *** 6475,6482 **** // a functional object that will add two like-type objects auto add = [] (T a, T b) { return a + b; }; ! * G++ supports unconstrained generic functions as specified by §4.1.2 ! and §5.1.1 of [15]N3889: Concepts Lite Specification. Briefly, auto may be used as a type-specifier in a parameter declaration of any function declarator in order to introduce an implicit function template parameter, akin to generic lambdas. --- 6513,6520 ---- // a functional object that will add two like-type objects auto add = [] (T a, T b) { return a + b; }; ! * G++ supports unconstrained generic functions as specified by §4.1.2 ! and §5.1.1 of [15]N3889: Concepts Lite Specification. Briefly, auto may be used as a type-specifier in a parameter declaration of any function declarator in order to introduce an implicit function template parameter, akin to generic lambdas. *************** auto incr(T x) { return x++; } *** 6569,6575 **** be used as argument to ISO_C_BINDING's C_LOC and as actual argument to another NO_ARG_CHECK dummy argument; also the other constraints of TYPE(*) apply. The dummy arguments should be declared as scalar ! or assumed-size variable of type type(*) (recommended) – or of type integer, real, complex or logical. With NO_ARG_CHECK, a pointer to the data without further type or shape information is passed, similar to C's void*. Note that also TS 29113's --- 6607,6613 ---- be used as argument to ISO_C_BINDING's C_LOC and as actual argument to another NO_ARG_CHECK dummy argument; also the other constraints of TYPE(*) apply. The dummy arguments should be declared as scalar ! or assumed-size variable of type type(*) (recommended) - or of type integer, real, complex or logical. With NO_ARG_CHECK, a pointer to the data without further type or shape information is passed, similar to C's void*. Note that also TS 29113's *************** GCC 4.9.4 *** 6852,6858 **** provided this notice is preserved. These pages are [33]maintained by the GCC team. Last modified ! 2021-07-28[34]. References --- 6890,6896 ---- provided this notice is preserved. These pages are [33]maintained by the GCC team. Last modified ! 2023-01-19. References *************** References *** 6864,6876 **** 6. https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/Language-Independent-Options.html#index-fdiagnostics-color-252 7. https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/Loop-Specific-Pragmas.html 8. http://gcc.gnu.org/projects/cxx1y.html ! 9. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3638.html 10. http://gcc.gnu.org/projects/cxx1y.html 11. http://gcc.gnu.org/projects/cxx1y.html 12. http://gcc.gnu.org/projects/cxx1y.html 13. http://gcc.gnu.org/projects/cxx1y.html 14. http://gcc.gnu.org/projects/cxx1y.html ! 15. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3889.pdf 16. https://gcc.gnu.org/onlinedocs/gcc-4.9.2/libstdc++/manual/manual/status.html#status.iso.2011 17. https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2014 18. https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gfortran/Argument-passing-conventions.html --- 6902,6914 ---- 6. https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/Language-Independent-Options.html#index-fdiagnostics-color-252 7. https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gcc/Loop-Specific-Pragmas.html 8. http://gcc.gnu.org/projects/cxx1y.html ! 9. https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2013/n3638.html 10. http://gcc.gnu.org/projects/cxx1y.html 11. http://gcc.gnu.org/projects/cxx1y.html 12. http://gcc.gnu.org/projects/cxx1y.html 13. http://gcc.gnu.org/projects/cxx1y.html 14. http://gcc.gnu.org/projects/cxx1y.html ! 15. https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n3889.pdf 16. https://gcc.gnu.org/onlinedocs/gcc-4.9.2/libstdc++/manual/manual/status.html#status.iso.2011 17. https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.2014 18. https://gcc.gnu.org/onlinedocs/gcc-4.9.2/gfortran/Argument-passing-conventions.html *************** References *** 6889,6897 **** 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-4.8/index.html GCC 4.8 Release Series (This release series is no longer supported.) --- 6927,6935 ---- 31. https://gcc.gnu.org/lists.html 32. https://www.fsf.org/ 33. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.8/index.html + GCC 4.8 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 6957,6963 **** provided this notice is preserved. These pages are [25]maintained by the GCC team. Last modified ! 2021-07-28[26]. References --- 6995,7001 ---- provided this notice is preserved. These pages are [25]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 6986,6994 **** 23. https://gcc.gnu.org/lists.html 24. https://www.fsf.org/ 25. https://gcc.gnu.org/about.html - 26. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.8/changes.html GCC 4.8 Release Series Changes, New Features, and Fixes --- 7024,7032 ---- 23. https://gcc.gnu.org/lists.html 24. https://www.fsf.org/ 25. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.8/changes.html + GCC 4.8 Release Series Changes, New Features, and Fixes *************** New Languages and Language specific impr *** 7117,7124 **** diagnostics. Combined with the caret information, an example diagnostic showing these two features is: ! t.c:1:94: error: invalid operands to binary < (have ‘struct mystruct’ and ‘float ! ’) #define MYMAX(A,B) __extension__ ({ __typeof__(A) __a = (A); __typeof__(B) _ _b = (B); __a < __b ? __b : __a; }) --- 7155,7162 ---- diagnostics. Combined with the caret information, an example diagnostic showing these two features is: ! t.c:1:94: error: invalid operands to binary < (have `struct mystruct' and `float ! ') #define MYMAX(A,B) __extension__ ({ __typeof__(A) __a = (A); __typeof__(B) _ _b = (B); __a < __b ? __b : __a; }) *************** int i = A().f(); // error, f() requires *** 7242,7249 **** older versions except as noted below. + ABI: Some internal names (used in the assembler/object file) have changed for symbols declared in the specification part of ! a module. If an affected module – or a file using it via use ! association – is recompiled, the module and all files which directly use such symbols have to be recompiled as well. This change only affects the following kind of module symbols: o Procedure pointers. Note: C-interoperable function --- 7280,7287 ---- older versions except as noted below. + ABI: Some internal names (used in the assembler/object file) have changed for symbols declared in the specification part of ! a module. If an affected module - or a file using it via use ! association - is recompiled, the module and all files which directly use such symbols have to be recompiled as well. This change only affects the following kind of module symbols: o Procedure pointers. Note: C-interoperable function *************** int i = A().f(); // error, f() requires *** 7270,7276 **** * The [21]-Wcompare-reals command-line option has been added. When this is set, warnings are issued when comparing REAL or COMPLEX types for equality and inequality; consider replacing a == b by ! abs(a−b) < eps with a suitable eps. -Wcompare-reals is enabled by -Wextra. * The [22]-Wtarget-lifetime command-line option has been added (enabled with -Wall), which warns if the pointer in a pointer --- 7308,7314 ---- * The [21]-Wcompare-reals command-line option has been added. When this is set, warnings are issued when comparing REAL or COMPLEX types for equality and inequality; consider replacing a == b by ! abs(a-b) < eps with a suitable eps. -Wcompare-reals is enabled by -Wextra. * The [22]-Wtarget-lifetime command-line option has been added (enabled with -Wall), which warns if the pointer in a pointer *************** int i = A().f(); // error, f() requires *** 7282,7288 **** 4.0e0). (For Fortran source code, consider replacing the "q" in floating-point literals by a kind parameter (e.g. 4.0e0_qp with a ! suitable qp). Note that – in Fortran source code – replacing "q" by a simple "e" is not equivalent.) * The GFORTRAN_TMPDIR environment variable for specifying a non-default directory for files opened with STATUS="SCRATCH", is --- 7320,7326 ---- 4.0e0). (For Fortran source code, consider replacing the "q" in floating-point literals by a kind parameter (e.g. 4.0e0_qp with a ! suitable qp). Note that - in Fortran source code - replacing "q" by a simple "e" is not equivalent.) * The GFORTRAN_TMPDIR environment variable for specifying a non-default directory for files opened with STATUS="SCRATCH", is *************** New Targets and Target Specific Improvem *** 7377,7384 **** } The inline assembler in this example will generate code like mov r24, 8+7 ! provided c is allocated to R24 and val is allocated to R8…R15. This ! works because the GNU assembler accepts plain register numbers without register prefix. * Static initializers with 3-byte symbols are supported now: extern const __memx char foo; --- 7415,7422 ---- } The inline assembler in this example will generate code like mov r24, 8+7 ! provided c is allocated to R24 and val is allocated to R8...R15. ! This works because the GNU assembler accepts plain register numbers without register prefix. * Static initializers with 3-byte symbols are supported now: extern const __memx char foo; *************** GCC 4.8.5 *** 7712,7718 **** provided this notice is preserved. These pages are [43]maintained by the GCC team. Last modified ! 2021-07-28[44]. References --- 7750,7756 ---- provided this notice is preserved. These pages are [43]maintained by the GCC team. Last modified ! 2022-11-05. References *************** References *** 7727,7735 **** 9. http://gcc.gnu.org/gcc-4.8/cxx0x_status.html 10. http://gcc.gnu.org/gcc-4.8/cxx0x_status.html 11. http://gcc.gnu.org/gcc-4.8/cxx0x_status.html ! 12. http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3276.pdf 13. http://gcc.gnu.org/gcc-4.8/cxx0x_status.html ! 14. http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2012/n3386.html 15. http://gcc.gnu.org/projects/cxx1y.html 16. https://gcc.gnu.org/onlinedocs/gcc-4.8.4/libstdc++/manual/manual/status.html#status.iso.2011 17. https://gcc.gnu.org/onlinedocs/gfortran/BACKTRACE.html --- 7765,7773 ---- 9. http://gcc.gnu.org/gcc-4.8/cxx0x_status.html 10. http://gcc.gnu.org/gcc-4.8/cxx0x_status.html 11. http://gcc.gnu.org/gcc-4.8/cxx0x_status.html ! 12. https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3276.pdf 13. http://gcc.gnu.org/gcc-4.8/cxx0x_status.html ! 14. https://www.open-std.org/JTC1/SC22/WG21/docs/papers/2012/n3386.html 15. http://gcc.gnu.org/projects/cxx1y.html 16. https://gcc.gnu.org/onlinedocs/gcc-4.8.4/libstdc++/manual/manual/status.html#status.iso.2011 17. https://gcc.gnu.org/onlinedocs/gfortran/BACKTRACE.html *************** References *** 7742,7748 **** 24. https://gcc.gnu.org/wiki/Fortran2003Status 25. https://gcc.gnu.org/wiki/TS29113Status 26. https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=libgfortran/libgfortran.h ! 27. http://chasm-interop.sourceforge.net/ 28. https://gcc.gnu.org/wiki/avr-gcc#Fixed-Point_Support 29. https://gcc.gnu.org/onlinedocs/gcc/Fixed-Point.html 30. https://gcc.gnu.org/onlinedocs/gcc/x86-Built-in-Functions.html --- 7780,7786 ---- 24. https://gcc.gnu.org/wiki/Fortran2003Status 25. https://gcc.gnu.org/wiki/TS29113Status 26. https://gcc.gnu.org/git/?p=gcc.git;a=blob;f=libgfortran/libgfortran.h ! 27. https://chasm-interop.sourceforge.net/ 28. https://gcc.gnu.org/wiki/avr-gcc#Fixed-Point_Support 29. https://gcc.gnu.org/onlinedocs/gcc/Fixed-Point.html 30. https://gcc.gnu.org/onlinedocs/gcc/x86-Built-in-Functions.html *************** References *** 7759,7767 **** 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-4.7/index.html GCC 4.7 Release Series (This release series is no longer supported.) --- 7797,7805 ---- 41. https://gcc.gnu.org/lists.html 42. https://www.fsf.org/ 43. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.7/index.html + GCC 4.7 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 7824,7830 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2021-07-28[24]. References --- 7862,7868 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 7851,7859 **** 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-4.7/changes.html GCC 4.7 Release Series Changes, New Features, and Fixes --- 7889,7897 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.7/changes.html + GCC 4.7 Release Series Changes, New Features, and Fixes *************** long double pi = 180.0_degrees; *** 8184,8190 **** template using Ptr = T*; Ptr ip; // decltype(ip) is int* ! * Thanks to Ville Voutilainen and Pedro Lamarão, G++ now implements [12]C++11 delegating constructors. struct A { --- 8222,8228 ---- template using Ptr = T*; Ptr ip; // decltype(ip) is int* ! * Thanks to Ville Voutilainen and Pedro Lamarão, G++ now implements [12]C++11 delegating constructors. struct A { *************** New Targets and Target Specific Improvem *** 8378,8384 **** * GCC now supports the XMEGA architecture. This requires GNU binutils 2.22 or later. ! * Support for the [35]named address spaces __flash, __flash1, …, __flash5 and __memx has been added. These address spaces locate read-only data in flash memory and allow reading from flash memory by means of ordinary C code, i.e. without the need of (inline) --- 8416,8422 ---- * GCC now supports the XMEGA architecture. This requires GNU binutils 2.22 or later. ! * Support for the [35]named address spaces __flash, __flash1, ..., __flash5 and __memx has been added. These address spaces locate read-only data in flash memory and allow reading from flash memory by means of ordinary C code, i.e. without the need of (inline) *************** void set_portb (uint8_t value) *** 8422,8428 **** suitable to be used as operand in an I/O command. The address must be a constant integer known at compile time. * The inline assembler constraint "R" to represent integers in the ! range −6 … 5 has been removed without replacement. * Many optimizations to: + 64-bit integer arithmetic + Widening multiplication --- 8460,8466 ---- suitable to be used as operand in an I/O command. The address must be a constant integer known at compile time. * The inline assembler constraint "R" to represent integers in the ! range -6 ... 5 has been removed without replacement. * Many optimizations to: + 64-bit integer arithmetic + Widening multiplication *************** void set_portb (uint8_t value) *** 8434,8440 **** + If-else decision trees generated by switch instructions + Merging of data located in flash memory + New libgcc variants for devices with 8-bit wide stack pointer ! + … * Better documentation: + Handling of EIND and indirect jumps on devices with more than 128 KiB of program memory. --- 8472,8478 ---- + If-else decision trees generated by switch instructions + Merging of data located in flash memory + New libgcc variants for devices with 8-bit wide stack pointer ! + ... * Better documentation: + Handling of EIND and indirect jumps on devices with more than 128 KiB of program memory. *************** GCC 4.7.4 *** 8645,8651 **** provided this notice is preserved. These pages are [54]maintained by the GCC team. Last modified ! 2022-02-10[55]. References --- 8683,8689 ---- provided this notice is preserved. These pages are [54]maintained by the GCC team. Last modified ! 2023-03-29. References *************** References *** 8673,8679 **** 22. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gfortran/Code-Gen-Options.html#index-g_t_0040code_007bfaggressive-function-elimination_007d-270 23. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gfortran/Error-and-Warning-Options.html#index-g_t_0040code_007bWreal-q-constant_007d-149 24. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gfortran/SELECTED_005fREAL_005fKIND.html ! 25. https://docs.microsoft.com/en-us/windows/win32/wer/collecting-user-mode-dumps 26. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gfortran/Debugging-Options.html#index-g_t_0040code_007bfno-backtrace_007d-183 27. https://gcc.gnu.org/wiki/Fortran2003Status 28. https://gcc.gnu.org/wiki/OOP --- 8711,8717 ---- 22. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gfortran/Code-Gen-Options.html#index-g_t_0040code_007bfaggressive-function-elimination_007d-270 23. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gfortran/Error-and-Warning-Options.html#index-g_t_0040code_007bWreal-q-constant_007d-149 24. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gfortran/SELECTED_005fREAL_005fKIND.html ! 25. https://learn.microsoft.com/en-us/windows/win32/wer/collecting-user-mode-dumps 26. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gfortran/Debugging-Options.html#index-g_t_0040code_007bfno-backtrace_007d-183 27. https://gcc.gnu.org/wiki/Fortran2003Status 28. https://gcc.gnu.org/wiki/OOP *************** References *** 8686,8697 **** 35. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/Named-Address-Spaces.html 36. http://www.nongnu.org/avr-libc/ 37. https://gcc.gnu.org/PR54461 ! 38. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/AVR-Built_002din-Functions.html 39. https://sites.google.com/site/x32abi/ ! 40. https://www.dwarfstd.org/ShowIssue.php?issue=100909.1 ! 41. https://www.dwarfstd.org/ShowIssue.php?issue=100909.2 ! 42. https://www.dwarfstd.org/ShowIssue.php?issue=140425.1 ! 43. https://www.dwarfstd.org/ShowIssue.php?issue=110722.1 44. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.7.1 45. https://go.dev/doc/go1 46. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.7.2 --- 8724,8735 ---- 35. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/Named-Address-Spaces.html 36. http://www.nongnu.org/avr-libc/ 37. https://gcc.gnu.org/PR54461 ! 38. https://gcc.gnu.org/onlinedocs/gcc-4.7.1/gcc/AVR-Built%5f002din-Functions.html 39. https://sites.google.com/site/x32abi/ ! 40. https://dwarfstd.org/issues/100909.1.html ! 41. https://dwarfstd.org/issues/100909.2.html ! 42. https://dwarfstd.org/issues/140425.1.html ! 43. https://dwarfstd.org/issues/110722.1.html 44. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.7.1 45. https://go.dev/doc/go1 46. https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&resolution=FIXED&target_milestone=4.7.2 *************** References *** 8703,8711 **** 52. https://gcc.gnu.org/lists.html 53. https://www.fsf.org/ 54. https://gcc.gnu.org/about.html - 55. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.6/index.html GCC 4.6 Release Series (This release series is no longer supported.) --- 8741,8749 ---- 52. https://gcc.gnu.org/lists.html 53. https://www.fsf.org/ 54. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.6/index.html + GCC 4.6 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 8768,8774 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2021-07-28[24]. References --- 8806,8812 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 8795,8803 **** 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-4.6/changes.html GCC 4.6 Release Series Changes, New Features, and Fixes --- 8833,8841 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.6/changes.html + GCC 4.6 Release Series Changes, New Features, and Fixes *************** New Languages and Language specific impr *** 9137,9143 **** * [12]Improved experimental support for the upcoming ISO C++ standard, C++0x, including using constexpr and nullptr. ! * Performance improvements to the [13]Debug Mode, thanks to François Dumont. * Atomic operations used for reference-counting are annotated so that they can be understood by race detectors such as Helgrind, see --- 9175,9181 ---- * [12]Improved experimental support for the upcoming ISO C++ standard, C++0x, including using constexpr and nullptr. ! * Performance improvements to the [13]Debug Mode, thanks to François Dumont. * Atomic operations used for reference-counting are annotated so that they can be understood by race detectors such as Helgrind, see *************** New Languages and Language specific impr *** 9192,9198 **** allocated (if unallocated) or reallocated (if the shape or type parameter is different). To avoid the small performance penalty, you can use a(:) = ... instead of a = ... for arrays ! and character strings – or disable the feature using -std=f95 or -fno-realloc-lhs. + Deferred type parameter: For scalar allocatable and pointer variables the character length can be deferred. --- 9230,9236 ---- allocated (if unallocated) or reallocated (if the shape or type parameter is different). To avoid the small performance penalty, you can use a(:) = ... instead of a = ... for arrays ! and character strings - or disable the feature using -std=f95 or -fno-realloc-lhs. + Deferred type parameter: For scalar allocatable and pointer variables the character length can be deferred. *************** New Languages and Language specific impr *** 9247,9253 **** be declared in a single PROCEDURE statement; implied-shape arrays are supported for named constants (PARAMETER). The transformational, three argument versions of BESSEL_JN and ! BESSEL_YN were added – the elemental, two-argument version had been added in GCC 4.4; note that the transformational functions use a recurrence algorithm. --- 9285,9291 ---- be declared in a single PROCEDURE statement; implied-shape arrays are supported for named constants (PARAMETER). The transformational, three argument versions of BESSEL_JN and ! BESSEL_YN were added - the elemental, two-argument version had been added in GCC 4.4; note that the transformational functions use a recurrence algorithm. *************** GCC 4.6.4 *** 9692,9698 **** provided this notice is preserved. These pages are [28]maintained by the GCC team. Last modified ! 2021-12-05[29]. References --- 9730,9736 ---- provided this notice is preserved. These pages are [28]maintained by the GCC team. Last modified ! 2023-01-18. References *************** References *** 9706,9712 **** 8. https://gcc.gnu.org/PR43145 9. https://gcc.gnu.org/PR43680 10. https://gcc.gnu.org/PR33558 ! 11. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#253 12. https://gcc.gnu.org/onlinedocs/gcc-4.6.4/libstdc++/manual/manual/status.html#status.iso.200x 13. https://gcc.gnu.org/onlinedocs/libstdc++/manual/debug_mode.html 14. https://gcc.gnu.org/onlinedocs/libstdc++/manual/debug.html#debug.races --- 9744,9750 ---- 8. https://gcc.gnu.org/PR43145 9. https://gcc.gnu.org/PR43680 10. https://gcc.gnu.org/PR33558 ! 11. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_active.html#253 12. https://gcc.gnu.org/onlinedocs/gcc-4.6.4/libstdc++/manual/manual/status.html#status.iso.200x 13. https://gcc.gnu.org/onlinedocs/libstdc++/manual/debug_mode.html 14. https://gcc.gnu.org/onlinedocs/libstdc++/manual/debug.html#debug.races *************** References *** 9724,9732 **** 26. https://gcc.gnu.org/lists.html 27. https://www.fsf.org/ 28. https://gcc.gnu.org/about.html - 29. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.5/index.html GCC 4.5 Release Series (This release series is no longer supported.) --- 9762,9770 ---- 26. https://gcc.gnu.org/lists.html 27. https://www.fsf.org/ 28. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.5/index.html + GCC 4.5 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 9789,9795 **** provided this notice is preserved. These pages are [18]maintained by the GCC team. Last modified ! 2021-07-28[19]. References --- 9827,9833 ---- provided this notice is preserved. These pages are [18]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 9811,9819 **** 16. https://gcc.gnu.org/lists.html 17. https://www.fsf.org/ 18. https://gcc.gnu.org/about.html - 19. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.5/changes.html GCC 4.5 Release Series Changes, New Features, and Fixes --- 9849,9857 ---- 16. https://gcc.gnu.org/lists.html 17. https://www.fsf.org/ 18. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.5/changes.html + GCC 4.5 Release Series Changes, New Features, and Fixes *************** New Languages and Language specific impr *** 10050,10056 **** defined ([12]DR 757). * Labels may now have attributes, as has been permitted for a while in C. This is only permitted when the label definition and the ! attribute specifier is followed by a semicolon—i.e., the label applies to an empty statement. The only useful attribute for a label is unused. * G++ now implements [13]DR 176. Previously G++ did not support using --- 10088,10094 ---- defined ([12]DR 757). * Labels may now have attributes, as has been permitted for a while in C. This is only permitted when the label definition and the ! attribute specifier is followed by a semicolon--i.e., the label applies to an empty statement. The only useful attribute for a label is unused. * G++ now implements [13]DR 176. Previously G++ did not support using *************** vector-size: improvement = 3: call stack *** 10132,10138 **** Fortran ! * The COMMON default padding has been changed – instead of adding the padding before a variable it is now added afterwards, which increases the compatibility with other vendors and helps to obtain the correct output in some cases. Cf. also the -falign-commons --- 10170,10176 ---- Fortran ! * The COMMON default padding has been changed - instead of adding the padding before a variable it is now added afterwards, which increases the compatibility with other vendors and helps to obtain the correct output in some cases. Cf. also the -falign-commons *************** GCC 4.5.4 *** 10461,10467 **** provided this notice is preserved. These pages are [32]maintained by the GCC team. Last modified ! 2022-02-02[33]. References --- 10499,10505 ---- provided this notice is preserved. These pages are [32]maintained by the GCC team. Last modified ! 2023-01-15. References *************** References *** 10476,10483 **** 9. https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#index-fwhole-program-800 10. https://gcc.gnu.org/onlinedocs/gcc/Restricted-Pointers.html 11. http://gcc.gnu.org/gcc-4.5/cxx0x_status.html ! 12. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#757 ! 13. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#176 14. https://gcc.gnu.org/onlinedocs/libstdc++/manual/profile_mode.html 15. https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.tr24733 16. https://sourceware.org/gdb/wiki/STLSupport --- 10514,10521 ---- 9. https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#index-fwhole-program-800 10. https://gcc.gnu.org/onlinedocs/gcc/Restricted-Pointers.html 11. http://gcc.gnu.org/gcc-4.5/cxx0x_status.html ! 12. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#757 ! 13. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#176 14. https://gcc.gnu.org/onlinedocs/libstdc++/manual/profile_mode.html 15. https://gcc.gnu.org/onlinedocs/libstdc++/manual/status.html#status.iso.tr24733 16. https://sourceware.org/gdb/wiki/STLSupport *************** References *** 10497,10505 **** 30. https://gcc.gnu.org/lists.html 31. https://www.fsf.org/ 32. https://gcc.gnu.org/about.html - 33. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.4/index.html GCC 4.4 Release Series This release series is no longer maintained. --- 10535,10543 ---- 30. https://gcc.gnu.org/lists.html 31. https://www.fsf.org/ 32. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.4/index.html + GCC 4.4 Release Series This release series is no longer maintained. *************** References and Acknowledgements *** 10571,10577 **** provided this notice is preserved. These pages are [21]maintained by the GCC team. Last modified ! 2021-07-28[22]. References --- 10609,10615 ---- provided this notice is preserved. These pages are [21]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 10596,10604 **** 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-4.4/changes.html GCC 4.4 Release Series Changes, New Features, and Fixes --- 10634,10642 ---- 19. https://gcc.gnu.org/lists.html 20. https://www.fsf.org/ 21. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.4/changes.html + GCC 4.4 Release Series Changes, New Features, and Fixes *************** GCC 4.4.7 *** 11201,11207 **** provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2021-07-28[24]. References --- 11239,11245 ---- provided this notice is preserved. These pages are [23]maintained by the GCC team. Last modified ! 2022-11-01. References *************** References *** 11209,11215 **** 2. http://gcc.gnu.org/gcc-4.3/changes.html#obsoleted 3. http://gcc.gnu.org/gcc-4.4/porting_to.html 4. https://gcc.gnu.org/wiki/Graphite ! 5. http://www.open-std.org/jtc1/sc22/wg14/www/docs/n1040.pdf 6. http://gcc.gnu.org/gcc-4.4/cxx0x_status.html 7. https://gcc.gnu.org/onlinedocs/gfortran/Preprocessing-Options.html 8. https://gcc.gnu.org/onlinedocs/gfortran/Error-and-Warning-Options.html#index-g_t_0040code_007bWarray-temporaries_007d-125 --- 11247,11253 ---- 2. http://gcc.gnu.org/gcc-4.3/changes.html#obsoleted 3. http://gcc.gnu.org/gcc-4.4/porting_to.html 4. https://gcc.gnu.org/wiki/Graphite ! 5. https://www.open-std.org/jtc1/sc22/wg14/www/docs/n1040.pdf 6. http://gcc.gnu.org/gcc-4.4/cxx0x_status.html 7. https://gcc.gnu.org/onlinedocs/gfortran/Preprocessing-Options.html 8. https://gcc.gnu.org/onlinedocs/gfortran/Error-and-Warning-Options.html#index-g_t_0040code_007bWarray-temporaries_007d-125 *************** References *** 11228,11236 **** 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-4.3/index.html GCC 4.3 Release Series (This release series is no longer supported.) --- 11266,11274 ---- 21. https://gcc.gnu.org/lists.html 22. https://www.fsf.org/ 23. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.3/index.html + GCC 4.3 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 11299,11305 **** provided this notice is preserved. These pages are [20]maintained by the GCC team. Last modified ! 2021-07-28[21]. References --- 11337,11343 ---- provided this notice is preserved. These pages are [20]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 11323,11331 **** 18. https://gcc.gnu.org/lists.html 19. https://www.fsf.org/ 20. https://gcc.gnu.org/about.html - 21. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.3/changes.html GCC 4.3 Release Series Changes, New Features, and Fixes --- 11361,11369 ---- 18. https://gcc.gnu.org/lists.html 19. https://www.fsf.org/ 20. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.3/changes.html + GCC 4.3 Release Series Changes, New Features, and Fixes *************** GCC 4.3.6 *** 12104,12110 **** provided this notice is preserved. These pages are [30]maintained by the GCC team. Last modified ! 2021-07-28[31]. References --- 12142,12148 ---- provided this notice is preserved. These pages are [30]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 12138,12146 **** 28. https://gcc.gnu.org/lists.html 29. https://www.fsf.org/ 30. https://gcc.gnu.org/about.html - 31. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.2/index.html GCC 4.2 Release Series (This release series is no longer supported.) --- 12176,12184 ---- 28. https://gcc.gnu.org/lists.html 29. https://www.fsf.org/ 30. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.2/index.html + GCC 4.2 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 12203,12209 **** provided this notice is preserved. These pages are [18]maintained by the GCC team. Last modified ! 2021-07-28[19]. References --- 12241,12247 ---- provided this notice is preserved. These pages are [18]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 12225,12233 **** 16. https://gcc.gnu.org/lists.html 17. https://www.fsf.org/ 18. https://gcc.gnu.org/about.html - 19. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.2/changes.html GCC 4.2 Release Series Changes, New Features, and Fixes --- 12263,12271 ---- 16. https://gcc.gnu.org/lists.html 17. https://www.fsf.org/ 18. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.2/changes.html + GCC 4.2 Release Series Changes, New Features, and Fixes *************** Other significant improvements *** 12531,12537 **** provided this notice is preserved. These pages are [11]maintained by the GCC team. Last modified ! 2021-07-28[12]. References --- 12569,12575 ---- provided this notice is preserved. These pages are [11]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 12546,12554 **** 9. https://gcc.gnu.org/lists.html 10. https://www.fsf.org/ 11. https://gcc.gnu.org/about.html - 12. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.1/index.html GCC 4.1 Release Series (This release series is no longer supported.) --- 12584,12592 ---- 9. https://gcc.gnu.org/lists.html 10. https://www.fsf.org/ 11. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.1/index.html + GCC 4.1 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 12605,12611 **** provided this notice is preserved. These pages are [16]maintained by the GCC team. Last modified ! 2021-07-28[17]. References --- 12643,12649 ---- provided this notice is preserved. These pages are [16]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 12625,12633 **** 14. https://gcc.gnu.org/lists.html 15. https://www.fsf.org/ 16. https://gcc.gnu.org/about.html - 17. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.1/changes.html GCC 4.1 Release Series Changes, New Features, and Fixes --- 12663,12671 ---- 14. https://gcc.gnu.org/lists.html 15. https://www.fsf.org/ 16. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.1/changes.html + GCC 4.1 Release Series Changes, New Features, and Fixes *************** GCC 4.1.2 *** 13164,13170 **** provided this notice is preserved. These pages are [11]maintained by the GCC team. Last modified ! 2021-10-18[12]. References --- 13202,13208 ---- provided this notice is preserved. These pages are [11]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 13179,13187 **** 9. https://gcc.gnu.org/lists.html 10. https://www.fsf.org/ 11. https://gcc.gnu.org/about.html - 12. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.0/index.html GCC 4.0 Release Series (This release series is no longer supported.) --- 13217,13225 ---- 9. https://gcc.gnu.org/lists.html 10. https://www.fsf.org/ 11. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.0/index.html + GCC 4.0 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 13244,13250 **** provided this notice is preserved. These pages are [18]maintained by the GCC team. Last modified ! 2021-07-28[19]. References --- 13282,13288 ---- provided this notice is preserved. These pages are [18]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 13266,13274 **** 16. https://gcc.gnu.org/lists.html 17. https://www.fsf.org/ 18. https://gcc.gnu.org/about.html - 19. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-4.0/changes.html GCC 4.0 Release Series Changes, New Features, and Fixes --- 13304,13312 ---- 16. https://gcc.gnu.org/lists.html 17. https://www.fsf.org/ 18. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-4.0/changes.html + GCC 4.0 Release Series Changes, New Features, and Fixes *************** GCC 4.0.4 *** 13770,13776 **** provided this notice is preserved. These pages are [21]maintained by the GCC team. Last modified ! 2021-07-28[22]. References --- 13808,13814 ---- provided this notice is preserved. These pages are [21]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 13795,13803 **** 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-3.4/index.html GCC 3.4 Release Series (This release series is no longer supported.) --- 13833,13841 ---- 19. https://gcc.gnu.org/lists.html 20. https://www.fsf.org/ 21. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.4/index.html + GCC 3.4 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 13871,13877 **** provided this notice is preserved. These pages are [22]maintained by the GCC team. Last modified ! 2021-07-28[23]. References --- 13909,13915 ---- provided this notice is preserved. These pages are [22]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 13897,13905 **** 20. https://gcc.gnu.org/lists.html 21. https://www.fsf.org/ 22. https://gcc.gnu.org/about.html - 23. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-3.4/changes.html GCC 3.4 Release Series Changes, New Features, and Fixes --- 13935,13943 ---- 20. https://gcc.gnu.org/lists.html 21. https://www.fsf.org/ 22. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.4/changes.html + GCC 3.4 Release Series Changes, New Features, and Fixes *************** GCC 3.4.6 *** 15659,15665 **** provided this notice is preserved. These pages are [416]maintained by the GCC team. Last modified ! 2021-07-28[417]. References --- 15697,15703 ---- provided this notice is preserved. These pages are [416]maintained by the GCC team. Last modified ! 2023-01-27. References *************** References *** 15672,15685 **** 7. https://www.boost.org/ 8. https://gcc.gnu.org/PR11953 9. https://gcc.gnu.org/PR8361 ! 10. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Other-Builtins.html#Other Builtins ! 11. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_closed.html#209 12. http://gcc.gnu.org/bugs/#cxx_rvalbind 13. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Objective-C-Dialect-Options.html 14. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Objective-C-Dialect-Options.html 15. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Objective-C-Dialect-Options.html 16. http://www.gnu.org/software/classpath/ ! 17. http://www.eclipse.org/ 18. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/g77/News.html 19. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Alpha-Built-in-Functions.html 20. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gccint/Processor-pipeline-description.html --- 15710,15723 ---- 7. https://www.boost.org/ 8. https://gcc.gnu.org/PR11953 9. https://gcc.gnu.org/PR8361 ! 10. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Other-Builtins.html#Other%20Builtins ! 11. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_closed.html#209 12. http://gcc.gnu.org/bugs/#cxx_rvalbind 13. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Objective-C-Dialect-Options.html 14. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Objective-C-Dialect-Options.html 15. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Objective-C-Dialect-Options.html 16. http://www.gnu.org/software/classpath/ ! 17. https://www.eclipse.org/ 18. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/g77/News.html 19. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gcc/Alpha-Built-in-Functions.html 20. https://gcc.gnu.org/onlinedocs/gcc-3.4.3/gccint/Processor-pipeline-description.html *************** References *** 15688,15694 **** 23. http://gcc.gnu.org/gcc-3.4/mips-abi.html 24. http://gcc.gnu.org/gcc-3.4/powerpc-abi.html 25. http://gcc.gnu.org/gcc-3.4/sparc-abi.html ! 26. https://gcc.gnu.org/bugzilla/buglist.cgi?short_desc_type=notregexp&short_desc=\[3\.4.*[Rr]egression&target_milestone=3.4.0&bug_status=RESOLVED&resolution=FIXED 27. https://gcc.gnu.org/PR10129 28. https://gcc.gnu.org/PR14576 29. https://gcc.gnu.org/PR14760 --- 15726,15732 ---- 23. http://gcc.gnu.org/gcc-3.4/mips-abi.html 24. http://gcc.gnu.org/gcc-3.4/powerpc-abi.html 25. http://gcc.gnu.org/gcc-3.4/sparc-abi.html ! 26. https://gcc.gnu.org/bugzilla/buglist.cgi?short_desc_type=notregexp&short_desc=%5C%5B3%5C.4.*%5BRr%5Degression&target_milestone=3.4.0&bug_status=RESOLVED&resolution=FIXED 27. https://gcc.gnu.org/PR10129 28. https://gcc.gnu.org/PR14576 29. https://gcc.gnu.org/PR14760 *************** References *** 16079,16087 **** 414. https://gcc.gnu.org/lists.html 415. https://www.fsf.org/ 416. https://gcc.gnu.org/about.html - 417. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-3.3/index.html GCC 3.3 Release Series (This release series is no longer supported.) --- 16117,16125 ---- 414. https://gcc.gnu.org/lists.html 415. https://www.fsf.org/ 416. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.3/index.html + GCC 3.3 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 16155,16161 **** provided this notice is preserved. These pages are [21]maintained by the GCC team. Last modified ! 2021-07-28[22]. References --- 16193,16199 ---- provided this notice is preserved. These pages are [21]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 16180,16188 **** 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-3.3/changes.html GCC 3.3 Release Series Changes, New Features, and Fixes --- 16218,16226 ---- 19. https://gcc.gnu.org/lists.html 20. https://www.fsf.org/ 21. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.3/changes.html + GCC 3.3 Release Series Changes, New Features, and Fixes *************** GCC 3.3.6 *** 17530,17536 **** provided this notice is preserved. These pages are [556]maintained by the GCC team. Last modified ! 2021-07-28[557]. References --- 17568,17574 ---- provided this notice is preserved. These pages are [556]maintained by the GCC team. Last modified ! 2023-01-19. References *************** References *** 17647,17653 **** 111. https://gcc.gnu.org/PR9439 112. https://gcc.gnu.org/PR9474 113. https://gcc.gnu.org/PR9548 ! 114. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#231 115. https://gcc.gnu.org/PR9555 116. https://gcc.gnu.org/PR9561 117. https://gcc.gnu.org/PR9563 --- 17685,17691 ---- 111. https://gcc.gnu.org/PR9439 112. https://gcc.gnu.org/PR9474 113. https://gcc.gnu.org/PR9548 ! 114. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#231 115. https://gcc.gnu.org/PR9555 116. https://gcc.gnu.org/PR9561 117. https://gcc.gnu.org/PR9563 *************** References *** 17991,17997 **** 455. https://gcc.gnu.org/PR9546 456. https://gcc.gnu.org/PR10081 457. https://gcc.gnu.org/PR10093 ! 458. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#61 459. https://gcc.gnu.org/PR10095 460. https://gcc.gnu.org/PR11554 461. https://gcc.gnu.org/PR12297 --- 18029,18035 ---- 455. https://gcc.gnu.org/PR9546 456. https://gcc.gnu.org/PR10081 457. https://gcc.gnu.org/PR10093 ! 458. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#61 459. https://gcc.gnu.org/PR10095 460. https://gcc.gnu.org/PR11554 461. https://gcc.gnu.org/PR12297 *************** References *** 17999,18016 **** 463. https://gcc.gnu.org/PR12438 464. https://gcc.gnu.org/PR12540 465. https://gcc.gnu.org/PR12594 ! 466. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#60 ! 467. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#63 468. https://gcc.gnu.org/PR12657 ! 469. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#292 470. https://gcc.gnu.org/PR12696 471. https://gcc.gnu.org/PR12815 472. https://gcc.gnu.org/PR12862 473. https://gcc.gnu.org/PR12926 474. https://gcc.gnu.org/PR12967 ! 475. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html 476. https://gcc.gnu.org/PR12971 ! 477. http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#328 478. https://gcc.gnu.org/PR13007 479. https://gcc.gnu.org/PR13009 480. https://gcc.gnu.org/PR13057 --- 18037,18054 ---- 463. https://gcc.gnu.org/PR12438 464. https://gcc.gnu.org/PR12540 465. https://gcc.gnu.org/PR12594 ! 466. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#60 ! 467. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#63 468. https://gcc.gnu.org/PR12657 ! 469. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#292 470. https://gcc.gnu.org/PR12696 471. https://gcc.gnu.org/PR12815 472. https://gcc.gnu.org/PR12862 473. https://gcc.gnu.org/PR12926 474. https://gcc.gnu.org/PR12967 ! 475. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html 476. https://gcc.gnu.org/PR12971 ! 477. https://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#328 478. https://gcc.gnu.org/PR13007 479. https://gcc.gnu.org/PR13009 480. https://gcc.gnu.org/PR13057 *************** References *** 18090,18098 **** 554. https://gcc.gnu.org/lists.html 555. https://www.fsf.org/ 556. https://gcc.gnu.org/about.html - 557. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-3.2/index.html GCC 3.2 Release Series (This release series is no longer supported.) --- 18128,18136 ---- 554. https://gcc.gnu.org/lists.html 555. https://www.fsf.org/ 556. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.2/index.html + GCC 3.2 Release Series (This release series is no longer supported.) *************** References and Acknowledgements *** 18160,18166 **** provided this notice is preserved. These pages are [17]maintained by the GCC team. Last modified ! 2021-07-28[18]. References --- 18198,18204 ---- provided this notice is preserved. These pages are [17]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 18181,18189 **** 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-3.2/changes.html GCC 3.2 Release Series Changes, New Features, and Fixes --- 18219,18227 ---- 15. https://gcc.gnu.org/lists.html 16. https://www.fsf.org/ 17. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.2/changes.html + GCC 3.2 Release Series Changes, New Features, and Fixes *************** GCC 3.2 *** 18783,18789 **** provided this notice is preserved. These pages are [251]maintained by the GCC team. Last modified ! 2021-07-28[252]. References --- 18821,18827 ---- provided this notice is preserved. These pages are [251]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 19038,19046 **** 249. https://gcc.gnu.org/lists.html 250. https://www.fsf.org/ 251. https://gcc.gnu.org/about.html - 252. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-3.1/index.html GCC 3.1 (This release series is no longer supported.) --- 19076,19084 ---- 249. https://gcc.gnu.org/lists.html 250. https://www.fsf.org/ 251. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.1/index.html + GCC 3.1 (This release series is no longer supported.) *************** http://gcc.gnu.org/gcc-3.1/index.html *** 19088,19094 **** provided this notice is preserved. These pages are [14]maintained by the GCC team. Last modified ! 2021-07-28[15]. References --- 19126,19132 ---- provided this notice is preserved. These pages are [14]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 19106,19114 **** 12. https://gcc.gnu.org/lists.html 13. https://www.fsf.org/ 14. https://gcc.gnu.org/about.html - 15. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-3.1/changes.html GCC 3.1 Release Series Changes, New Features, and Fixes --- 19144,19152 ---- 12. https://gcc.gnu.org/lists.html 13. https://www.fsf.org/ 14. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.1/changes.html + GCC 3.1 Release Series Changes, New Features, and Fixes *************** New Targets and Target Specific Improvem *** 19326,19332 **** + For those targets that support it, -mfpmath=sse will cause the compiler to generate SSE/SSE2 instructions for floating point math instead of x87 instructions. Usually, this will lead to ! quicker code — especially on the Pentium 4. Note that only scalar floating point instructions are used and GCC does not exploit SIMD features yet. + Prefetch support has been added to the Pentium III, Pentium 4, --- 19364,19370 ---- + For those targets that support it, -mfpmath=sse will cause the compiler to generate SSE/SSE2 instructions for floating point math instead of x87 instructions. Usually, this will lead to ! quicker code -- especially on the Pentium 4. Note that only scalar floating point instructions are used and GCC does not exploit SIMD features yet. + Prefetch support has been added to the Pentium III, Pentium 4, *************** Documentation improvements *** 19442,19448 **** provided this notice is preserved. These pages are [13]maintained by the GCC team. Last modified ! 2021-07-28[14]. References --- 19480,19486 ---- provided this notice is preserved. These pages are [13]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 19459,19467 **** 11. https://gcc.gnu.org/lists.html 12. https://www.fsf.org/ 13. https://gcc.gnu.org/about.html - 14. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-3.0/index.html GCC 3.0.4 (This release series is no longer supported.) --- 19497,19505 ---- 11. https://gcc.gnu.org/lists.html 12. https://www.fsf.org/ 13. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.0/index.html + GCC 3.0.4 (This release series is no longer supported.) *************** Previous 3.0.x Releases *** 19516,19522 **** provided this notice is preserved. These pages are [14]maintained by the GCC team. Last modified ! 2021-07-28[15]. References --- 19554,19560 ---- provided this notice is preserved. These pages are [14]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 19534,19542 **** 12. https://gcc.gnu.org/lists.html 13. https://www.fsf.org/ 14. https://gcc.gnu.org/about.html - 15. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-3.0/features.html GCC 3.0 New Features Additional changes in GCC 3.0.4 --- 19572,19580 ---- 12. https://gcc.gnu.org/lists.html 13. https://www.fsf.org/ 14. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.0/features.html + GCC 3.0 New Features Additional changes in GCC 3.0.4 *************** Other significant improvements *** 19707,19713 **** provided this notice is preserved. These pages are [18]maintained by the GCC team. Last modified ! 2021-07-28[19]. References --- 19745,19751 ---- provided this notice is preserved. These pages are [18]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 19729,19737 **** 16. https://gcc.gnu.org/lists.html 17. https://www.fsf.org/ 18. https://gcc.gnu.org/about.html - 19. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-3.0/caveats.html GCC 3.0 Caveats * -fstrict-aliasing is now part of -O2 and higher optimization --- 19767,19775 ---- 16. https://gcc.gnu.org/lists.html 17. https://www.fsf.org/ 18. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-3.0/caveats.html + GCC 3.0 Caveats * -fstrict-aliasing is now part of -O2 and higher optimization *************** http://gcc.gnu.org/gcc-3.0/caveats.html *** 19778,19784 **** provided this notice is preserved. These pages are [7]maintained by the GCC team. Last modified ! 2021-07-28[8]. References --- 19816,19822 ---- provided this notice is preserved. These pages are [7]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 19789,19797 **** 5. https://gcc.gnu.org/lists.html 6. https://www.fsf.org/ 7. https://gcc.gnu.org/about.html - 8. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-2.95/index.html GCC 2.95 (This release series is no longer supported.) --- 19827,19835 ---- 5. https://gcc.gnu.org/lists.html 6. https://www.fsf.org/ 7. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-2.95/index.html + GCC 2.95 (This release series is no longer supported.) *************** References and Acknowledgements *** 19860,19866 **** provided this notice is preserved. These pages are [15]maintained by the GCC team. Last modified ! 2021-07-28[16]. References --- 19898,19904 ---- provided this notice is preserved. These pages are [15]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 19879,19887 **** 13. https://gcc.gnu.org/lists.html 14. https://www.fsf.org/ 15. https://gcc.gnu.org/about.html - 16. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-2.95/features.html GCC 2.95 New Features * General Optimizer Improvements: --- 19917,19925 ---- 13. https://gcc.gnu.org/lists.html 14. https://www.fsf.org/ 15. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-2.95/features.html + GCC 2.95 New Features * General Optimizer Improvements: *************** Additional Changes in GCC 2.95.3 *** 20125,20131 **** provided this notice is preserved. These pages are [22]maintained by the GCC team. Last modified ! 2021-07-28[23]. References --- 20163,20169 ---- provided this notice is preserved. These pages are [22]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 20151,20159 **** 20. https://gcc.gnu.org/lists.html 21. https://www.fsf.org/ 22. https://gcc.gnu.org/about.html - 23. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/gcc-2.95/caveats.html GCC 2.95 Caveats * GCC 2.95 will issue an error for invalid asm statements that had --- 20189,20197 ---- 20. https://gcc.gnu.org/lists.html 21. https://www.fsf.org/ 22. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/gcc-2.95/caveats.html + GCC 2.95 Caveats * GCC 2.95 will issue an error for invalid asm statements that had *************** http://gcc.gnu.org/gcc-2.95/caveats.html *** 20208,20214 **** provided this notice is preserved. These pages are [7]maintained by the GCC team. Last modified ! 2021-07-28[8]. References --- 20246,20252 ---- provided this notice is preserved. These pages are [7]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 20219,20227 **** 5. https://gcc.gnu.org/lists.html 6. https://www.fsf.org/ 7. https://gcc.gnu.org/about.html - 8. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/egcs-1.1/index.html EGCS 1.1 September 3, 1998: We are pleased to announce the release of EGCS 1.1. --- 20257,20265 ---- 5. https://gcc.gnu.org/lists.html 6. https://www.fsf.org/ 7. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/egcs-1.1/index.html + EGCS 1.1 September 3, 1998: We are pleased to announce the release of EGCS 1.1. *************** http://gcc.gnu.org/egcs-1.1/index.html *** 20429,20435 **** provided this notice is preserved. These pages are [15]maintained by the GCC team. Last modified ! 2021-07-28[16]. References --- 20467,20473 ---- provided this notice is preserved. These pages are [15]maintained by the GCC team. Last modified ! 2023-01-21. References *************** References *** 20448,20456 **** 13. https://gcc.gnu.org/lists.html 14. https://www.fsf.org/ 15. https://gcc.gnu.org/about.html - 16. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/egcs-1.1/features.html EGCS 1.1 new features * Integrated GNU Fortran (g77) compiler and runtime library with --- 20486,20494 ---- 13. https://gcc.gnu.org/lists.html 14. https://www.fsf.org/ 15. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/egcs-1.1/features.html + EGCS 1.1 new features * Integrated GNU Fortran (g77) compiler and runtime library with *************** http://gcc.gnu.org/egcs-1.1/features.htm *** 20528,20534 **** provided this notice is preserved. These pages are [10]maintained by the GCC team. Last modified ! 2021-07-28[11]. References --- 20566,20572 ---- provided this notice is preserved. These pages are [10]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 20542,20550 **** 8. https://gcc.gnu.org/lists.html 9. https://www.fsf.org/ 10. https://gcc.gnu.org/about.html - 11. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/egcs-1.1/caveats.html EGCS 1.1 Caveats * EGCS has an integrated libstdc++, but does not have an integrated --- 20580,20588 ---- 8. https://gcc.gnu.org/lists.html 9. https://www.fsf.org/ 10. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/egcs-1.1/caveats.html + EGCS 1.1 Caveats * EGCS has an integrated libstdc++, but does not have an integrated *************** http://gcc.gnu.org/egcs-1.1/caveats.html *** 20582,20588 **** provided this notice is preserved. These pages are [6]maintained by the GCC team. Last modified ! 2021-07-28[7]. References --- 20620,20626 ---- provided this notice is preserved. These pages are [6]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 20592,20600 **** 4. https://gcc.gnu.org/lists.html 5. https://www.fsf.org/ 6. https://gcc.gnu.org/about.html - 7. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/egcs-1.0/index.html EGCS 1.0 December 3, 1997: We are pleased to announce the release of EGCS 1.0. --- 20630,20638 ---- 4. https://gcc.gnu.org/lists.html 5. https://www.fsf.org/ 6. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/egcs-1.0/index.html + EGCS 1.0 December 3, 1997: We are pleased to announce the release of EGCS 1.0. *************** http://gcc.gnu.org/egcs-1.0/index.html *** 20778,20784 **** provided this notice is preserved. These pages are [10]maintained by the GCC team. Last modified ! 2021-07-28[11]. References --- 20816,20822 ---- provided this notice is preserved. These pages are [10]maintained by the GCC team. Last modified ! 2023-01-21. References *************** References *** 20792,20800 **** 8. https://gcc.gnu.org/lists.html 9. https://www.fsf.org/ 10. https://gcc.gnu.org/about.html - 11. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/egcs-1.0/features.html EGCS 1.0 features * Core compiler is based on the gcc2 development tree from Aug 2, --- 20830,20838 ---- 8. https://gcc.gnu.org/lists.html 9. https://www.fsf.org/ 10. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/egcs-1.0/features.html + EGCS 1.0 features * Core compiler is based on the gcc2 development tree from Aug 2, *************** http://gcc.gnu.org/egcs-1.0/features.htm *** 20844,20850 **** provided this notice is preserved. These pages are [8]maintained by the GCC team. Last modified ! 2021-07-28[9]. References --- 20882,20888 ---- provided this notice is preserved. These pages are [8]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 20856,20864 **** 6. https://gcc.gnu.org/lists.html 7. https://www.fsf.org/ 8. https://gcc.gnu.org/about.html - 9. http://validator.w3.org/check/referer ====================================================================== http://gcc.gnu.org/egcs-1.0/caveats.html EGCS 1.0 Caveats * EGCS has an integrated libstdc++, but does not have an integrated --- 20894,20902 ---- 6. https://gcc.gnu.org/lists.html 7. https://www.fsf.org/ 8. https://gcc.gnu.org/about.html ====================================================================== http://gcc.gnu.org/egcs-1.0/caveats.html + EGCS 1.0 Caveats * EGCS has an integrated libstdc++, but does not have an integrated *************** http://gcc.gnu.org/egcs-1.0/caveats.html *** 20897,20903 **** provided this notice is preserved. These pages are [6]maintained by the GCC team. Last modified ! 2021-07-28[7]. References --- 20935,20941 ---- provided this notice is preserved. These pages are [6]maintained by the GCC team. Last modified ! 2022-10-26. References *************** References *** 20907,20911 **** 4. https://gcc.gnu.org/lists.html 5. https://www.fsf.org/ 6. https://gcc.gnu.org/about.html - 7. http://validator.w3.org/check/referer ====================================================================== --- 20945,20948 ---- diff -Nrcpad gcc-10.4.0/config/ChangeLog gcc-10.5.0/config/ChangeLog *** gcc-10.4.0/config/ChangeLog Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/config/ChangeLog Fri Jul 7 07:08:39 2023 *************** *** 1,3 **** --- 1,7 ---- + 2023-07-07 Release Manager + + * GCC 10.5.0 released. + 2022-06-28 Release Manager * GCC 10.4.0 released. diff -Nrcpad gcc-10.4.0/contrib/ChangeLog gcc-10.5.0/contrib/ChangeLog *** gcc-10.4.0/contrib/ChangeLog Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/contrib/ChangeLog Fri Jul 7 07:08:39 2023 *************** *** 1,3 **** --- 1,7 ---- + 2023-07-07 Release Manager + + * GCC 10.5.0 released. + 2022-06-28 Release Manager * GCC 10.4.0 released. diff -Nrcpad gcc-10.4.0/contrib/header-tools/ChangeLog gcc-10.5.0/contrib/header-tools/ChangeLog *** gcc-10.4.0/contrib/header-tools/ChangeLog Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/contrib/header-tools/ChangeLog Fri Jul 7 07:08:39 2023 *************** *** 1,3 **** --- 1,7 ---- + 2023-07-07 Release Manager + + * GCC 10.5.0 released. + 2022-06-28 Release Manager * GCC 10.4.0 released. diff -Nrcpad gcc-10.4.0/contrib/reghunt/ChangeLog gcc-10.5.0/contrib/reghunt/ChangeLog *** gcc-10.4.0/contrib/reghunt/ChangeLog Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/contrib/reghunt/ChangeLog Fri Jul 7 07:08:39 2023 *************** *** 1,3 **** --- 1,7 ---- + 2023-07-07 Release Manager + + * GCC 10.5.0 released. + 2022-06-28 Release Manager * GCC 10.4.0 released. diff -Nrcpad gcc-10.4.0/contrib/regression/ChangeLog gcc-10.5.0/contrib/regression/ChangeLog *** gcc-10.4.0/contrib/regression/ChangeLog Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/contrib/regression/ChangeLog Fri Jul 7 07:08:39 2023 *************** *** 1,3 **** --- 1,7 ---- + 2023-07-07 Release Manager + + * GCC 10.5.0 released. + 2022-06-28 Release Manager * GCC 10.4.0 released. diff -Nrcpad gcc-10.4.0/fixincludes/ChangeLog gcc-10.5.0/fixincludes/ChangeLog *** gcc-10.4.0/fixincludes/ChangeLog Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/fixincludes/ChangeLog Fri Jul 7 07:08:39 2023 *************** *** 1,3 **** --- 1,27 ---- + 2023-07-07 Release Manager + + * GCC 10.5.0 released. + + 2023-05-21 Iain Sandoe + + Backported from master: + 2023-01-21 Iain Sandoe + + * fixincl.x: Regenerate. + * inclhack.def (darwin_objc_runtime_1): New hack. + * tests/base/objc/runtime.h: New file. + + 2023-05-21 Iain Sandoe + + Backported from master: + 2023-01-21 Iain Sandoe + + PR target/107568 + * fixincl.x: Regenerate. + * inclhack.def: Add a fix for MacOS13 SDK function deprecations + in stdio.h. + * tests/base/stdio.h (__deprecated_msg): New test. + 2022-06-28 Release Manager * GCC 10.4.0 released. diff -Nrcpad gcc-10.4.0/fixincludes/fixincl.x gcc-10.5.0/fixincludes/fixincl.x *** gcc-10.4.0/fixincludes/fixincl.x Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/fixincludes/fixincl.x Fri Jul 7 07:08:18 2023 *************** *** 2,12 **** * * DO NOT EDIT THIS FILE (fixincl.x) * ! * It has been AutoGen-ed January 25, 2020 at 12:15:43 PM by AutoGen 5.18.16 * From the definitions inclhack.def * and the template file fixincl */ ! /* DO NOT SVN-MERGE THIS FILE, EITHER Sat Jan 25 12:15:43 EST 2020 * * You must regenerate it. Use the ./genfixes script. * --- 2,12 ---- * * DO NOT EDIT THIS FILE (fixincl.x) * ! * It has been AutoGen-ed May 19, 2023 at 08:09:14 PM by AutoGen 5.18.7 * From the definitions inclhack.def * and the template file fixincl */ ! /* DO NOT SVN-MERGE THIS FILE, EITHER Fri May 19 20:09:14 BST 2023 * * 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 258 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 260 fixup descriptions. * * See README for more information. * *************** int vfscanf(FILE *, const char *, __buil *** 2526,2531 **** --- 2526,2571 ---- /* * * * * * * * * * * * * * * * * * * * * * * * * * * + * Description of Apple_Local_Stdio_Fn_Deprecation fix + */ + tSCC zApple_Local_Stdio_Fn_DeprecationName[] = + "apple_local_stdio_fn_deprecation"; + + /* + * File name selection pattern + */ + tSCC zApple_Local_Stdio_Fn_DeprecationList[] = + "stdio.h\0"; + /* + * Machine/OS name selection pattern + */ + tSCC* apzApple_Local_Stdio_Fn_DeprecationMachs[] = { + "*-*-*darwin2*", + (const char*)NULL }; + + /* + * content selection pattern - do fix if pattern found + */ + tSCC zApple_Local_Stdio_Fn_DeprecationSelect0[] = + "__deprecated_msg([^\n\ + ]*)$"; + + #define APPLE_LOCAL_STDIO_FN_DEPRECATION_TEST_CT 1 + static tTestDesc aApple_Local_Stdio_Fn_DeprecationTests[] = { + { TT_EGREP, zApple_Local_Stdio_Fn_DeprecationSelect0, (regex_t*)NULL }, }; + + /* + * Fix Command Arguments for Apple_Local_Stdio_Fn_Deprecation + */ + static const char* apzApple_Local_Stdio_Fn_DeprecationPatch[] = { + "format", + "#if defined(__APPLE_LOCAL_DEPRECATIONS)\n\ + %0\n\ + #endif", + (char*)NULL }; + + /* * * * * * * * * * * * * * * * * * * * * * * * * * + * * Description of Ctrl_Quotes_Def fix */ tSCC zCtrl_Quotes_DefName[] = *************** static const char* apzDarwin_Os_Trace_2P *** 2962,2967 **** --- 3002,3054 ---- /* * * * * * * * * * * * * * * * * * * * * * * * * * * + * Description of Darwin_Objc_Runtime_1 fix + */ + tSCC zDarwin_Objc_Runtime_1Name[] = + "darwin_objc_runtime_1"; + + /* + * File name selection pattern + */ + tSCC zDarwin_Objc_Runtime_1List[] = + "objc/runtime.h\0"; + /* + * Machine/OS name selection pattern + */ + tSCC* apzDarwin_Objc_Runtime_1Machs[] = { + "*-*-darwin2*", + (const char*)NULL }; + + /* + * content selection pattern - do fix if pattern found + */ + tSCC zDarwin_Objc_Runtime_1Select0[] = + "OBJC_EXPORT void.*\n\ + objc_enumerateClasses.*\n\ + .*\n\ + .*\n\ + .*\n\ + .*void \\(\\^ _Nonnull block.*\n\ + .*\n\ + .*\n\ + .*OBJC_REFINED_FOR_SWIFT.*"; + + #define DARWIN_OBJC_RUNTIME_1_TEST_CT 1 + static tTestDesc aDarwin_Objc_Runtime_1Tests[] = { + { TT_EGREP, zDarwin_Objc_Runtime_1Select0, (regex_t*)NULL }, }; + + /* + * Fix Command Arguments for Darwin_Objc_Runtime_1 + */ + static const char* apzDarwin_Objc_Runtime_1Patch[] = { + "format", + "#if __BLOCKS__\n\ + %0\n\ + #endif", + (char*)NULL }; + + /* * * * * * * * * * * * * * * * * * * * * * * * * * + * * Description of Darwin_Os_Trace_3 fix */ tSCC zDarwin_Os_Trace_3Name[] = *************** static const char* apzX11_SprintfPatch[] *** 10476,10484 **** * * List of all fixes */ ! #define REGEX_COUNT 296 #define MACH_LIST_SIZE_LIMIT 187 ! #define FIX_COUNT 258 /* * Enumerate the fixes --- 10563,10571 ---- * * List of all fixes */ ! #define REGEX_COUNT 298 #define MACH_LIST_SIZE_LIMIT 187 ! #define FIX_COUNT 260 /* * Enumerate the fixes *************** typedef enum { *** 10543,10548 **** --- 10630,10636 ---- BROKEN_CABS_FIXIDX, BROKEN_NAN_FIXIDX, BSD_STDIO_ATTRS_CONFLICT_FIXIDX, + APPLE_LOCAL_STDIO_FN_DEPRECATION_FIXIDX, CTRL_QUOTES_DEF_FIXIDX, CTRL_QUOTES_USE_FIXIDX, CXX_UNREADY_FIXIDX, *************** typedef enum { *** 10554,10559 **** --- 10642,10648 ---- DARWIN_LONGJMP_NORETURN_FIXIDX, DARWIN_OS_TRACE_1_FIXIDX, DARWIN_OS_TRACE_2_FIXIDX, + DARWIN_OBJC_RUNTIME_1_FIXIDX, DARWIN_OS_TRACE_3_FIXIDX, DARWIN_OS_BASE_1_FIXIDX, DARWIN_DISPATCH_OBJECT_1_FIXIDX, *************** tFixDesc fixDescList[ FIX_COUNT ] = { *** 11040,11045 **** --- 11129,11139 ---- BSD_STDIO_ATTRS_CONFLICT_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE, aBsd_Stdio_Attrs_ConflictTests, apzBsd_Stdio_Attrs_ConflictPatch, 0 }, + { zApple_Local_Stdio_Fn_DeprecationName, zApple_Local_Stdio_Fn_DeprecationList, + apzApple_Local_Stdio_Fn_DeprecationMachs, + APPLE_LOCAL_STDIO_FN_DEPRECATION_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE, + aApple_Local_Stdio_Fn_DeprecationTests, apzApple_Local_Stdio_Fn_DeprecationPatch, 0 }, + { zCtrl_Quotes_DefName, zCtrl_Quotes_DefList, apzCtrl_Quotes_DefMachs, CTRL_QUOTES_DEF_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE, *************** tFixDesc fixDescList[ FIX_COUNT ] = { *** 11095,11100 **** --- 11189,11199 ---- DARWIN_OS_TRACE_2_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE, aDarwin_Os_Trace_2Tests, apzDarwin_Os_Trace_2Patch, 0 }, + { zDarwin_Objc_Runtime_1Name, zDarwin_Objc_Runtime_1List, + apzDarwin_Objc_Runtime_1Machs, + DARWIN_OBJC_RUNTIME_1_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE, + aDarwin_Objc_Runtime_1Tests, apzDarwin_Objc_Runtime_1Patch, 0 }, + { zDarwin_Os_Trace_3Name, zDarwin_Os_Trace_3List, apzDarwin_Os_Trace_3Machs, DARWIN_OS_TRACE_3_TEST_CT, FD_MACH_ONLY | FD_SUBROUTINE, diff -Nrcpad gcc-10.4.0/fixincludes/inclhack.def gcc-10.5.0/fixincludes/inclhack.def *** gcc-10.4.0/fixincludes/inclhack.def Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/fixincludes/inclhack.def Fri Jul 7 07:08:18 2023 *************** fix = { *** 1229,1234 **** --- 1229,1246 ---- test_text = '#define vfscanf __svfscanf'; }; + fix = { + hackname = apple_local_stdio_fn_deprecation; + mach = "*-*-*darwin2*"; + files = stdio.h; + select = "__deprecated_msg([^\n]*)$"; + c_fix = format; + c_fix_arg = "#if defined(__APPLE_LOCAL_DEPRECATIONS)\n" + "%0\n" + "#endif"; + test_text = '__deprecated_msg("This function is provided for compat...")'; + }; + /* * Fix various macros used to define ioctl numbers. * The traditional syntax was: *************** fix = { *** 1440,1445 **** --- 1452,1492 ---- }; /* + * macOSX 13.0 SDK objc/runtime.h uses Apple Blocks extension without a guard. + */ + + fix = { + hackname = darwin_objc_runtime_1; + mach = "*-*-darwin2*"; + files = objc/runtime.h; + select = <<- _EOSelect_ + OBJC_EXPORT void.* + objc_enumerateClasses.* + .* + .* + .* + .*void \(\^ _Nonnull block.* + .* + .* + .*OBJC_REFINED_FOR_SWIFT.* + _EOSelect_; + c_fix = format; + c_fix_arg = "#if __BLOCKS__\n%0\n#endif"; + test_text = <<- _OBJC_RUNTIME_1 + OBJC_EXPORT void + objc_enumerateClasses(const void * _Nullable image, + const char * _Nullable namePrefix, + Protocol * _Nullable conformingTo, + Class _Nullable subclassing, + void (^ _Nonnull block)(Class _Nonnull aClass, BOOL * _Nonnull stop) + OBJC_NOESCAPE) + OBJC_AVAILABLE(13.0, 16.0, 16.0, 9.0, 7.0) + OBJC_REFINED_FOR_SWIFT; + _OBJC_RUNTIME_1; + }; + + + /* * In Mac OS X 10.1[012] , need to guard users of * os_trace_payload_t typedef, too. */ diff -Nrcpad gcc-10.4.0/fixincludes/tests/base/objc/runtime.h gcc-10.5.0/fixincludes/tests/base/objc/runtime.h *** gcc-10.4.0/fixincludes/tests/base/objc/runtime.h Thu Jan 1 00:00:00 1970 --- gcc-10.5.0/fixincludes/tests/base/objc/runtime.h Fri Jul 7 07:08:18 2023 *************** *** 0 **** --- 1,24 ---- + /* DO NOT EDIT THIS FILE. + + It has been auto-edited by fixincludes from: + + "fixinc/tests/inc/objc/runtime.h" + + This had to be done to correct non-standard usages in the + original, manufacturer supplied header file. */ + + + + #if defined( DARWIN_OBJC_RUNTIME_1_CHECK ) + #if __BLOCKS__ + OBJC_EXPORT void + objc_enumerateClasses(const void * _Nullable image, + const char * _Nullable namePrefix, + Protocol * _Nullable conformingTo, + Class _Nullable subclassing, + void (^ _Nonnull block)(Class _Nonnull aClass, BOOL * _Nonnull stop) + OBJC_NOESCAPE) + OBJC_AVAILABLE(13.0, 16.0, 16.0, 9.0, 7.0) + OBJC_REFINED_FOR_SWIFT; + #endif + #endif /* DARWIN_OBJC_RUNTIME_1_CHECK */ diff -Nrcpad gcc-10.4.0/fixincludes/tests/base/stdio.h gcc-10.5.0/fixincludes/tests/base/stdio.h *** gcc-10.4.0/fixincludes/tests/base/stdio.h Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/fixincludes/tests/base/stdio.h Fri Jul 7 07:08:18 2023 *************** int vfscanf(FILE *, const char *, __buil *** 41,46 **** --- 41,53 ---- #endif /* BSD_STDIO_ATTRS_CONFLICT_CHECK */ + #if defined( APPLE_LOCAL_STDIO_FN_DEPRECATION_CHECK ) + #if defined(__APPLE_LOCAL_DEPRECATIONS) + __deprecated_msg("This function is provided for compat...") + #endif + #endif /* APPLE_LOCAL_STDIO_FN_DEPRECATION_CHECK */ + + #if defined( HPUX10_STDIO_DECLARATIONS_CHECK ) # define _iob __iob diff -Nrcpad gcc-10.4.0/gcc/BASE-VER gcc-10.5.0/gcc/BASE-VER *** gcc-10.4.0/gcc/BASE-VER Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/gcc/BASE-VER Fri Jul 7 07:08:39 2023 *************** *** 1 **** ! 10.4.0 --- 1 ---- ! 10.5.0 diff -Nrcpad gcc-10.4.0/gcc/ChangeLog gcc-10.5.0/gcc/ChangeLog *** gcc-10.4.0/gcc/ChangeLog Tue Jun 28 08:54:27 2022 --- gcc-10.5.0/gcc/ChangeLog Fri Jul 7 07:08:39 2023 *************** *** 1,3 **** --- 1,996 ---- + 2023-07-07 Release Manager + + * GCC 10.5.0 released. + + 2023-06-28 liuhongt + + * config/i386/i386-features.c (pass_insert_vzeroupper:gate): + Move flag_expensive_optimizations && !optimize_size to .. + * config/i386/i386-options.c (ix86_option_override_internal): + .. this, it makes -mvzeroupper independent of optimization + level, but still keeps the behavior of architecture + tuning(emit_vzeroupper) unchanged. + (rest_of_handle_insert_vzeroupper): Remove + flag_expensive_optimizations && !optimize_size. + + 2023-06-20 Kewen Lin + + Backported from master: + 2023-06-20 Kewen Lin + + PR target/109932 + * config/rs6000/rs6000-builtin.def (BU_VSX_MISC_2): New macro. + ({un,}pack_vector_int128): Use BU_VSX_MISC_2 instead of + BU_P7_MISC_2. + + 2023-06-19 Kewen Lin + + Backported from master: + 2023-06-12 Kewen Lin + + PR target/110011 + * config/rs6000/rs6000.c (output_toc): Use the mode of the 128-bit + floating constant itself for real_to_target call. + + 2023-06-09 Iain Sandoe + + Backported from master: + 2023-06-02 Iain Sandoe + + PR target/110044 + * config/rs6000/rs6000.c (darwin_rs6000_special_round_type_align): + Make sure that we do not have a cap on field alignment before altering + the struct layout based on the type alignment of the first entry. + + 2023-06-01 Jonathan Wakely + + Backported from master: + 2023-06-01 Jonathan Wakely + + PR target/109954 + * doc/invoke.texi (x86 Options): Fix description of -m32 option. + + 2023-05-22 Michael Meissner + + PR target/70243 + * config/rs6000/vsx.md (vsx_fmav4sf4): Do not generate vmaddfp. Back + port from master 04/10/2023. + (vsx_nfmsv4sf4): Do not generate vnmsubfp. + + 2023-05-21 Iain Sandoe + + Backported from master: + 2021-12-24 Iain Sandoe + + * config.gcc: Emit L2_MAX_OFILE_ALIGNMENT with suitable + values for the host. + * config/darwin.c (darwin_emit_common): Error for alignment + values > 32768. + * config/darwin.h (MAX_OFILE_ALIGNMENT): Rework to use the + configured L2_MAX_OFILE_ALIGNMENT. + + 2023-05-09 Jakub Jelinek + + Backported from master: + 2023-05-09 Jakub Jelinek + + PR tree-optimization/109778 + * wide-int.h (wi::lrotate, wi::rrotate): Call wi::lrshift on + wi::zext (x, width) rather than x if width != precision, rather + than using wi::zext (right, width) after the shift. + * tree-ssa-ccp.c (bit_value_binop): Call wi::ext on the results + of wi::lrotate or wi::rrotate. + + 2023-05-04 Richard Biener + + Revert: + 2023-02-07 Richard Biener + + PR tree-optimization/106809 + * tree-ssa-sccvn.c (dominaged_by_p_w_unex): Check we have + more than one successor before doing extra work. + + 2023-05-03 Anthony Sharp + + Backported from master: + 2021-08-27 Anthony Sharp + + * symbol-summary.h: Added missing template keyword. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-04-12 Jakub Jelinek + + PR tree-optimization/109410 + * tree-ssa-reassoc.c (build_and_add_sum): Split edge from entry + block if first statement of the function is a call to returns_twice + function. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-03-28 Jakub Jelinek + + PR middle-end/106190 + * sanopt.c (pass_sanopt::execute): Return TODO_cleanup_cfg if any + of the IFN_{UB,HWA,A}SAN_* internal fns are lowered. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-03-26 Jakub Jelinek + + PR ipa/105685 + * predict.c (compute_function_frequency): Don't call + warn_function_cold if function already has cold attribute. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-03-17 Jakub Jelinek + + PR target/105554 + * function.h (push_struct_function): Add ABSTRACT_P argument defaulted + to false. + * function.c (push_struct_function): Add ABSTRACT_P argument, pass it + to allocate_struct_function instead of false. + * tree-inline.c (initialize_cfun): Don't copy DECL_ARGUMENTS + nor DECL_RESULT here. Pass true as ABSTRACT_P to + push_struct_function. Call targetm.target_option.relayout_function + after it. + (tree_function_versioning): Formatting fix. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-03-17 Jakub Jelinek + + PR middle-end/108685 + * omp-expand.c (expand_omp_for_ordered_loops): Add L0_BB argument, + use its loop_father rather than BODY_BB's loop_father. + (expand_omp_for_generic): Adjust expand_omp_for_ordered_loops caller. + If broken_loop with ordered > collapse and at least one of those + extra loops aren't guaranteed to have at least one iteration, change + l0_bb's loop_father to entry_bb's loop_father. Set cont_bb's + loop_father to l0_bb's loop_father rather than l1_bb's. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-03-04 Jakub Jelinek + + PR testsuite/108973 + * selftest-diagnostic.c + (test_diagnostic_context::test_diagnostic_context): Set + caret_max_width to 80. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-02-24 Jakub Jelinek + + PR middle-end/108854 + * cgraphclones.c (duplicate_thunk_for_node): If no parameter + changes are needed, copy at least DECL_ARGUMENTS PARM_DECL + nodes and adjust their DECL_CONTEXT. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-02-24 Jakub Jelinek + + PR target/108881 + * config/i386/i386-builtin.def (__builtin_ia32_cvtne2ps2bf16_v16hi, + __builtin_ia32_cvtne2ps2bf16_v16hi_mask, + __builtin_ia32_cvtne2ps2bf16_v16hi_maskz, + __builtin_ia32_cvtne2ps2bf16_v8hi, + __builtin_ia32_cvtne2ps2bf16_v8hi_mask, + __builtin_ia32_cvtne2ps2bf16_v8hi_maskz, + __builtin_ia32_cvtneps2bf16_v8sf_mask, + __builtin_ia32_cvtneps2bf16_v8sf_maskz, + __builtin_ia32_cvtneps2bf16_v4sf_mask, + __builtin_ia32_cvtneps2bf16_v4sf_maskz, + __builtin_ia32_dpbf16ps_v8sf, __builtin_ia32_dpbf16ps_v8sf_mask, + __builtin_ia32_dpbf16ps_v8sf_maskz, __builtin_ia32_dpbf16ps_v4sf, + __builtin_ia32_dpbf16ps_v4sf_mask, + __builtin_ia32_dpbf16ps_v4sf_maskz): Require also + OPTION_MASK_ISA_AVX512VL. + + 2023-05-03 Andrew Pinski + + Backported from master: + 2023-02-09 Andrew Pinski + + PR tree-optimization/108688 + * match.pd (bit_field_ref [bit_insert]): Avoid generating + BIT_FIELD_REFs of non-mode-precision integral operands. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-02-02 Jakub Jelinek + + PR middle-end/108435 + * tree-nested.c (convert_nonlocal_omp_clauses) + : If info->new_local_var_chain and *seq + is not a GIMPLE_BIND, wrap the sequence into a new GIMPLE_BIND + before calling declare_vars. + (convert_nonlocal_omp_clauses) : Merge + with the OMP_CLAUSE_LASTPRIVATE handling except for whether + seq is initialized to &OMP_CLAUSE_LASTPRIVATE_GIMPLE_SEQ (clause) + or &OMP_CLAUSE_LINEAR_GIMPLE_SEQ (clause). + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-02-01 Jakub Jelinek + + PR debug/108573 + * ree.c (combine_reaching_defs): Don't return false for paradoxical + subregs in DEBUG_INSNs. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-01-31 Jakub Jelinek + + PR rtl-optimization/108596 + * bb-reorder.c (fix_up_fall_thru_edges): Handle the case where cur_bb + ends with asm goto and has a crossing fallthrough edge to the same bb + that contains at least one of its labels by restoring EDGE_CROSSING + flag even on possible edge from cur_bb to new_bb successor. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-01-27 Jakub Jelinek + + PR other/108560 + * doc/extend.texi: Fix up return type of __builtin_va_arg_pack_len + from size_t to int. + + 2023-05-03 Eric Biggers + + Backported from master: + 2023-01-24 Eric Biggers + + PR bootstrap/90543 + * optc-save-gen.awk: Fix copy-and-paste error. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2023-01-04 Jakub Jelinek + + PR middle-end/108237 + * generic-match-head.c: Include tree-pass.h. + (canonicalize_math_p): Define to false if cfun and + cfun->curr_properties has PROP_gimple_opt_math resp. PROP_gimple_lvec + property set. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-12-23 Jakub Jelinek + + PR tree-optimization/108068 + * tree.h (real_maybe_zerop): Declare. + * tree.c (real_maybe_zerop): Define. + * tree-ssa-dom.c (record_edge_info): Use it instead of + real_zerop or TREE_CODE (op1) == SSA_NAME || real_zerop. Always set + can_infer_simple_equiv to false for decimal floating point types. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-12-22 Jakub Jelinek + + PR rtl-optimization/108193 + * cse.c (compute_const_anchors): Change n type to + unsigned HOST_WIDE_INT, adjust comparison against it to avoid + warnings. Formatting fix. + (insert_const_anchor): Use gen_int_mode instead of GEN_INT. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-12-16 Jakub Jelinek + + PR rtl-optimization/106751 + * loop-invariant.c (move_invariant_reg): If preheader bb ends + with a JUMP_INSN, split the preheader edge and emit invariants + into the new preheader basic block. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-12-10 Jakub Jelinek + + PR tree-optimization/107997 + * tree-ssa-loop-ivopts.c: Include cfganal.h. + (create_new_iv) : If ip_end_pos bb is non-empty and ends + with a stmt which ends bb, instead of adding iv update after it split + the latch edge and insert iterator into the new latch bb. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-12-08 Jakub Jelinek + + PR debug/106719 + * cfgbuild.c (find_bb_boundaries): If there are NOTEs in between + debug_insn (seen after flow_transfer_insn) and insn, move NOTEs + before all the DEBUG_INSNs and split after NOTEs. If there are + other insns like jump table data, clear debug_insn. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-11-24 Jakub Jelinek + + PR middle-end/107317 + * asan.c: Include diagnostic-core.h. + (asan_emit_stack_protection): Return NULL early if seen_error (). + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-11-21 Jakub Jelinek + + PR target/107748 + * config/i386/smmintrin.h (_mm_extract_ps): Uglify names of local + variables and union members. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-11-20 Jakub Jelinek + + PR target/107183 + * reg-stack.c (next_flags_user): Add DEBUG_SEEN argument. + If >= 0 and a DEBUG_INSN would be otherwise returned, set + DEBUG_SEEN to 1 and ignore it. + (swap_rtx_condition): Add DEBUG_SEEN argument. In >= 0 + mode only set DEBUG_SEEN to 1 if problematic DEBUG_ISNSs + were seen and revert all changes on success in that case. + Don't try to recog_memoized DEBUG_INSNs. + (compare_for_stack_reg): Adjust swap_rtx_condition caller. + If it returns true and debug_seen is 1, call swap_rtx_condition + again with debug_seen -1. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-09-24 Jakub Jelinek + + PR c/107001 + * omp-low.c (lower_omp_taskgroup): Don't add GOMP_RETURN statement + at the end. + * omp-expand.c (build_omp_regions_1): Clarify GF_OMP_TARGET_KIND_DATA + is not stand-alone directive. For GIMPLE_OMP_TASKGROUP, also don't + update parent. + (omp_make_gimple_edges) : Reset + cur_region back after new_omp_region. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-07-27 Jakub Jelinek + + PR debug/106261 + * cgraphunit.c (cgraph_node::assemble_thunks_and_aliases): Don't + output asm thunks for -dx. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-07-01 Jakub Jelinek + + PR middle-end/106144 + * wide-int.cc (wi::shifted_mask): If end >= prec, return right after + emitting element for shift or if shift is 0 first element after start. + (wide_int_cc_tests): Add tests for equivalency of wi::mask and + wi::shifted_mask with 0 start. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-06-21 Jakub Jelinek + + PR rtl-optimization/106032 + * ifcvt.c (noce_try_sign_mask): Punt if !t_unconditional, and + t may_trap_or_fault_p, even if it is cheap. + + 2023-05-03 Jakub Jelinek + + Backported from master: + 2022-06-21 Jakub Jelinek + + PR middle-end/106030 + * expr.c (expand_cond_expr_using_cmove): Pass NULL_RTX instead of + temp to expand_operands if mode has been promoted. + + 2023-04-18 Philipp Tomsich + + Backported from master: + 2023-01-31 Philipp Tomsich + + PR target/108589 + * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Check + REG_P on SET_DEST. + + 2023-04-18 Philipp Tomsich + + Backported from master: + 2023-04-17 Philipp Tomsich + Di Zhao + + * config/aarch64/aarch64-tuning-flags.def (AARCH64_EXTRA_TUNING_OPTION): + Add AARCH64_EXTRA_TUNE_NO_LDP_COMBINE. + * config/aarch64/aarch64.c (aarch64_operands_ok_for_ldpstp): + Check for the above tuning option when processing loads. + + 2023-04-18 Philipp Tomsich + + Backported from master: + 2023-03-27 Philipp Tomsich + Jiangning Liu + Manolis Tsamis + + * config/aarch64/aarch64.c: Update vector costs for ampere1. + + 2023-04-18 Philipp Tomsich + + Backported from master: + 2022-11-14 Philipp Tomsich + + * config/aarch64/aarch64-cores.def (AARCH64_CORE): Add ampere1a. + * config/aarch64/aarch64-cost-tables.h: Add ampere1a_extra_costs. + * config/aarch64/aarch64-fusion-pairs.def (AARCH64_FUSION_PAIR): + Define a new fusion pair for A+B+1/A-B-1 (i.e., add/subtract two + registers and then +1/-1). + * config/aarch64/aarch64-tune.md: Regenerate. + * config/aarch64/aarch64.c (aarch_macro_fusion_pair_p): Implement + idiom-matcher for the new fusion pair. + * doc/invoke.texi: Add ampere1a. + + 2023-04-18 Philipp Tomsich + + Backported from master: + 2022-10-06 Philipp Tomsich + + * config/aarch64/aarch64-cores.def (AARCH64_CORE): Update + Ampere-1 core entry. + + 2023-04-18 Philipp Tomsich + + Backported from master: + 2022-10-06 Philipp Tomsich + + * config/aarch64/driver-aarch64.c (readline): Fix off-by-one. + + 2023-04-18 Philipp Tomsich + + Backported from master: + 2021-11-03 Philipp Tomsich + + * config/aarch64/aarch64-cores.def (AARCH64_CORE): New Ampere-1 + core. + * config/aarch64/aarch64-tune.md: Regenerate. + * config/aarch64/aarch64-cost-tables.h: Add extra costs for + Ampere-1. + * config/aarch64/aarch64.c: Add tuning structures for Ampere-1. + * doc/invoke.texi: Add documentation for Ampere-1 core. + + 2023-04-17 Kewen Lin + + Backported from master: + 2023-04-04 Kewen Lin + + PR target/108699 + * config/rs6000/altivec.md (*p9v_parity 2): Rename to ... + (rs6000_vprtyb 2): ... this. + * config/rs6000/rs6000-builtin.def (VPRTYBD): Replace parityv2di2 with + rs6000_vprtybv2di2. + (VPRTYBW): Replace parityv4si2 with rs6000_vprtybv4si2. + (VPRTYBQ): Replace parityv1ti2 with rs6000_vprtybv1ti2. + * config/rs6000/vector.md (parity 2 with VEC_IP): Expand with + popcountv16qi2 and the corresponding rs6000_vprtyb 2. + + 2023-02-24 Sebastian Huber + + Backported from master: + 2023-02-24 Sebastian Huber + + * config/riscv/t-rtems: Keep only -mcmodel=medany 64-bit multilibs. + Add non-compact 32-bit multilibs. + + 2023-02-20 Alex Coplan + + Backported from master: + 2023-02-06 Alex Coplan + + PR target/104921 + * config/aarch64/aarch64-simd.md (aarch64_bfmlal _lane v4sf): + Use correct constraint for operand 3. + + 2023-02-13 Kewen Lin+ + Backported from master: + 2023-01-18 Kewen Lin + + PR target/108348 + * config/rs6000/rs6000.c (rs6000_opaque_type_invalid_use_p): Add the + support for invalid uses of MMA opaque type in function arguments. + + 2023-02-13 Kewen Lin + + Backported from master: + 2023-01-16 Kewen Lin + + PR target/108272 + * config/rs6000/rs6000.c (rs6000_opaque_type_invalid_use_p): Add the + support for invalid uses in inline asm, factor out the checking and + erroring to lambda function check_and_error_invalid_use. + + 2023-02-07 Richard Biener + + Backported from master: + 2022-09-02 Richard Biener + + PR tree-optimization/106809 + * tree-ssa-sccvn.c (dominaged_by_p_w_unex): Check we have + more than one successor before doing extra work. + + 2023-02-03 Alex Coplan + + Backported from master: + 2022-12-01 Alex Coplan + + * varasm.c (assemble_variable): Fix type confusion bug when + checking for ".vtable_map_vars" section. + + 2023-01-26 Richard Biener + + Backported from master: + 2022-11-11 Richard Biener + Nikita Voronov + + PR tree-optimization/107554 + * tree-ssa-strlen.c (strlen_pass::count_nonzero_bytes): + Use unsigned HOST_WIDE_INT type for the strlen. + + 2023-01-26 Richard Biener + + Backported from master: + 2022-10-21 Richard Biener + + PR tree-optimization/107323 + * tree-loop-distribution.c (pg_unmark_merged_alias_ddrs): + New function. + (loop_distribution::break_alias_scc_partitions): Revert + postorder save/restore from the PR94125 fix. Instead + make sure to not ignore edges from SCCs we are going to + merge. + + 2023-01-26 Richard Biener + + Backported from master: + 2022-10-06 Richard Biener + + PR tree-optimization/107107 + * tree-ssa-sccvn.c (visit_reference_op_store): Do not + affect value-numbering when doing the tail merging + MODIFY_EXPR lookup. + + 2023-01-26 Richard Biener + + Backported from master: + 2022-09-14 Richard Biener + + PR tree-optimization/106934 + * tree-ssa.c (non_rewritable_mem_ref_base): Avoid BIT_FIELD_REFs + of bitfields. + (maybe_rewrite_mem_ref_base): Likewise. + + 2023-01-25 Christophe Lyon + + Backported from master: + 2023-01-12 Christophe Lyon + Richard Sandiford + + * config/aarch64/aarch64.c (aarch64_function_arg_alignment): Fix + comment. + (aarch64_layout_arg): Factorize warning conditions. + (aarch64_function_arg_boundary): Fix typo. + * function.c (currently_expanding_function_start): New variable. + (expand_function_start): Handle + currently_expanding_function_start. + * function.h (currently_expanding_function_start): Declare. + + 2023-01-24 Sergei Trofimovich + + Backported from master: + 2022-08-16 Sergei Trofimovich + + PR driver/106624 + * gcc.c (driver::detect_jobserver): Allocate storage xputenv() + argument using xstrdup(). + + 2023-01-05 Kewen Lin + + PR target/106736 + * config/rs6000/mma.md (define_expand movoo): Call function + rs6000_opaque_type_invalid_use_p to check and emit error message for + the invalid use of opaque type. + (define_expand movxo): Likewise. + * config/rs6000/rs6000-protos.h + (rs6000_opaque_type_invalid_use_p): New function declaration. + (currently_expanding_gimple_stmt): New extern declaration. + * config/rs6000/rs6000.c (rs6000_opaque_type_invalid_use_p): New + function. + + 2022-12-22 Martin Liska + + Backported from master: + 2022-08-10 Martin Liska + + * opts-jobserver.h: Add one member. + * opts-common.c (jobserver_info::jobserver_info): Parse FIFO + format of --jobserver-auth. + + 2022-12-22 Martin Liska + + Backported from master: + 2022-08-10 Martin Liska + + * gcc.c (driver::detect_jobserver): Remove and move to + jobserver.h. + * lto-wrapper.c (jobserver_active_p): Likewise. + (run_gcc): Likewise. + * opts-jobserver.h: New file. + * opts-common.c (jobserver_info::jobserver_info): New function. + + 2022-12-15 Sebastian Pop + + PR target/98776 + * config/aarch64/aarch64-protos.h (aarch64_output_patchable_area): + Declared. + * config/aarch64/aarch64.c (aarch64_print_patchable_function_entry): + Emit an UNSPECV_PATCHABLE_AREA pseudo instruction. + (aarch64_output_patchable_area): New. + * config/aarch64/aarch64.md (UNSPECV_PATCHABLE_AREA): New. + (patchable_area): Define. + + 2022-12-01 liuhongt + + PR target/107863 + * config/i386/i386-expand.c (ix86_expand_vec_set_builtin): + Convert op1 to target mode whenever mode mismatch. + + 2022-11-30 John David Anglin + + * config/pa/pa.md (addvdi3): Force operand 2 to a register. + Remove "addi,tsv,*" instruction from unamed pattern. + (subvdi3): Force operand 1 to a register. + Remove "subi,tsv" instruction from from unamed pattern. + + 2022-11-29 Max Filippov + + Backported from master: + 2022-11-08 Max Filippov + + PR rtl-optimization/107482 + * ira-color.c (assign_hard_reg): Only call + update_costs_from_copies when retry_p is false. + + 2022-11-19 Thomas Schwinge + + Backported from master: + 2022-11-19 Thomas Schwinge + + * config/nvptx/nvptx.h (STARTFILE_SPEC): Fix 'crt0.o' for + '-mmainkernel'. + + 2022-11-14 Richard Biener + + PR tree-optimization/107485 + * tree-inline.c (remap_gimple_stmt): Use correct type for + split out condition of [VEC_]COND_EXPRs. + + 2022-11-08 H.J. Lu + + Backported from master: + 2022-10-25 H.J. Lu + + PR target/107304 + * expr.c (get_inner_reference): Always use TYPE_MODE for vector + field with vector raw mode. + + 2022-11-05 Jonathan Wakely + + Backported from master: + 2022-11-05 Jonathan Wakely + + PR c/41041 + * doc/cppopts.texi: Document -fwide-exec-charset defaults + correctly. + + 2022-10-25 Stefan Schulze Frielinghaus + + Backported from master: + 2022-10-19 Stefan Schulze Frielinghaus + + PR target/106355 + * config/s390/s390.c (s390_call_saved_register_used): For a + parameter with BLKmode fix determining number of consecutive + registers. + + 2022-10-25 Martin Liska + + Backported from master: + 2022-10-24 Martin Liska + + PR target/107364 + * common/config/i386/i386-cpuinfo.h (enum processor_vendor): + Reorder enum values as BUILTIN_VENDOR_MAX should not point + in the middle of the valid enum values. + + 2022-10-21 Eric Botcazou + + PR target/107336 + * optabs.c (expand_vec_cond_expr): Query both VCOND and VCONDU for + EQ and NE. + + 2022-10-21 Richard Sandiford + + Backported from master: + 2022-10-20 Richard Sandiford + + * config/aarch64/aarch64-sve.md (*aarch64_brk _cc): Remove + merging alternative. + (*aarch64_brk _ptest): Likewise. + + 2022-10-21 Richard Sandiford + + Backported from master: + 2022-10-20 Richard Sandiford + + * config/aarch64/iterators.md (SVE_BRKP): New iterator. + * config/aarch64/aarch64-sve.md (*aarch64_brkn_cc): New pattern. + (*aarch64_brkn_ptest): Likewise. + (*aarch64_brk _cc): Restrict to SVE_BRKP. + (*aarch64_brk _ptest): Likewise. + + 2022-10-21 Richard Sandiford + + * config/aarch64/aarch64.h (AARCH64_FL_FOR_ARCH8_3): Add + AARCH64_FL_RCPC. + (AARCH64_ISA_RCPC): New macro. + * config/aarch64/aarch64-cores.def (thunderx3t110, zeus, neoverse-v1) + (neoverse-512tvb, saphira): Remove RCPC from these Armv8.3-A+ cores. + * config/aarch64/aarch64-c.c (aarch64_update_cpp_builtins): Define + __ARM_FEATURE_RCPC when appropriate. + + 2022-10-20 Kewen Lin + + Backported from master: + 2022-09-26 Kewen Lin + + PR target/96072 + * config/rs6000/rs6000-logue.c (rs6000_emit_epilogue): Update the + condition for adding REG_CFA_DEF_CFA reg note with + frame_pointer_needed_indeed. + + 2022-10-17 Pat Haugen + + PR target/99685 + * config/rs6000/rs6000-call.c (rs6000_function_arg_advance_1): Bump + register count when not splitting IEEE 128-bit Complex. + + 2022-10-14 Richard Biener + + Backported from master: + 2022-08-10 Richard Biener + + PR lto/106540 + PR lto/106334 + * lto-streamer-in.c (lto_read_tree_1): Use lto_input_tree_1 + to input DECL_INITIAL, avoiding to commit drefs. + + 2022-10-14 Richard Biener + + Backported from master: + 2022-08-10 Richard Biener + + PR tree-optimization/106513 + * gimple-ssa-store-merging.c (do_shift_rotate): Use uint64_t + for head_marker. + + 2022-10-14 Richard Biener + + Backported from master: + 2022-07-19 Richard Biener + + PR middle-end/106331 + * builtins.c (get_memory_rtx): Compute alignment from + the original address and set MEM_OFFSET to unknown when + we create a MEM_EXPR from the base object of the address. + + 2022-10-14 Richard Biener + + Backported from master: + 2022-07-01 Richard Biener + + PR tree-optimization/106131 + * tree-ssa-sccvn.c (vn_reference_lookup_3): Force alias-set + zero when offsetting the read looking through an aggregate + copy. + + 2022-10-14 Richard Biener + + Backported from master: + 2022-06-29 Richard Biener + + PR tree-optimization/106112 + * tree-ssa-sccvn.c (valueized_wider_op): Properly extend + a constant operand according to its type. + + 2022-10-14 Eric Botcazou + + PR target/107248 + * config/sparc/sparc.c (sparc_expand_prologue): Emit a frame + blockage for leaf functions. + (sparc_flat_expand_prologue): Emit frame instead of full blockage. + (sparc_expand_epilogue): Emit a frame blockage for leaf functions. + (sparc_flat_expand_epilogue): Emit frame instead of full blockage. + + 2022-10-03 Sergei Trofimovich + + Backported from master: + 2022-10-03 Sergei Trofimovich + + PR target/107064 + * config/i386/t-i386: Add build-time dependencies against + i386-builtin-types.inc to i386-builtins.o, i386-expand.o, + i386-features.o. + + 2022-09-28 Kyrylo Tkachov + + * config/aarch64/aarch64-cores.def (neoverse-v2): New entry. + * config/aarch64/aarch64-tune.md: Regenerate. + * doc/invoke.texi (AArch64 Options): Document neoverse-v2. + + 2022-09-21 Richard Sandiford + + Backported from master: + 2022-09-20 Richard Sandiford + + PR target/106491 + * config/aarch64/aarch64-sve-builtins.cc (scalar_types) + (acle_vector_types, acle_svpattern, acle_svprfop): Add GTY + markup to (new) extern declarations instead of to the main + definition. + + 2022-09-14 Tom de Vries + + Backported from master: + 2022-02-01 Tom de Vries + + * config/nvptx/nvptx.c (nvptx_single): Use nvptx_uniform_warp_check. + * config/nvptx/nvptx.md (define_c_enum "unspecv"): Add + UNSPECV_UNIFORM_WARP_CHECK. + (define_insn "nvptx_uniform_warp_check"): New define_insn. + + 2022-09-14 Tom de Vries + + Backported from master: + 2022-02-01 Tom de Vries + + * config/nvptx/nvptx.c (nvptx_single): Use nvptx_warpsync. + * config/nvptx/nvptx.md (define_c_enum "unspecv"): Add + UNSPECV_WARPSYNC. + (define_insn "nvptx_warpsync"): New define_insn. + + 2022-09-14 Thomas Schwinge + + * config/nvptx/nvptx.h (TARGET_PTX_6_0): '#define' to 'false'. + + 2022-09-13 Peter Bergner + + Backported from master: + 2022-09-01 Peter Bergner + + PR target/101322 + * config/rs6000/rs6000-call.c (rs6000_gimple_fold_mma_builtin): + Enforce the use of a valid MMA pointer type. + + 2022-09-08 Sebastian Huber + + * config/rs6000/rtems.h (CPP_OS_DEFAULT_SPEC): Define __PPC_VRSAVE__ if + -mvrsave is present. + * config/rs6000/t-rtems: Add -mvrsave multilib variants for + -mcpu=e6500. + + 2022-08-30 Peter Bergner + + Backported from master: + 2022-08-28 Peter Bergner + + PR target/106017 + * config/rs6000/rs6000.c (rs6000_invalid_conversion): Remove handling + of MMA pointer conversions. + + 2022-08-24 Kewen Lin + + Backported from master: + 2022-08-16 Kewen Lin + + PR target/103353 + * config/rs6000/mma.md (define_expand movpoi): Move TARGET_MMA condition + check to preparation statements and add handlings for !TARGET_MMA. + (define_expand movpxi): Likewise. + + 2022-08-16 Segher Boessenkool + + Backported from master: + 2022-04-21 Segher Boessenkool + + PR target/103197 + PR target/102146 + * config/rs6000/rs6000.md (zero_extendqi 2 for EXTQI): Disparage + the "Z" alternatives in {l,st}{f,xs}iwzx. + (zero_extendhi 2 for EXTHI): Ditto. + (zero_extendsi 2 for EXTSI): Ditto. + (*movsi_internal1): Ditto. + (*mov _internal1 for QHI): Ditto. + (movsd_hardfloat): Ditto. + + 2022-08-02 Peter Bergner + + Backported from master: + 2022-07-25 Peter Bergner + Kewen Lin + + PR testsuite/106345 + * config/rs6000/rs6000.h (DRIVER_SELF_SPECS): Adjust -mdejagnu-cpu + to filter out all -mtune options. + + 2022-08-02 Kewen Lin + + Backported from master: + 2022-07-26 Kewen Lin + + PR target/106091 + * config/rs6000/rs6000-p8swap.c (replace_swapped_aligned_store): Copy + REG_EH_REGION when replacing one store insn having it. + (replace_swapped_aligned_load): Likewise. + + 2022-07-25 Sebastian Huber + + Backported from master: + 2022-07-25 Sebastian Huber + + * config/rs6000/rtems.h (CPLUSPLUS_CPP_SPEC): Undef. + + 2022-07-22 Surya Kumari Jangala