Commit graph

1364 commits

Author SHA1 Message Date
GCC Administrator
6cd8527307 Daily bump. 2023-08-23 00:17:59 +00:00
Jason Merrill
810bcc0015 c++: constrained hidden friends [PR109751]
r13-4035 avoided a problem with overloading of constrained hidden friends by
checking satisfaction, but checking satisfaction early is inconsistent with
the usual late checking and can lead to hard errors, so let's not do that
after all.

We were wrongly treating the different instantiations of the same friend
template as the same function because maybe_substitute_reqs_for was failing
to actually substitute in the case of a non-template friend.  But we don't
actually need to do the substitution anyway, because [temp.friend] says that
such a friend can't be the same as any other declaration.

After fixing that, instead of a redefinition error we got an ambiguous
overload error, fixed by allowing constrained hidden friends to coexist
until overload resolution, at which point they probably won't be in the same
ADL overload set anyway.

And we avoid mangling collisions by following the proposed mangling for
these friends as a member function with an extra 'F' before the name.  I
demangle this by just adding [friend] to the name of the function because
it's not feasible to reconstruct the actual scope of the function since the
mangling ABI doesn't distinguish between class and namespace scopes.

	PR c++/109751

gcc/cp/ChangeLog:

	* cp-tree.h (member_like_constrained_friend_p): Declare.
	* decl.cc (member_like_constrained_friend_p): New.
	(function_requirements_equivalent_p): Check it.
	(duplicate_decls): Check it.
	(grokfndecl): Check friend template constraints.
	* mangle.cc (decl_mangling_context): Check it.
	(write_unqualified_name): Check it.
	* pt.cc (uses_outer_template_parms_in_constraints): Fix for friends.
	(tsubst_friend_function): Don't check satisfaction.

include/ChangeLog:

	* demangle.h (enum demangle_component_type): Add
	DEMANGLE_COMPONENT_FRIEND.

libiberty/ChangeLog:

	* cp-demangle.c (d_make_comp): Handle DEMANGLE_COMPONENT_FRIEND.
	(d_count_templates_scopes): Likewise.
	(d_print_comp_inner): Likewise.
	(d_unqualified_name): Handle member-like friend mangling.
	* testsuite/demangle-expected: Add test.

gcc/testsuite/ChangeLog:

	* g++.dg/cpp2a/concepts-friend11.C: Now works.  Add template.
	* g++.dg/cpp2a/concepts-friend15.C: New test.
2023-08-22 14:34:53 -04:00
GCC Administrator
4b92dba78d Daily bump. 2023-08-08 00:17:37 +00:00
John Ericson
9fc0ae6033
Deprecate a.out support for NetBSD targets.
As discussed previously, a.out support is now quite deprecated, and in
some cases removed, in both Binutils itself and NetBSD, so this legacy
default makes little sense. `netbsdelf*` and `netbsdaout*` still work
allowing the user to be explicit about there choice. Additionally, the
configure script warns about the change as Nick Clifton requested.

One possible concern was the status of NetBSD on NS32K, where only a.out
was supported. But per [1] NetBSD has removed support, and if it were to
come back, it would be with ELF. The binutils implementation is
therefore marked obsolete, per the instructions in the last message.

With that patch and this one applied, I have confirmed the following:

--target=i686-unknown-netbsd
--target=i686-unknown-netbsdelf
  builds completely

--target=i686-unknown-netbsdaout
  properly fails because target is deprecated.

--target=vax-unknown-netbsdaout builds completely except for gas, where
the target is deprecated.

[1]: https://mail-index.netbsd.org/tech-toolchain/2021/07/19/msg004025.html

config/ChangeLog:

	* picflag.m4: Simplify SHmedia NetBSD match by presuming ELF.

gcc/ChangeLog:

	* configure: Regenerate.

libada/ChangeLog:

	* configure: Regenerate.

libgcc/ChangeLog:

	* configure: Regenerate.

libiberty/ChangeLog:

	* configure: Regenerate.
2023-08-07 22:59:41 +02:00
H.J. Lu
9c7797a8c2
GCC: Check if AR works with --plugin and rc
AR from older binutils doesn't work with --plugin and rc:

[hjl@gnu-cfl-2 bin]$ touch foo.c
[hjl@gnu-cfl-2 bin]$ ar --plugin /usr/libexec/gcc/x86_64-redhat-linux/10/liblto_plugin.so rc libfoo.a foo.c
[hjl@gnu-cfl-2 bin]$ ./ar --plugin /usr/libexec/gcc/x86_64-redhat-linux/10/liblto_plugin.so rc libfoo.a foo.c
./ar: no operation specified
[hjl@gnu-cfl-2 bin]$ ./ar --version
GNU ar (Linux/GNU Binutils) 2.29.51.0.1.20180112
Copyright (C) 2018 Free Software Foundation, Inc.
This program is free software; you may redistribute it under the terms of
the GNU General Public License version 3 or (at your option) any later version.
This program has absolutely no warranty.
[hjl@gnu-cfl-2 bin]$

Check if AR works with --plugin and rc before passing --plugin to AR and
RANLIB.

ChangeLog:

	* configure: Regenerated.
	* libtool.m4 (_LT_CMD_OLD_ARCHIVE): Check if AR works with
	--plugin and rc before enabling --plugin.

config/ChangeLog:

	* gcc-plugin.m4 (GCC_PLUGIN_OPTION): Check if AR works with
	--plugin and rc before enabling --plugin.

gcc/ChangeLog:

	* configure: Regenerate.

libatomic/ChangeLog:

	* configure: Regenerate.

libbacktrace/ChangeLog:

	* configure: Regenerate.

libcc1/ChangeLog:

	* configure: Regenerate.

libffi/ChangeLog:

	* configure: Regenerate.

libgfortran/ChangeLog:

	* configure: Regenerate.

libgm2/ChangeLog:

	* configure: Regenerate.

libgomp/ChangeLog:

	* configure: Regenerate.

libiberty/ChangeLog:

	* configure: Regenerate.

libitm/ChangeLog:

	* configure: Regenerate.

libobjc/ChangeLog:

	* configure: Regenerate.

libphobos/ChangeLog:

	* configure: Regenerate.

libquadmath/ChangeLog:

	* configure: Regenerate.

libsanitizer/ChangeLog:

	* configure: Regenerate.

libssp/ChangeLog:

	* configure: Regenerate.

libstdc++-v3/ChangeLog:

	* configure: Regenerate.

libvtv/ChangeLog:

	* configure: Regenerate.

lto-plugin/ChangeLog:

	* configure: Regenerate.

zlib/ChangeLog:

	* configure: Regenerate.
2023-08-07 22:59:37 +02:00
H.J. Lu
126f707efb
Sync with binutils: GCC: Pass --plugin to AR and RANLIB
Sync with binutils for building binutils with LTO:

50ad1254d50 GCC: Pass --plugin to AR and RANLIB

Detect GCC LTO plugin.  Pass --plugin to AR and RANLIB to support LTO
build.

ChangeLog:

	* Makefile.tpl (AR): Add @AR_PLUGIN_OPTION@
	(RANLIB): Add @RANLIB_PLUGIN_OPTION@.
	* configure.ac: Include config/gcc-plugin.m4.
	AC_SUBST AR_PLUGIN_OPTION and RANLIB_PLUGIN_OPTION.
	* libtool.m4 (_LT_CMD_OLD_ARCHIVE): Pass --plugin to AR and
	RANLIB if possible.
	* Makefile.in: Regenerated.
	* configure: Likewise.

config/ChangeLog:

	* gcc-plugin.m4 (GCC_PLUGIN_OPTION): New.

libiberty/ChangeLog:

	* Makefile.in (AR): Add @AR_PLUGIN_OPTION@
	(RANLIB): Add @RANLIB_PLUGIN_OPTION@.
	(configure_deps): Depend on ../config/gcc-plugin.m4.
	* configure.ac: AC_SUBST AR_PLUGIN_OPTION and
	RANLIB_PLUGIN_OPTION.
	* aclocal.m4: Regenerated.
	* configure: Likewise.

zlib/ChangeLog:

	* configure: Regenerated.

gcc/ChangeLog:

	* configure: Regenerate.

libatomic/ChangeLog:

	* configure: Regenerate.

libbacktrace/ChangeLog:

	* configure: Regenerate.

libcc1/ChangeLog:

	* configure: Regenerate.

libffi/ChangeLog:

	* configure: Regenerate.

libgfortran/ChangeLog:

	* configure: Regenerate.

libgm2/ChangeLog:

	* configure: Regenerate.

libgomp/ChangeLog:

	* configure: Regenerate.

libitm/ChangeLog:

	* configure: Regenerate.

libobjc/ChangeLog:

	* configure: Regenerate.

libphobos/ChangeLog:

	* configure: Regenerate.

libquadmath/ChangeLog:

	* configure: Regenerate.

libsanitizer/ChangeLog:

	* configure: Regenerate.

libssp/ChangeLog:

	* configure: Regenerate.

libstdc++-v3/ChangeLog:

	* configure: Regenerate.

libvtv/ChangeLog:

	* configure: Regenerate.

lto-plugin/ChangeLog:

	* configure: Regenerate.
2023-08-07 22:59:36 +02:00
GCC Administrator
7ff793415f Daily bump. 2023-06-16 00:17:18 +00:00
Marek Polacek
b6cb10af12 configure: Implement --enable-host-pie
[ This is my third attempt to add this configure option.  The first
version was approved but it came too late in the development cycle.
The second version was also approved, but I had to revert it:
<https://gcc.gnu.org/pipermail/gcc-patches/2022-November/607082.html>.
I've fixed the problem (by moving $(PICFLAG) from INTERNAL_CFLAGS to
ALL_COMPILERFLAGS).  Another change is that since r13-4536 I no longer
need to touch Makefile.def, so this patch is simplified. ]

This patch implements the --enable-host-pie configure option which
makes the compiler executables PIE.  This can be used to enhance
protection against ROP attacks, and can be viewed as part of a wider
trend to harden binaries.

It is similar to the option --enable-host-shared, except that --e-h-s
won't add -shared to the linker flags whereas --e-h-p will add -pie.
It is different from --enable-default-pie because that option just
adds an implicit -fPIE/-pie when the compiler is invoked, but the
compiler itself isn't PIE.

Since r12-5768-gfe7c3ecf, PCH works well with PIE, so there are no PCH
regressions.

When building the compiler, the build process may use various in-tree
libraries; these need to be built with -fPIE so that it's possible to
use them when building a PIE.  For instance, when --with-included-gettext
is in effect, intl object files must be compiled with -fPIE.  Similarly,
when building in-tree gmp, isl, mpfr and mpc, they must be compiled with
-fPIE.

With this patch and --enable-host-pie used to configure gcc:

$ file gcc/cc1{,plus,obj,gm2} gcc/f951 gcc/lto1 gcc/cpp gcc/go1 gcc/rust1 gcc/gnat1
gcc/cc1:     ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=98e22cde129d304aa6f33e61b1c39e144aeb135e, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/cc1plus: ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=859d1ea37e43dfe50c18fd4e3dd9a34bb1db8f77, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/cc1obj:  ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=1964f8ecee6163182bc26134e2ac1f324816e434, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/cc1gm2:  ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=a396672c7ff913d21855829202e7b02ecf42ff4c, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/f951:    ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=59c523db893186547ac75c7a71f48be0a461c06b, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/lto1:    ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=084a7b77df7be2d63c2d4c655b5bbc3fcdb6038d, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/cpp:     ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=3503bf8390d219a10d6653b8560aa21158132168, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/go1:     ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=988cc673af4fba5dcb482f4b34957b99050a68c5, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/rust1:   ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=b6a5d3d514446c4dcdee0707f086ab9b274a8a3c, for GNU/Linux 3.2.0, with debug_info, not stripped
gcc/gnat1:   ELF 64-bit LSB pie executable, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=bb11ccdc2c366fe3fe0980476bcd8ca19b67f9dc, for GNU/Linux 3.2.0, with debug_info, not stripped

I plan to add an option to link with -Wl,-z,now.

Bootstrapped on x86_64-pc-linux-gnu with --with-included-gettext
--enable-host-pie as well as without --enable-host-pie.  Also tested
on a Debian system where the system gcc was configured with
--enable-default-pie.

Co-Authored by: Iain Sandoe  <iain@sandoe.co.uk>

ChangeLog:

	* configure.ac (--enable-host-pie): New check.  Set PICFLAG after this
	check.
	* configure: Regenerate.

c++tools/ChangeLog:

	* Makefile.in: Rename PIEFLAG to PICFLAG.  Set LD_PICFLAG.  Use it.
	Use pic/libiberty.a if PICFLAG is set.
	* configure.ac (--enable-default-pie): Set PICFLAG instead of PIEFLAG.
	(--enable-host-pie): New check.
	* configure: Regenerate.

fixincludes/ChangeLog:

	* Makefile.in: Set and use PICFLAG and LD_PICFLAG.  Use the "pic"
	build of libiberty if PICFLAG is set.
	* configure.ac:
	* configure: Regenerate.

gcc/ChangeLog:

	* Makefile.in: Set LD_PICFLAG.  Use it.  Set enable_host_pie.
	Remove NO_PIE_CFLAGS and NO_PIE_FLAG.  Pass LD_PICFLAG to
	ALL_LINKERFLAGS.  Use the "pic" build of libiberty if --enable-host-pie.
	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG and LD_PICFLAG after this
	check.
	* configure: Regenerate.
	* doc/install.texi: Document --enable-host-pie.

gcc/ada/ChangeLog:

	* gcc-interface/Make-lang.in (ALL_ADAFLAGS): Remove NO_PIE_CFLAGS.  Add
	PICFLAG.  Use PICFLAG when building ada/b_gnat1.o and ada/b_gnatb.o.
	* gcc-interface/Makefile.in: Use pic/libiberty.a if PICFLAG is set.
	Remove NO_PIE_FLAG.

gcc/m2/ChangeLog:

	* Make-lang.in: New var, GM2_PICFLAGS.  Use it.

gcc/d/ChangeLog:

	* Make-lang.in: Remove NO_PIE_CFLAGS.

intl/ChangeLog:

	* Makefile.in: Use @PICFLAG@ in COMPILE as well.
	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG after this check.
	* configure: Regenerate.

libcody/ChangeLog:

	* Makefile.in: Pass LD_PICFLAG to LDFLAGS.
	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG and LD_PICFLAG after this
	check.
	* configure: Regenerate.

libcpp/ChangeLog:

	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG after this check.
	* configure: Regenerate.

libdecnumber/ChangeLog:

	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG after this check.
	* configure: Regenerate.

libiberty/ChangeLog:

	* configure.ac: Also set shared when enable_host_pie.
	* configure: Regenerate.

zlib/ChangeLog:

	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG after this check.
	* configure: Regenerate.
2023-06-15 16:51:27 -04:00
GCC Administrator
532fb12035 Daily bump. 2023-06-14 00:17:28 +00:00
Nathan Sidwell
5a89703618 c++: Fix templated convertion operator demangling
Instantiations of templated conversion operators failed to demangle
for cases such as 'operator X<int>', but worked for 'operator X<int>
&', due to thinking the template instantiation of X was the
instantiation of the conversion operator itself.

	libiberty/
	* cp-demangle.c (d_print_conversion): Remove incorrect
	template instantiation handling.
	* testsuite/demangle-expected: Add testcases.
2023-06-13 17:07:01 -04:00
GCC Administrator
8c5b136583 Daily bump. 2023-06-08 00:17:20 +00:00
Costas Argyris
3fe017ee79 libiberty: writeargv: Simplify function error mode.
You are right, this is also a remnant of the old function design
that I completely missed.    Here is the follow-up patch for that.

Thanks for pointing it out.

Costas

On Tue, 6 Jun 2023 at 04:12, Jeff Law <jeffreyalaw@gmail.com> wrote:

    On 6/5/23 08:37, Costas Argyris via Gcc-patches wrote:
    > writeargv can be simplified by getting rid of the error exit mode
    > that was only relevant many years ago when the function used
    > to open the file descriptor internally.
    [ ... ]
    Thanks.  I've pushed this to the trunk.

    You could (as a follow-up) simplify it even further.  There's no need
    for the status variable as far as I can tell.  You could just have the
    final return be "return 0;" instead of "return status;".

libiberty/
	* argv.c (writeargv): Constant propagate "0" for "status",
	simplifying the code slightly.
2023-06-06 20:50:07 -06:00
GCC Administrator
4f0d4825fa Daily bump. 2023-06-07 00:17:25 +00:00
Costas Argyris
4d1e4ce986 libiberty: writeargv: Simplify function error mode.
writeargv can be simplified by getting rid of the error exit mode
that was only relevant many years ago when the function used
to open the file descriptor internally.

0001-libiberty-writeargv-Simplify-function-error-mode.patch

From 1271552baee5561fa61652f4ca7673c9667e4f8f Mon Sep 17 00:00:00 2001
From: Costas Argyris <costas.argyris@gmail.com>
Date: Mon, 5 Jun 2023 15:02:06 +0100
Subject: [PATCH] libiberty: writeargv: Simplify function error mode.

The goto-based error mode was based on a previous version
of the function where it was responsible for opening the
file, so it had to close it upon any exit:

https://inbox.sourceware.org/gcc-patches/20070417200340.GM9017@sparrowhawk.codesourcery.com/

(thanks pinskia)

This is no longer the case though since now the function
takes the file descriptor as input, so the exit mode on
error can be just a simple return 1 statement.

libiberty/
	* argv.c (writeargv): Simplify & remove gotos.

Signed-off-by: Costas Argyris <costas.argyris@gmail.com>
2023-06-05 21:10:26 -06:00
GCC Administrator
14da764809 Daily bump. 2023-06-06 00:17:33 +00:00
Costas Argyris
7ee22dc892 libiberty: pex-win32.c: Fix some typos.
libiberty/ChangeLog:

	* pex-win32.c: fix typos.

Signed-off-by: Costas Argyris <costas.argyris@gmail.com>
Signed-off-by: Jonathan Yong <10walls@gmail.com>
2023-06-05 12:13:28 +00:00
Costas Argyris
180ebb8a24 libiberty: On Windows, pass a >32k cmdline through a response file.
pex-win32.c (win32_spawn): If the command line for CreateProcess
exceeds the 32k Windows limit, try to store it in a temporary
response file and call CreateProcess with @file instead (PR71850).

Signed-off-by: Costas Argyris <costas.argyris@gmail.com>
Signed-off-by: Jonathan Yong <10walls@gmail.com>

libiberty/ChangeLog:

	* pex-win32.c (win32_spawn): Check command line length
	and generate a response file if necessary.
	(spawn_script): Adjust parameters.
	(pex_win32_exec_child): Ditto.

Signed-off-by: Jonathan Yong <10walls@gmail.com>
2023-06-05 08:11:39 +00:00
GCC Administrator
321cee7e29 Daily bump. 2023-06-04 00:16:43 +00:00
Patrick Palka
999e617d31 c++: mangle noexcept-expr [PR70790]
This implements noexcept(expr) mangling and demangling as per the
Itanium ABI.

	PR c++/70790

gcc/cp/ChangeLog:

	* mangle.cc (write_expression): Handle NOEXCEPT_EXPR.

libiberty/ChangeLog:

	* cp-demangle.c (cplus_demangle_operators): Add the noexcept
	operator.
	(d_print_comp_inner) <case DEMANGLE_COMPONENT_UNARY>: Always
	print parens around the operand of noexcept too.
	* testsuite/demangle-expected: Test noexcept operator
	demangling.

gcc/testsuite/ChangeLog:

	* g++.dg/abi/mangle78.C: New test.
2023-06-03 09:03:27 -04:00
GCC Administrator
5f10c7f2d8 Daily bump. 2023-04-03 00:16:43 +00:00
Jakub Jelinek
1719fa40c4 libiberty: Make strstr.c in libiberty ANSI compliant
On Fri, Nov 13, 2020 at 11:53:43AM -0700, Jeff Law via Gcc-patches wrote:
>
> On 5/1/20 6:06 PM, Seija Kijin via Gcc-patches wrote:
> > The original code in libiberty says "FIXME" and then says it has not been
> > validated to be ANSI compliant. However, this patch changes the function to
> > match implementations that ARE compliant, and such code is in the public
> > domain.
> >
> > I ran the test results, and there are no test failures.
>
> Thanks.  This seems to be the standard "simple" strstr implementation. 
> There's significantly faster implementations available, but I doubt it's
> worth the effort as the version in this file only gets used if there is
> no system strstr.c.

Except that PR109306 says the new version is non-compliant and
is certainly slower than what we used to have.  The only problem I see
on the old version (sure, it is not very fast version) is that for
strstr ("abcd", "") it returned "abcd"+4 rather than "abcd" because
strchr in that case changed p to point to the last character and then
strncmp returned 0.

The question reported in PR109306 is whether memcmp is required not to
access characters beyond the first difference or not.
For all of memcmp/strcmp/strncmp, C17 says:
"The sign of a nonzero value returned by the comparison functions memcmp, strcmp, and strncmp
is determined by the sign of the difference between the values of the first pair of characters (both
interpreted as unsigned char) that differ in the objects being compared."
but then in memcmp description says:
"The memcmp function compares the first n characters of the object pointed to by s1 to the first n
characters of the object pointed to by s2."
rather than something similar to strncmp wording:
"The strncmp function compares not more than n characters (characters that follow a null character
are not compared) from the array pointed to by s1 to the array pointed to by
s2."
So, while for strncmp it seems clearly well defined when there is zero
terminator before reaching the n, for memcmp it is unclear if say
int
memcmp (const void *s1, const void *s2, size_t n)
{
  int ret = 0;
  size_t i;
  const unsigned char *p1 = (const unsigned char *) s1;
  const unsigned char *p2 = (const unsigned char *) s2;

  for (i = n; i; i--)
    if (p1[i - 1] != p2[i - 1])
      ret = p1[i - 1] < p2[i - 1] ? -1 : 1;
  return ret;
}
wouldn't be valid implementation (one which always compares all characters
and just returns non-zero from the first one that differs).

So, shouldn't we just revert and handle the len == 0 case correctly?

I think almost nothing really uses it, but still, the old version
at least worked nicer with a fast strchr.
Could as well strncmp (p + 1, s2 + 1, len - 1) if that is preferred
because strchr already compared the first character.

2023-04-02  Jakub Jelinek  <jakub@redhat.com>

	PR other/109306
	* strstr.c: Revert the 2020-11-13 changes.
	(strstr): Return s1 if len is 0.
2023-04-02 20:05:31 +02:00
GCC Administrator
d20a6a3311 Daily bump. 2023-03-31 00:17:02 +00:00
Gerald Pfeifer
83d2b1ccd1 libiberty: Remove a reference to the Glibc manual
longjmp is not specific to Glibc, and GCC supports lots of systems
that do not use Glibc. Plus this link has been broken in the web
version for ages without a good way to fix.

libiberty/ChangeLog:

	* obstacks.texi (Preparing for Obstacks): Remove a (broken)
	reference to the Glibc manual.
2023-03-30 23:41:24 +02:00
GCC Administrator
2aa6673eef Daily bump. 2023-03-04 00:16:30 +00:00
Costas Argyris
59bc2b68de libiberty: fix memory leak in pex-win32.c and refactor
Fix memory leak of cmdline buffer and refactor to have
cleanup code appear once for all exit cases.

libiberty/ChangeLog:

	* pex-win32.c (win32_spawn): Fix memory leak of cmdline
	buffer and refactor to have cleanup code appear once
	for all exit cases.

Signed-off-by: Jonathan Yong <10walls@gmail.com>
2023-03-03 10:45:43 +00:00
GCC Administrator
ee11788783 Daily bump. 2023-02-12 00:17:22 +00:00
niXman
e2bb55ec3b libiberty: fix lrealpath on Windows NTFS symlinks
gcc computes the wrong prefix if invoked through an NTFS
symlink. Try to resolve it if possible.

PR/108350

libiberty/ChangeLog:

	* lrealpath.c (lrealpath): try to resolve symlink and
	use UNC paths where applicable.

Signed-off-by: Jonathan Yong <10walls@gmail.com>
2023-02-11 06:29:43 +00:00
Jakub Jelinek
83ffe9cde7 Update copyright years. 2023-01-16 11:52:17 +01:00
GCC Administrator
d901bf8a44 Daily bump. 2023-01-08 00:16:59 +00:00
LIU Hao
902c755930 Always define WIN32_LEAN_AND_MEAN before <windows.h>
Recently, mingw-w64 has got updated <msxml.h> from Wine which is included
indirectly by <windows.h> if `WIN32_LEAN_AND_MEAN` is not defined. The
`IXMLDOMDocument` class has a member function named `abort()`, which gets
affected by our `abort()` macro in "system.h".

`WIN32_LEAN_AND_MEAN` should, nevertheless, always be defined. This
can exclude 'APIs such as Cryptography, DDE, RPC, Shell, and Windows
Sockets' [1], and speed up compilation of these files a bit.

[1] https://learn.microsoft.com/en-us/windows/win32/winprog/using-the-windows-headers

gcc/

	PR middle-end/108300
	* config/xtensa/xtensa-dynconfig.c: Define `WIN32_LEAN_AND_MEAN`
	before <windows.h>.
	* diagnostic-color.cc: Likewise.
	* plugin.cc: Likewise.
	* prefix.cc: Likewise.

gcc/ada/

	PR middle-end/108300
	* adaint.c: Define `WIN32_LEAN_AND_MEAN` before `#include
	<windows.h>`.
	* cio.c: Likewise.
	* ctrl_c.c: Likewise.
	* expect.c: Likewise.
	* gsocket.h: Likewise.
	* mingw32.h: Likewise.
	* mkdir.c: Likewise.
	* rtfinal.c: Likewise.
	* rtinit.c: Likewise.
	* seh_init.c: Likewise.
	* sysdep.c: Likewise.
	* terminals.c: Likewise.
	* tracebak.c: Likewise.

gcc/jit/

	PR middle-end/108300
	* jit-w32.h: Define `WIN32_LEAN_AND_MEAN` before <windows.h>.

libatomic/

	PR middle-end/108300
	* config/mingw/lock.c: Define `WIN32_LEAN_AND_MEAN` before
	<windows.h>.

libffi/

	PR middle-end/108300
	* src/aarch64/ffi.c: Define `WIN32_LEAN_AND_MEAN` before
	<windows.h>.

libgcc/

	PR middle-end/108300
	* config/i386/enable-execute-stack-mingw32.c: Define
	`WIN32_LEAN_AND_MEAN` before <windows.h>.
	* libgcc2.c: Likewise.
	* unwind-generic.h: Likewise.

libgfortran/

	PR middle-end/108300
	* intrinsics/sleep.c: Define `WIN32_LEAN_AND_MEAN` before
	<windows.h>.

libgomp/

	PR middle-end/108300
	* config/mingw32/proc.c: Define `WIN32_LEAN_AND_MEAN` before
	<windows.h>.

libiberty/

	PR middle-end/108300
	* make-temp-file.c: Define `WIN32_LEAN_AND_MEAN` before <windows.h>.
	* pex-win32.c: Likewise.

libssp/

	PR middle-end/108300
	* ssp.c: Define `WIN32_LEAN_AND_MEAN` before <windows.h>.

libstdc++-v3/

	PR middle-end/108300
	* src/c++11/system_error.cc: Define `WIN32_LEAN_AND_MEAN` before
	<windows.h>.
	* src/c++11/thread.cc: Likewise.
	* src/c++17/fs_ops.cc: Likewise.
	* src/filesystem/ops.cc: Likewise.

libvtv/

	PR middle-end/108300
	* vtv_malloc.cc: Define `WIN32_LEAN_AND_MEAN` before <windows.h>.
	* vtv_rts.cc: Likewise.
	* vtv_utils.cc: Likewise.
2023-01-07 06:51:06 +00:00
GCC Administrator
8761284fd7 Daily bump. 2022-11-24 00:17:47 +00:00
Marek Polacek
04711f5189 Revert "configure: Implement --enable-host-pie"
This reverts commit 251c72a68a.
2022-11-22 21:10:31 -05:00
Marek Polacek
251c72a68a configure: Implement --enable-host-pie
This patch implements the --enable-host-pie configure option which
makes the compiler executables PIE.  This can be used to enhance
protection against ROP attacks, and can be viewed as part of a wider
trend to harden binaries.

It is similar to the option --enable-host-shared, except that --e-h-s
won't add -shared to the linker flags whereas --e-h-p will add -pie.
It is different from --enable-default-pie because that option just
adds an implicit -fPIE/-pie when the compiler is invoked, but the
compiler itself isn't PIE.

Since r12-5768-gfe7c3ecf, PCH works well with PIE, so there are no PCH
regressions.

When building the compiler, the build process may use various in-tree
libraries; these need to be built with -fPIE so that it's possible to
use them when building a PIE.  For instance, when --with-included-gettext
is in effect, intl object files must be compiled with -fPIE.  Similarly,
when building in-tree gmp, isl, mpfr and mpc, they must be compiled with
-fPIE.

I plan to add an option to link with -Wl,-z,now.

ChangeLog:

	* Makefile.def: Pass $(PICFLAG) to AM_CFLAGS for gmp, mpfr, mpc, and
	isl.
	* Makefile.in: Regenerate.
	* Makefile.tpl: Set PICFLAG.
	* configure.ac (--enable-host-pie): New check.  Set PICFLAG after this
	check.
	* configure: Regenerate.

c++tools/ChangeLog:

	* Makefile.in: Rename PIEFLAG to PICFLAG.  Set LD_PICFLAG.  Use it.
	Use pic/libiberty.a if PICFLAG is set.
	* configure.ac (--enable-default-pie): Set PICFLAG instead of PIEFLAG.
	(--enable-host-pie): New check.
	* configure: Regenerate.

fixincludes/ChangeLog:

	* Makefile.in: Set and use PICFLAG and LD_PICFLAG.  Use the "pic"
	build of libiberty if PICFLAG is set.
	* configure.ac:
	* configure: Regenerate.

gcc/ChangeLog:

	* Makefile.in: Set LD_PICFLAG.  Use it.  Set enable_host_pie.
	Remove NO_PIE_CFLAGS and NO_PIE_FLAG.  Pass LD_PICFLAG to
	ALL_LINKERFLAGS.  Use the "pic" build of libiberty if --enable-host-pie.
	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG and LD_PICFLAG after this
	check.
	* configure: Regenerate.
	* doc/install.texi: Document --enable-host-pie.

gcc/d/ChangeLog:

	* Make-lang.in: Remove NO_PIE_CFLAGS.

intl/ChangeLog:

	* Makefile.in: Use @PICFLAG@ in COMPILE as well.
	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG after this check.
	* configure: Regenerate.

libcody/ChangeLog:

	* Makefile.in: Pass LD_PICFLAG to LDFLAGS.
	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG and LD_PICFLAG after this
	check.
	* configure: Regenerate.

libcpp/ChangeLog:

	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG after this check.
	* configure: Regenerate.

libdecnumber/ChangeLog:

	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG after this check.
	* configure: Regenerate.

libiberty/ChangeLog:

	* configure.ac: Also set shared when enable_host_pie.
	* configure: Regenerate.

zlib/ChangeLog:

	* configure.ac (--enable-host-shared): Don't set PICFLAG here.
	(--enable-host-pie): New check.  Set PICFLAG after this check.
	* configure: Regenerate.
2022-11-22 20:32:18 -05:00
Martin Liska
3d3b561fc3 changelog: Fix extra space after tab. 2022-11-21 10:13:44 +01:00
GCC Administrator
cdc34229c1 Daily bump. 2022-11-16 00:17:09 +00:00
Nathan Sidwell
46c3d9c8e8 demangler: Templated lambda demangling
Templated lambdas have a template-head, which is part of their
signature.  GCC ABI 18 mangles that into the lambda name.  This adds
support to the demangler.  We have to introduce artificial template
parameter names, as we need to refer to them from later components of
the lambda signature. We use $T:n, $N:n and $TT:n for type, non-type
and template parameters.  Non-type parameter names are not shown in
the strictly correct location -- for instance 'int (&NT) ()' would be
shown as 'int (&) $N:n'.  That's unfortunate, but an orthogonal issue.
The 'is_lambda_arg' field is now repurposed as indicating the number
of explicit template parameters (1-based).

	include/
	* demangle.h (enum demangle_component_type): Add
	DEMANGLE_COMPONENT_TEMPLATE_HEAD,
	DEMANGLE_COMPONENT_TEMPLATE_TYPE_PARM,
	DEMANGLE_COMPONENT_TEMPLATE_NON_TYPE_PARM,
	DEMANGLE_COMPONENT_TEMPLATE_TEMPLATE_PARM,
	DEMANGLE_COMPONENT_TEMPLATE_PACK_PARM.
	libiberty/
	* cp-demangle.c (struct d_print_info): Rename is_lambda_arg to
	lambda_tpl_parms.  Augment semantics.
	(d_make_comp): Add checks for new components.
	(d_template_parm, d_template_head): New.
	(d_lambda): Add templated lambda support.
	(d_print_init): Adjust.
	(d_print_lambda_parm_name): New.
	(d_print_comp_inner): Support templated lambdas,
	* testsuite/demangle-expected: Add testcases.
2022-11-15 13:34:56 -05:00
GCC Administrator
83d400bded Daily bump. 2022-11-15 08:32:29 +00:00
Martin Liska
191dbc3568 Revert "sphinx: copy files from texi2rst-generated repository"
This reverts commit c63539ffe4.
2022-11-14 09:35:07 +01:00
Martin Liska
4e3dcf2076 Revert "sphinx: support Sphinx in build system"
This reverts commit 41a45cba00.
2022-11-14 09:35:06 +01:00
Martin Liska
d77de73829 Revert "sphinx: remove texinfo files"
This reverts commit 54ca4eef58.
2022-11-14 09:35:06 +01:00
Martin Liska
b779e6bf0b Revert "sphinx: add --with-sphinx-build"
This reverts commit 1f5a932e89.
2022-11-14 09:35:05 +01:00
Martin Liska
a0ccbac843 Revert "sphinx: add missing trailing newline"
This reverts commit 3ed1b4ce7c.
2022-11-14 09:35:04 +01:00
Martin Liska
95d364643a Revert "sphinx: add missing newline for conf.py files."
This reverts commit bd044dae51.
2022-11-14 09:35:03 +01:00
Martin Liska
bd24b5dbb6 Revert "configure: always set SPHINX_BUILD"
This reverts commit 5e749ee301.
2022-11-14 09:35:02 +01:00
GCC Administrator
eefbfbc793 Daily bump. 2022-11-14 00:17:08 +00:00
Martin Liska
5e749ee301 configure: always set SPHINX_BUILD
During the Sphinx-migration development, I used
SPHINX_BUILD='' in order to skip building info and manual
pages in gcc folder. However, we've got HAS_SPHINX_BUILD
which is the correct flag for that.

With the patch, one will get a nicer error message when
sphinx-build is missing and one builds (explicitly) a target which
depends on it.

	PR other/107620

gcc/ChangeLog:

	* configure: Regenerate.
	* configure.ac: Always set sphinx-build.

libgomp/ChangeLog:

	* configure: Regenerate.
	* configure.ac: Always set sphinx-build.

libiberty/ChangeLog:

	* configure: Regenerate.
	* configure.ac: Always set sphinx-build.

libitm/ChangeLog:

	* configure: Regenerate.
	* configure.ac: Always set sphinx-build.

libquadmath/ChangeLog:

	* configure: Regenerate.
	* configure.ac: Always set sphinx-build.
2022-11-13 16:35:25 +01:00
GCC Administrator
f225b813e4 Daily bump. 2022-11-11 00:17:22 +00:00
Martin Liska
bd044dae51 sphinx: add missing newline for conf.py files.
gcc/d/ChangeLog:

	* doc/conf.py: Add newline at last line.

gcc/ChangeLog:

	* doc/cpp/conf.py: Add newline at last line.
	* doc/cppinternals/conf.py: Add newline at last line.
	* doc/gcc/conf.py: Add newline at last line.
	* doc/gccint/conf.py: Add newline at last line.
	* doc/install/conf.py: Add newline at last line.

gcc/fortran/ChangeLog:

	* doc/gfc-internals/conf.py: Add newline at last line.
	* doc/gfortran/conf.py: Add newline at last line.

gcc/go/ChangeLog:

	* doc/conf.py: Add newline at last line.

libgomp/ChangeLog:

	* doc/conf.py: Add newline at last line.

libiberty/ChangeLog:

	* doc/conf.py: Add newline at last line.

libitm/ChangeLog:

	* doc/conf.py: Add newline at last line.

libquadmath/ChangeLog:

	* doc/conf.py: Add newline at last line.
2022-11-10 13:56:49 +01:00
GCC Administrator
1cdfd0e5cd Daily bump. 2022-11-10 00:17:57 +00:00
Martin Liska
3ed1b4ce7c sphinx: add missing trailing newline
All files are supposed to end with a newline, fix that.

ChangeLog:

	* doc/bsd.rst:
	  Add trailing newline.
	* doc/contrib.rst:
	  Add trailing newline.
	* doc/contribute.rst:
	  Add trailing newline.
	* doc/cppdiropts.rst:
	  Add trailing newline.
	* doc/cppenv.rst:
	  Add trailing newline.
	* doc/cppopts.rst:
	  Add trailing newline.
	* doc/cppwarnopts.rst:
	  Add trailing newline.
	* doc/funding.rst:
	  Add trailing newline.
	* doc/gnu.rst:
	  Add trailing newline.
	* doc/gnu_free_documentation_license.rst:
	  Add trailing newline.
	* doc/gpl-3.0.rst:
	  Add trailing newline.
	* doc/indices-and-tables.rst:
	  Add trailing newline.
	* doc/lgpl-2.1.rst:
	  Add trailing newline.
	* doc/md.rst:
	  Add trailing newline.

gcc/d/ChangeLog:

	* doc/copyright.rst:
	  Add trailing newline.
	* doc/general-public-license-3.rst:
	  Add trailing newline.
	* doc/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/index.rst:
	  Add trailing newline.
	* doc/indices-and-tables.rst:
	  Add trailing newline.
	* doc/invoking-gdc.rst:
	  Add trailing newline.
	* doc/invoking-gdc/code-generation.rst:
	  Add trailing newline.
	* doc/invoking-gdc/developer-options.rst:
	  Add trailing newline.
	* doc/invoking-gdc/input-and-output-files.rst:
	  Add trailing newline.
	* doc/invoking-gdc/options-for-directory-search.rst:
	  Add trailing newline.
	* doc/invoking-gdc/options-for-linking.rst:
	  Add trailing newline.
	* doc/invoking-gdc/runtime-options.rst:
	  Add trailing newline.
	* doc/invoking-gdc/warnings.rst:
	  Add trailing newline.

gcc/ChangeLog:

	* doc/cpp/character-sets.rst:
	  Add trailing newline.
	* doc/cpp/conditional-syntax.rst:
	  Add trailing newline.
	* doc/cpp/conditional-uses.rst:
	  Add trailing newline.
	* doc/cpp/conditionals.rst:
	  Add trailing newline.
	* doc/cpp/copyright.rst:
	  Add trailing newline.
	* doc/cpp/deleted-code.rst:
	  Add trailing newline.
	* doc/cpp/diagnostics.rst:
	  Add trailing newline.
	* doc/cpp/environment-variables.rst:
	  Add trailing newline.
	* doc/cpp/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/cpp/header-files.rst:
	  Add trailing newline.
	* doc/cpp/header-files/alternatives-to-wrapper-ifndef.rst:
	  Add trailing newline.
	* doc/cpp/header-files/computed-includes.rst:
	  Add trailing newline.
	* doc/cpp/header-files/include-operation.rst:
	  Add trailing newline.
	* doc/cpp/header-files/include-syntax.rst:
	  Add trailing newline.
	* doc/cpp/header-files/once-only-headers.rst:
	  Add trailing newline.
	* doc/cpp/header-files/search-path.rst:
	  Add trailing newline.
	* doc/cpp/header-files/system-headers.rst:
	  Add trailing newline.
	* doc/cpp/header-files/wrapper-headers.rst:
	  Add trailing newline.
	* doc/cpp/implementation-defined-behavior.rst:
	  Add trailing newline.
	* doc/cpp/implementation-details.rst:
	  Add trailing newline.
	* doc/cpp/implementation-limits.rst:
	  Add trailing newline.
	* doc/cpp/index.rst:
	  Add trailing newline.
	* doc/cpp/indices-and-tables.rst:
	  Add trailing newline.
	* doc/cpp/initial-processing.rst:
	  Add trailing newline.
	* doc/cpp/invocation.rst:
	  Add trailing newline.
	* doc/cpp/line-control.rst:
	  Add trailing newline.
	* doc/cpp/macros.rst:
	  Add trailing newline.
	* doc/cpp/macros/concatenation.rst:
	  Add trailing newline.
	* doc/cpp/macros/directives-within-macro-arguments.rst:
	  Add trailing newline.
	* doc/cpp/macros/function-like-macros.rst:
	  Add trailing newline.
	* doc/cpp/macros/macro-arguments.rst:
	  Add trailing newline.
	* doc/cpp/macros/macro-pitfalls.rst:
	  Add trailing newline.
	* doc/cpp/macros/object-like-macros.rst:
	  Add trailing newline.
	* doc/cpp/macros/predefined-macros.rst:
	  Add trailing newline.
	* doc/cpp/macros/stringizing.rst:
	  Add trailing newline.
	* doc/cpp/macros/undefining-and-redefining-macros.rst:
	  Add trailing newline.
	* doc/cpp/macros/variadic-macros.rst:
	  Add trailing newline.
	* doc/cpp/obsolete-features.rst:
	  Add trailing newline.
	* doc/cpp/other-directives.rst:
	  Add trailing newline.
	* doc/cpp/overview.rst:
	  Add trailing newline.
	* doc/cpp/pragmas.rst:
	  Add trailing newline.
	* doc/cpp/preprocessor-output.rst:
	  Add trailing newline.
	* doc/cpp/the-preprocessing-language.rst:
	  Add trailing newline.
	* doc/cpp/tokenization.rst:
	  Add trailing newline.
	* doc/cpp/traditional-lexical-analysis.rst:
	  Add trailing newline.
	* doc/cpp/traditional-macros.rst:
	  Add trailing newline.
	* doc/cpp/traditional-miscellany.rst:
	  Add trailing newline.
	* doc/cpp/traditional-mode.rst:
	  Add trailing newline.
	* doc/cpp/traditional-warnings.rst:
	  Add trailing newline.
	* doc/cppinternals/copyright.rst:
	  Add trailing newline.
	* doc/cppinternals/cppinternals.rst:
	  Add trailing newline.
	* doc/cppinternals/cpplib.rst:
	  Add trailing newline.
	* doc/cppinternals/files.rst:
	  Add trailing newline.
	* doc/cppinternals/index.rst:
	  Add trailing newline.
	* doc/cppinternals/indices-and-tables.rst:
	  Add trailing newline.
	* doc/cppinternals/internal-representation-of-macros.rst:
	  Add trailing newline.
	* doc/cppinternals/just-which-line-number-anyway.rst:
	  Add trailing newline.
	* doc/cppinternals/lexing-a-line.rst:
	  Add trailing newline.
	* doc/cppinternals/lexing-a-token.rst:
	  Add trailing newline.
	* doc/cppinternals/looking-for-a-function-like-macros-opening-parenthesis.rst:
	  Add trailing newline.
	* doc/cppinternals/macro-expansion-overview.rst:
	  Add trailing newline.
	* doc/cppinternals/marking-tokens-ineligible-for-future-expansion.rst:
	  Add trailing newline.
	* doc/cppinternals/multiple-include-optimization.rst:
	  Add trailing newline.
	* doc/cppinternals/overview.rst:
	  Add trailing newline.
	* doc/cppinternals/representation-of-line-numbers.rst:
	  Add trailing newline.
	* doc/cppinternals/scanning-the-replacement-list-for-macros-to-expand.rst:
	  Add trailing newline.
	* doc/gcc/binary-compatibility.rst:
	  Add trailing newline.
	* doc/gcc/c++-implementation-defined-behavior.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/architecture.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/arrays-and-pointers.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/characters.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/declarators.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/environment.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/floating-point.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/hints.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/identifiers.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/integers.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/library-functions.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/locale-specific-behavior.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/preprocessing-directives.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/qualifiers.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/statements.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/structures-unions-enumerations-and-bit-fields.rst:
	  Add trailing newline.
	* doc/gcc/c-implementation-defined-behavior/translation.rst:
	  Add trailing newline.
	* doc/gcc/conditionally-supported-behavior.rst:
	  Add trailing newline.
	* doc/gcc/contributing-to-gcc-development.rst:
	  Add trailing newline.
	* doc/gcc/contributors-to-gcc.rst:
	  Add trailing newline.
	* doc/gcc/copyright.rst:
	  Add trailing newline.
	* doc/gcc/exception-handling.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/backwards-compatibility.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/c++-concepts.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/c++-interface-and-implementation-pragmas.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/c++-specific-variable-function-and-type-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/deprecated-features.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/extracting-the-function-pointer-from-a-bound-pointer-to-member-function.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/function-multiversioning.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/restricting-pointer-aliasing.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/type-traits.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/vague-linkage.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/when-is-a-volatile-c++-object-accessed.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c++-language/wheres-the-template.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/128-bit-integers.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/additional-floating-types.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/alternate-keywords.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/an-inline-function-is-as-fast-as-a-macro.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/arithmetic-on-void-and-function-pointers.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/arrays-of-length-zero.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/arrays-of-variable-length.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/attribute-syntax.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/binary-constants-using-the-0b-prefix.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/built-in-functions-for-memory-model-aware-atomic-operations.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/built-in-functions-to-perform-arithmetic-with-overflow-checking.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/c++-style-comments.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/case-ranges.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/cast-to-a-union-type.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/complex-numbers.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/compound-literals.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/conditionals-with-omitted-operands.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/constructing-function-calls.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/decimal-floating-types.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/aarch64-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/amd-gcn-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/arc-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/arm-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/avr-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/blackfin-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/bpf-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/c-sky-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/common-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/epiphany-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/h8-300-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/ia-64-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/m32c-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/m32r-d-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/m68k-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/mcore-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/mep-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/microblaze-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/microsoft-windows-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/mips-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/msp430-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/nds32-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/nios-ii-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/nvidia-ptx-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/powerpc-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/risc-v-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/rl78-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/rx-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/s-390-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/sh-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/symbian-os-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/v850-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/visium-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/x86-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/declaring-attributes-of-functions/xstormy16-function-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/designated-initializers.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/determining-the-alignment-of-functions-types-or-variables.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/dollar-signs-in-identifier-names.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/double-word-integers.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/enumerator-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/fixed-point-types.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/format-checks-specific-to-particular-target-machines.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/function-names-as-strings.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/getting-the-return-or-frame-address-of-a-function.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/half-precision-floating-point.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/hex-floats.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/how-to-use-inline-assembly-language-in-c-code.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/incomplete-enum-types.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/label-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/labels-as-values.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/legacy-sync-built-in-functions-for-atomic-memory-access.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/locally-declared-labels.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/macros-with-a-variable-number-of-arguments.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/mixed-declarations-labels-and-code.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/named-address-spaces.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/nested-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/non-constant-initializers.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/non-lvalue-arrays-may-have-subscripts.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/nonlocal-gotos.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/object-size-checking-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/other-built-in-functions-provided-by-gcc.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/pointer-arguments-in-variadic-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/pointers-to-arrays-with-qualifiers-work-as-expected.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/pragmas-accepted-by-gcc.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/prototypes-and-old-style-function-definitions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/referring-to-a-type-with-typeof.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/slightly-looser-rules-for-escaped-newlines.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/specifying-attributes-of-types.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/specifying-attributes-of-variables.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/statement-attributes.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/statements-and-declarations-in-expressions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/structures-with-no-members.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/support-for-offsetof.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/aarch64-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/alpha-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/altera-nios-ii-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/arc-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/arc-simd-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/arm-armv8-m-security-extensions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/arm-c-language-extensions-acle.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/arm-floating-point-status-and-control-intrinsics.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/arm-iwmmxt-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/avr-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/basic-powerpc-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/blackfin-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/bpf-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/fr-v-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/mips-dsp-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/mips-loongson-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/mips-paired-single-support.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/mips-simd-architecture-msa-support.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/msp430-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/nds32-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/other-mips-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/picochip-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/powerpc-altivec-vsx-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/powerpc-atomic-memory-operation-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/powerpc-hardware-transactional-memory-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/powerpc-matrix-multiply-assist-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/pru-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/risc-v-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/rx-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/s-390-system-z-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/sh-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/sparc-vis-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/ti-c6x-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/x86-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/x86-control-flow-protection-intrinsics.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/target-builtins/x86-transactional-memory-intrinsics.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/the-character-esc-in-constants.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/thread-local-storage.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/unnamed-structure-and-union-fields.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/using-vector-instructions-through-built-in-functions.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/when-is-a-volatile-object-accessed.rst:
	  Add trailing newline.
	* doc/gcc/extensions-to-the-c-language-family/x86-specific-memory-model-extensions-for-transactional-memory.rst:
	  Add trailing newline.
	* doc/gcc/funding.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/compiling-c++-programs.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/description.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/environment-variables-affecting-gcc.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/gcc-developer-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/aarch64-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/adapteva-epiphany-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/amd-gcn-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/arc-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/arm-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/avr-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/blackfin-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/c-sky-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/c6x-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/cris-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/darwin-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/dec-alpha-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/ebpf-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/fr30-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/frv-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/ft32-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/gnu-linux-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/h8-300-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/hppa-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/ia-64-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/ibm-rs-6000-and-powerpc-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/lm32-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/loongarch-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/m32c-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/m32r-d-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/m680x0-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/mcore-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/mep-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/microblaze-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/mips-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/mmix-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/mn10300-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/moxie-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/msp430-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/nds32-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/nios-ii-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/nvidia-ptx-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/openrisc-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/options-for-system-v.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/pdp-11-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/picochip-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/powerpc-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/pru-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/risc-v-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/rl78-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/rx-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/s-390-and-zseries-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/score-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/sh-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/solaris-2-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/sparc-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/v850-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/vax-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/visium-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/vms-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/vxworks-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/x86-windows-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/xstormy16-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/xtensa-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/machine-dependent-options/zseries-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-controlling-c++-dialect.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-controlling-c-dialect.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-controlling-objective-c-and-objective-c++-dialects.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-controlling-the-kind-of-output.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-controlling-the-preprocessor.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-for-code-generation-conventions.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-for-debugging-your-program.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-for-directory-search.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-for-linking.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-that-control-optimization.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-that-control-static-analysis.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-to-control-diagnostic-messages-formatting.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/options-to-request-or-suppress-warnings.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/passing-options-to-the-assembler.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/program-instrumentation-options.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/specifying-subprocesses-and-the-switches-to-pass-to-them.rst:
	  Add trailing newline.
	* doc/gcc/gcc-command-options/using-precompiled-headers.rst:
	  Add trailing newline.
	* doc/gcc/gcc.rst:
	  Add trailing newline.
	* doc/gcc/gcov-dump.rst:
	  Add trailing newline.
	* doc/gcc/gcov-tool.rst:
	  Add trailing newline.
	* doc/gcc/gcov.rst:
	  Add trailing newline.
	* doc/gcc/gcov/brief-description-of-gcov-data-files.rst:
	  Add trailing newline.
	* doc/gcc/gcov/data-file-relocation-to-support-cross-profiling.rst:
	  Add trailing newline.
	* doc/gcc/gcov/introduction-to-gcov.rst:
	  Add trailing newline.
	* doc/gcc/gcov/invoking-gcov.rst:
	  Add trailing newline.
	* doc/gcc/gcov/profiling-and-test-coverage-in-freestanding-environments.rst:
	  Add trailing newline.
	* doc/gcc/gcov/using-gcov-with-gcc-optimization.rst:
	  Add trailing newline.
	* doc/gcc/general-public-license-3.rst:
	  Add trailing newline.
	* doc/gcc/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/compatibilityalias.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/constant-string-objects.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/exceptions.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/fast-enumeration.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/garbage-collection.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/gnu-objective-c-runtime-api.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/load-executing-code-before-main.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/messaging-with-the-gnu-objective-c-runtime.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/synchronization.rst:
	  Add trailing newline.
	* doc/gcc/gnu-objective-c-features/type-encoding.rst:
	  Add trailing newline.
	* doc/gcc/gnu.rst:
	  Add trailing newline.
	* doc/gcc/have-you-found-a-bug.rst:
	  Add trailing newline.
	* doc/gcc/how-and-where-to-report-bugs.rst:
	  Add trailing newline.
	* doc/gcc/how-to-get-help-with-gcc.rst:
	  Add trailing newline.
	* doc/gcc/index.rst:
	  Add trailing newline.
	* doc/gcc/indices-and-tables.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/actual-bugs-we-havent-fixed-yet.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/certain-changes-we-dont-want-to-make.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/common-misunderstandings-with-gnu-c.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/disappointments-and-misunderstandings.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/fixed-header-files.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/incompatibilities-of-gcc.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/interoperation.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/standard-libraries.rst:
	  Add trailing newline.
	* doc/gcc/known-causes-of-trouble-with-gcc/warning-messages-and-error-messages.rst:
	  Add trailing newline.
	* doc/gcc/language-standards-supported-by-gcc.rst:
	  Add trailing newline.
	* doc/gcc/language-standards-supported-by-gcc/c++-language.rst:
	  Add trailing newline.
	* doc/gcc/language-standards-supported-by-gcc/c-language.rst:
	  Add trailing newline.
	* doc/gcc/language-standards-supported-by-gcc/d-language.rst:
	  Add trailing newline.
	* doc/gcc/language-standards-supported-by-gcc/go-language.rst:
	  Add trailing newline.
	* doc/gcc/language-standards-supported-by-gcc/objective-c-and-objective-c++-languages.rst:
	  Add trailing newline.
	* doc/gcc/lto-dump.rst:
	  Add trailing newline.
	* doc/gcc/programming-languages-supported-by-gcc.rst:
	  Add trailing newline.
	* doc/gcc/reporting-bugs.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-optimization-of-gimple-tuples.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-optimization-of-gimple-tuples/alias-analysis.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-optimization-of-gimple-tuples/annotations.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-optimization-of-gimple-tuples/memory-model.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-optimization-of-gimple-tuples/ssa-operands.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-optimization-of-gimple-tuples/static-single-assignment.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops/data-dependency-analysis.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops/iv-analysis-on-rtl.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops/loop-closed-ssa-form.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops/loop-manipulation.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops/loop-querying.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops/loop-representation.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops/number-of-iterations-analysis.rst:
	  Add trailing newline.
	* doc/gccint/analysis-and-representation-of-loops/scalar-evolutions.rst:
	  Add trailing newline.
	* doc/gccint/analyzer-internals.rst:
	  Add trailing newline.
	* doc/gccint/collect2.rst:
	  Add trailing newline.
	* doc/gccint/contributing-to-gcc-development.rst:
	  Add trailing newline.
	* doc/gccint/contributors-to-gcc.rst:
	  Add trailing newline.
	* doc/gccint/control-flow-graph.rst:
	  Add trailing newline.
	* doc/gccint/control-flow-graph/basic-blocks.rst:
	  Add trailing newline.
	* doc/gccint/control-flow-graph/edges.rst:
	  Add trailing newline.
	* doc/gccint/control-flow-graph/liveness-information.rst:
	  Add trailing newline.
	* doc/gccint/control-flow-graph/maintaining-the-cfg.rst:
	  Add trailing newline.
	* doc/gccint/control-flow-graph/profile-information.rst:
	  Add trailing newline.
	* doc/gccint/copyright.rst:
	  Add trailing newline.
	* doc/gccint/debugging-the-analyzer.rst:
	  Add trailing newline.
	* doc/gccint/funding.rst:
	  Add trailing newline.
	* doc/gccint/gcc-and-portability.rst:
	  Add trailing newline.
	* doc/gccint/general-public-license-3.rst:
	  Add trailing newline.
	* doc/gccint/generic.rst:
	  Add trailing newline.
	* doc/gccint/generic/attributes-in-trees.rst:
	  Add trailing newline.
	* doc/gccint/generic/c-and-c++-trees.rst:
	  Add trailing newline.
	* doc/gccint/generic/declarations.rst:
	  Add trailing newline.
	* doc/gccint/generic/deficiencies.rst:
	  Add trailing newline.
	* doc/gccint/generic/expressions.rst:
	  Add trailing newline.
	* doc/gccint/generic/functions.rst:
	  Add trailing newline.
	* doc/gccint/generic/language-dependent-trees.rst:
	  Add trailing newline.
	* doc/gccint/generic/overview.rst:
	  Add trailing newline.
	* doc/gccint/generic/statements.rst:
	  Add trailing newline.
	* doc/gccint/generic/types.rst:
	  Add trailing newline.
	* doc/gccint/gimple-api.rst:
	  Add trailing newline.
	* doc/gccint/gimple.rst:
	  Add trailing newline.
	* doc/gccint/gimple/adding-a-new-gimple-statement-code.rst:
	  Add trailing newline.
	* doc/gccint/gimple/class-hierarchy-of-gimple-statements.rst:
	  Add trailing newline.
	* doc/gccint/gimple/exception-handling.rst:
	  Add trailing newline.
	* doc/gccint/gimple/gimple-instruction-set.rst:
	  Add trailing newline.
	* doc/gccint/gimple/gimple-sequences.rst:
	  Add trailing newline.
	* doc/gccint/gimple/manipulating-gimple-statements.rst:
	  Add trailing newline.
	* doc/gccint/gimple/operands.rst:
	  Add trailing newline.
	* doc/gccint/gimple/sequence-iterators.rst:
	  Add trailing newline.
	* doc/gccint/gimple/statement-and-operand-traversals.rst:
	  Add trailing newline.
	* doc/gccint/gimple/temporaries.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-representation.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleasm.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleassign.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplebind.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplecall.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplecatch.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplecond.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpledebug.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleehfilter.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplegoto.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplelabel.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplenop.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompatomicload.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompatomicstore.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompcontinue.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompcritical.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompfor.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompmaster.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompordered.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompparallel.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompreturn.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompsection.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompsections.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleompsingle.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplephi.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleresx.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplereturn.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpleswitch.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimpletry.rst:
	  Add trailing newline.
	* doc/gccint/gimple/tuple-specific-accessors/gimplewithcleanupexpr.rst:
	  Add trailing newline.
	* doc/gccint/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/gccint/guidelines-for-diagnostics.rst:
	  Add trailing newline.
	* doc/gccint/guidelines-for-options.rst:
	  Add trailing newline.
	* doc/gccint/host-common.rst:
	  Add trailing newline.
	* doc/gccint/host-configuration.rst:
	  Add trailing newline.
	* doc/gccint/host-filesystem.rst:
	  Add trailing newline.
	* doc/gccint/host-makefile-fragments.rst:
	  Add trailing newline.
	* doc/gccint/host-misc.rst:
	  Add trailing newline.
	* doc/gccint/index.rst:
	  Add trailing newline.
	* doc/gccint/indices-and-tables.rst:
	  Add trailing newline.
	* doc/gccint/interfacing-to-gcc-output.rst:
	  Add trailing newline.
	* doc/gccint/introduction.rst:
	  Add trailing newline.
	* doc/gccint/language-front-ends-in-gcc.rst:
	  Add trailing newline.
	* doc/gccint/link-time-optimization.rst:
	  Add trailing newline.
	* doc/gccint/link-time-optimization/design-overview.rst:
	  Add trailing newline.
	* doc/gccint/link-time-optimization/internal-flags-controlling-lto1.rst:
	  Add trailing newline.
	* doc/gccint/link-time-optimization/lto-file-sections.rst:
	  Add trailing newline.
	* doc/gccint/link-time-optimization/using-summary-information-in-ipa-passes.rst:
	  Add trailing newline.
	* doc/gccint/link-time-optimization/whole-program-assumptions-linker-plugin-and-symbol-visibilities.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/c-statements-for-assembler-output.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/canonicalization-of-instructions.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/conditional-execution.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/constant-definitions.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/defining-how-to-split-instructions.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/defining-jump-instruction-patterns.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/defining-looping-instruction-patterns.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/defining-rtl-sequences-for-code-generation.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/everything-about-instruction-patterns.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/example-of-defineinsn.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/including-patterns-in-machine-descriptions.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/instruction-attributes.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/interdependence-of-patterns.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/iterators.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/machine-specific-peephole-optimizers.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/operand-constraints.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/output-templates-and-operand-substitution.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/overview-of-how-the-machine-description-is-used.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/predicates.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/rtl-template.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/rtl-templates-transformations.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/standard-pattern-names-for-generation.rst:
	  Add trailing newline.
	* doc/gccint/machine-descriptions/when-the-order-of-patterns-matters.rst:
	  Add trailing newline.
	* doc/gccint/makefile-fragments.rst:
	  Add trailing newline.
	* doc/gccint/match-and-simplify.rst:
	  Add trailing newline.
	* doc/gccint/memory-management-and-type-information.rst:
	  Add trailing newline.
	* doc/gccint/memory-management-and-type-information/how-to-invoke-the-garbage-collector.rst:
	  Add trailing newline.
	* doc/gccint/memory-management-and-type-information/marking-roots-for-the-garbage-collector.rst:
	  Add trailing newline.
	* doc/gccint/memory-management-and-type-information/source-files-containing-type-information.rst:
	  Add trailing newline.
	* doc/gccint/memory-management-and-type-information/support-for-inheritance.rst:
	  Add trailing newline.
	* doc/gccint/memory-management-and-type-information/support-for-user-provided-gc-marking-routines.rst:
	  Add trailing newline.
	* doc/gccint/memory-management-and-type-information/the-inside-of-a-gty.rst:
	  Add trailing newline.
	* doc/gccint/memory-management-and-type-information/troubleshooting-the-garbage-collector.rst:
	  Add trailing newline.
	* doc/gccint/option-file-format.rst:
	  Add trailing newline.
	* doc/gccint/option-properties.rst:
	  Add trailing newline.
	* doc/gccint/option-specification-files.rst:
	  Add trailing newline.
	* doc/gccint/passes-and-files-of-the-compiler.rst:
	  Add trailing newline.
	* doc/gccint/passes-and-files-of-the-compiler/gimplification-pass.rst:
	  Add trailing newline.
	* doc/gccint/passes-and-files-of-the-compiler/inter-procedural-optimization-passes.rst:
	  Add trailing newline.
	* doc/gccint/passes-and-files-of-the-compiler/optimization-info.rst:
	  Add trailing newline.
	* doc/gccint/passes-and-files-of-the-compiler/parsing-pass.rst:
	  Add trailing newline.
	* doc/gccint/passes-and-files-of-the-compiler/pass-manager.rst:
	  Add trailing newline.
	* doc/gccint/passes-and-files-of-the-compiler/rtl-passes.rst:
	  Add trailing newline.
	* doc/gccint/passes-and-files-of-the-compiler/tree-ssa-passes.rst:
	  Add trailing newline.
	* doc/gccint/plugins.rst:
	  Add trailing newline.
	* doc/gccint/plugins/building-gcc-plugins.rst:
	  Add trailing newline.
	* doc/gccint/plugins/controlling-which-passes-are-being-run.rst:
	  Add trailing newline.
	* doc/gccint/plugins/giving-information-about-a-plugin.rst:
	  Add trailing newline.
	* doc/gccint/plugins/interacting-with-the-gcc-garbage-collector.rst:
	  Add trailing newline.
	* doc/gccint/plugins/interacting-with-the-pass-manager.rst:
	  Add trailing newline.
	* doc/gccint/plugins/keeping-track-of-available-passes.rst:
	  Add trailing newline.
	* doc/gccint/plugins/loading-plugins.rst:
	  Add trailing newline.
	* doc/gccint/plugins/plugin-api.rst:
	  Add trailing newline.
	* doc/gccint/plugins/recording-information-about-pass-execution.rst:
	  Add trailing newline.
	* doc/gccint/plugins/registering-custom-attributes-or-pragmas.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/access-to-operands.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/access-to-special-operands.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/assembler-instructions-as-expressions.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/bit-fields.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/comparison-operations.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/constant-expression-types.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/conversions.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/declarations.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/embedded-side-effects-on-addresses.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/flags-in-an-rtl-expression.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/insns.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/machine-modes.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/on-the-side-ssa-form-for-rtl.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/reading-rtl.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/registers-and-memory.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/rtl-classes-and-formats.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/rtl-expressions-for-arithmetic.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/rtl-object-types.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/rtl-representation-of-function-call-insns.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/side-effect-expressions.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/structure-sharing-assumptions.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/variable-location-debug-information-in-rtl.rst:
	  Add trailing newline.
	* doc/gccint/rtl-representation/vector-operations.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/alignment-of-polyints.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/arithmetic-on-polyints.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/comparisons-involving-polyint.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/computing-bounds-on-polyints.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/consequences-of-using-polyint.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/converting-polyints.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/guidelines-for-using-polyint.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/miscellaneous-polyint-routines.rst:
	  Add trailing newline.
	* doc/gccint/sizes-and-offsets-as-runtime-invariants/overview-of-polyint.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/configure-terms-and-history.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory/anatomy-of-a-language-front-end.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory/anatomy-of-a-target-back-end.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory/build-system-in-the-gcc-directory.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory/configuration-in-the-gcc-directory.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory/headers-installed-by-gcc.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory/library-source-files-and-headers-under-the-gcc-directory.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory/makefile-targets.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/the-gcc-subdirectory/subdirectories-of-gcc.rst:
	  Add trailing newline.
	* doc/gccint/source-tree-structure-and-build-system/top-level-source-directory.rst:
	  Add trailing newline.
	* doc/gccint/standard-header-file-directories.rst:
	  Add trailing newline.
	* doc/gccint/static-analyzer.rst:
	  Add trailing newline.
	* doc/gccint/target-macros.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/controlling-debugging-information-format.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/controlling-the-compilation-driver-gcc.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/cross-compilation-and-floating-point.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-coprocessor-specifics-for-mips-targets.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-data-structures-for-per-function-information.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-the-output-assembler-language.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-the-output-assembler-language/assembler-commands-for-alignment.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-the-output-assembler-language/how-initialization-functions-are-handled.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-the-output-assembler-language/macros-controlling-initialization-routines.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-the-output-assembler-language/output-and-generation-of-labels.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-the-output-assembler-language/output-of-assembler-instructions.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-the-output-assembler-language/output-of-data.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/defining-the-output-assembler-language/output-of-uninitialized-variables.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/implicit-calls-to-library-routines.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/layout-of-source-language-data-types.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/position-independent-code.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/register-usage.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/stack-layout-and-calling-conventions.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/stack-layout-and-calling-conventions/basic-stack-layout.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/stack-layout-and-calling-conventions/caller-saves-register-allocation.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/stack-layout-and-calling-conventions/exception-handling-support.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/stack-layout-and-calling-conventions/passing-function-arguments-on-the-stack.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/stack-layout-and-calling-conventions/registers-that-address-the-stack-frame.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/support-for-nested-functions.rst:
	  Add trailing newline.
	* doc/gccint/target-macros/the-global-targetm-variable.rst:
	  Add trailing newline.
	* doc/gccint/target-makefile-fragments.rst:
	  Add trailing newline.
	* doc/gccint/testsuites.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/ada-language-testsuites.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/c-language-testsuites.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/directives-used-within-dejagnu-tests.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/directives-used-within-dejagnu-tests/commands-for-use-in-dg-final.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/directives-used-within-dejagnu-tests/features-for-dg-add-options.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/directives-used-within-dejagnu-tests/keywords-describing-target-attributes.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/directives-used-within-dejagnu-tests/selecting-targets-to-which-a-test-applies.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/directives-used-within-dejagnu-tests/syntax-and-descriptions-of-test-directives.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/directives-used-within-dejagnu-tests/variants-of-dg-require-support.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/idioms-used-in-testsuite-code.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/support-for-testing-binary-compatibility.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/support-for-testing-gcov.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/support-for-testing-gimple-passes.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/support-for-testing-link-time-optimizations.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/support-for-testing-profile-directed-optimizations.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/support-for-testing-rtl-passes.rst:
	  Add trailing newline.
	* doc/gccint/testsuites/support-for-torture-testing-using-multiple-options.rst:
	  Add trailing newline.
	* doc/gccint/the-gcc-low-level-runtime-library.rst:
	  Add trailing newline.
	* doc/gccint/the-gcc-low-level-runtime-library/language-independent-routines-for-exception-handling.rst:
	  Add trailing newline.
	* doc/gccint/the-gcc-low-level-runtime-library/miscellaneous-runtime-library-routines.rst:
	  Add trailing newline.
	* doc/gccint/the-gcc-low-level-runtime-library/routines-for-decimal-floating-point-emulation.rst:
	  Add trailing newline.
	* doc/gccint/the-gcc-low-level-runtime-library/routines-for-fixed-point-fractional-emulation.rst:
	  Add trailing newline.
	* doc/gccint/the-gcc-low-level-runtime-library/routines-for-floating-point-emulation.rst:
	  Add trailing newline.
	* doc/gccint/the-gcc-low-level-runtime-library/routines-for-integer-arithmetic.rst:
	  Add trailing newline.
	* doc/gccint/the-language.rst:
	  Add trailing newline.
	* doc/gccint/user-experience-guidelines.rst:
	  Add trailing newline.
	* doc/install/binaries.rst:
	  Add trailing newline.
	* doc/install/building.rst:
	  Add trailing newline.
	* doc/install/building/building-a-cross-compiler.rst:
	  Add trailing newline.
	* doc/install/building/building-a-native-compiler.rst:
	  Add trailing newline.
	* doc/install/building/building-in-parallel.rst:
	  Add trailing newline.
	* doc/install/building/building-the-ada-compiler.rst:
	  Add trailing newline.
	* doc/install/building/building-the-d-compiler.rst:
	  Add trailing newline.
	* doc/install/building/building-with-profile-feedback.rst:
	  Add trailing newline.
	* doc/install/configuration.rst:
	  Add trailing newline.
	* doc/install/copyright.rst:
	  Add trailing newline.
	* doc/install/downloading-gcc.rst:
	  Add trailing newline.
	* doc/install/final-installation.rst:
	  Add trailing newline.
	* doc/install/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/install/host-target-specific-installation-notes-for-gcc.rst:
	  Add trailing newline.
	* doc/install/how-can-you-run-the-testsuite-on-selected-tests.rst:
	  Add trailing newline.
	* doc/install/how-to-interpret-test-results.rst:
	  Add trailing newline.
	* doc/install/index.rst:
	  Add trailing newline.
	* doc/install/indices-and-tables.rst:
	  Add trailing newline.
	* doc/install/installing-gcc.rst:
	  Add trailing newline.
	* doc/install/passing-options-and-running-multiple-testsuites.rst:
	  Add trailing newline.
	* doc/install/prerequisites.rst:
	  Add trailing newline.
	* doc/install/submitting-test-results.rst:
	  Add trailing newline.
	* doc/install/testing.rst:
	  Add trailing newline.

gcc/fortran/ChangeLog:

	* doc/gfc-internals/code-that-interacts-with-the-user.rst:
	  Add trailing newline.
	* doc/gfc-internals/command-line-options.rst:
	  Add trailing newline.
	* doc/gfc-internals/copyright.rst:
	  Add trailing newline.
	* doc/gfc-internals/error-handling.rst:
	  Add trailing newline.
	* doc/gfc-internals/frontend-data-structures.rst:
	  Add trailing newline.
	* doc/gfc-internals/generating-the-intermediate-language-for-later-stages.rst:
	  Add trailing newline.
	* doc/gfc-internals/generating-the-intermediate-language-for-later-stages/accessing-declarations.rst:
	  Add trailing newline.
	* doc/gfc-internals/generating-the-intermediate-language-for-later-stages/basic-data-structures.rst:
	  Add trailing newline.
	* doc/gfc-internals/generating-the-intermediate-language-for-later-stages/converting-expressions-to-tree.rst:
	  Add trailing newline.
	* doc/gfc-internals/generating-the-intermediate-language-for-later-stages/translating-statements.rst:
	  Add trailing newline.
	* doc/gfc-internals/gfccode.rst:
	  Add trailing newline.
	* doc/gfc-internals/gfcexpr.rst:
	  Add trailing newline.
	* doc/gfc-internals/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/gfc-internals/index.rst:
	  Add trailing newline.
	* doc/gfc-internals/indices-and-tables.rst:
	  Add trailing newline.
	* doc/gfc-internals/internals-of-fortran-2003-oop-features.rst:
	  Add trailing newline.
	* doc/gfc-internals/introduction.rst:
	  Add trailing newline.
	* doc/gfc-internals/symbol-versioning.rst:
	  Add trailing newline.
	* doc/gfc-internals/the-libgfortran-runtime-library.rst:
	  Add trailing newline.
	* doc/gfc-internals/type-bound-operators.rst:
	  Add trailing newline.
	* doc/gfc-internals/type-bound-procedures.rst:
	  Add trailing newline.
	* doc/gfortran/about-gnu-fortran.rst:
	  Add trailing newline.
	* doc/gfortran/coarray-programming.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/asynchronous-i-o.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/data-consistency-and-durability.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/evaluation-of-logical-expressions.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/file-format-of-unformatted-sequential-files.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/file-operations-on-symbolic-links.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/files-opened-without-an-explicit-action=-specifier.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/internal-representation-of-logical-variables.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/kind-type-parameters.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/max-and-min-intrinsics-with-real-nan-arguments.rst:
	  Add trailing newline.
	* doc/gfortran/compiler-characteristics/thread-safety-of-the-runtime-library.rst:
	  Add trailing newline.
	* doc/gfortran/contributing.rst:
	  Add trailing newline.
	* doc/gfortran/contributors-to-gnu-fortran.rst:
	  Add trailing newline.
	* doc/gfortran/copyright.rst:
	  Add trailing newline.
	* doc/gfortran/extensions-implemented-in-gnu-fortran.rst:
	  Add trailing newline.
	* doc/gfortran/extensions-not-implemented-in-gnu-fortran.rst:
	  Add trailing newline.
	* doc/gfortran/extensions.rst:
	  Add trailing newline.
	* doc/gfortran/function-abi-documentation.rst:
	  Add trailing newline.
	* doc/gfortran/funding.rst:
	  Add trailing newline.
	* doc/gfortran/general-public-license-3.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-and-gcc.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/description.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/enable-and-customize-preprocessing.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/environment-variables-affecting-gfortran.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/influencing-runtime-behavior.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/influencing-the-linking-step.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/option-summary.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/options-controlling-fortran-dialect.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/options-for-code-generation-conventions.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/options-for-debugging-your-program-or-gnu-fortran.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/options-for-directory-search.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/options-for-interoperability-with-other-languages.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-command-options/options-to-request-or-suppress-errors-and-warnings.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-fortran-compiler-directives.rst:
	  Add trailing newline.
	* doc/gfortran/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/gfortran/index.rst:
	  Add trailing newline.
	* doc/gfortran/indices-and-tables.rst:
	  Add trailing newline.
	* doc/gfortran/interoperability-with-c.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-modules.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-modules/ieee-modules-ieeeexceptions-ieeearithmetic-and-ieeefeatures.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-modules/isocbinding.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-modules/isofortranenv.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-modules/openacc-module-openacc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-modules/openmp-modules-omplib-and-omplibkinds.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/abort.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/abs.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/access.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/achar.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/acos.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/acosd.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/acosh.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/adjustl.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/adjustr.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/aimag.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/alarm.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/all.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/allocated.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/and.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/any.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/asin.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/asind.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/asinh.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/associated.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atan.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atan2.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atan2d.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atanh.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicadd.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomiccas.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicdefine.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicfetchadd.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicfetchand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicfetchor.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicfetchxor.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicor.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicref.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/atomicxor.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/backtrace.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/besselj0.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/besselj1.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/besseljn.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/bessely0.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/bessely1.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/besselyn.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/bge.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/bgt.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/bitsize.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ble.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/blt.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/btest.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cassociated.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ceiling.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cfpointer.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cfprocpointer.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cfunloc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/chdir.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/chmod.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cloc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cmplx.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cobroadcast.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/comax.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/comin.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/commandargumentcount.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/compileroptions.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/compilerversion.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/complex.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/conjg.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/coreduce.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cos.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cosd.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cosh.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cosum.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cotan.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cotand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/count.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cputime.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/cshift.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/csizeof.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ctime.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dateandtime.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dble.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dcmplx.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/digits.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dim.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dotproduct.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dprod.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dreal.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dshiftl.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dshiftr.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/dtime.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/eoshift.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/epsilon.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/erf.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/erfc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/erfcscaled.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/etime.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/eventquery.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/executecommandline.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/exit.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/exp.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/exponent.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/extendstypeof.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fdate.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fget.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fgetc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/findloc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/floor.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/flush.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fnum.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fput.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fputc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fraction.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/free.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fseek.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/fstat.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ftell.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/gamma.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/gerror.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getarg.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getcommand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getcommandargument.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getcwd.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getenv.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getenvironmentvariable.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getgid.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getlog.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getpid.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/getuid.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/gmtime.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/hostnm.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/huge.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/hypot.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/iachar.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/iall.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/iand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/iany.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/iargc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ibclr.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ibits.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ibset.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ichar.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/idate.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ieor.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ierrno.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/imageindex.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/index.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/int2.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/int8.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/introduction-to-intrinsic-procedures.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ior.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/iparity.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/irand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/isatty.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/iscontiguous.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ishft.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ishftc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/isiostatend.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/isiostateor.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/isnan.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/itime.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/kill.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/kind.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lbound.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lcobound.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/leadz.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/len.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lentrim.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lge.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lgt.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/link.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lle.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/llt.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lnblnk.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/loc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/log.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/log10.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/loggamma.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/logical.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lshift.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/lstat.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ltime.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/malloc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/maskl.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/maskr.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/matmul.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/max.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/maxexponent.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/maxloc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/maxval.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/mclock.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/mclock8.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/merge.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/mergebits.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/min.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/minexponent.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/minloc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/minval.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/mod.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/modulo.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/movealloc.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/mvbits.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/nearest.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/newline.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/nint.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/norm2.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/not.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/null.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/numimages.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/or.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/pack.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/parity.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/perror.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/popcnt.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/poppar.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/precision.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/present.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/product.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/radix.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ran.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/rand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/randominit.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/randomnumber.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/randomseed.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/range.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/rank.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/rename.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/repeat.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/reshape.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/rrspacing.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/rshift.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sametypeas.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/scale.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/scan.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/secnds.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/second.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/selectedcharkind.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/selectedintkind.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/selectedrealkind.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/setexponent.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/shape.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/shifta.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/shiftl.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/shiftr.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sign.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/signal.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sin.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sind.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sinh.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/size.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sizeof.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sleep.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/spacing.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/spread.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sqrt.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/srand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/stat.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/storagesize.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/sum.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/symlnk.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/system.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/systemclock.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/tan.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/tand.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/tanh.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/thisimage.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/time.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/time8.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/tiny.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/trailz.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/transfer.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/transpose.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/trim.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ttynam.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ubound.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/ucobound.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/umask.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/unlink.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/unpack.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/verify.rst:
	  Add trailing newline.
	* doc/gfortran/intrinsic-procedures/xor.rst:
	  Add trailing newline.
	* doc/gfortran/introduction.rst:
	  Add trailing newline.
	* doc/gfortran/mixed-language-programming.rst:
	  Add trailing newline.
	* doc/gfortran/naming-and-argument-passing-conventions.rst:
	  Add trailing newline.
	* doc/gfortran/non-fortran-main-program.rst:
	  Add trailing newline.
	* doc/gfortran/projects.rst:
	  Add trailing newline.
	* doc/gfortran/runtime.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranconvertunit.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranerrorbacktrace.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranformattedbuffersize.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranlistseparator.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranoptionalplus.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranshowlocus.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranstderrunit.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranstdinunit.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranstdoutunit.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranunbufferedall.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranunbufferedpreconnected.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/gfortranunformattedbuffersize.rst:
	  Add trailing newline.
	* doc/gfortran/runtime/tmpdir.rst:
	  Add trailing newline.
	* doc/gfortran/standards.rst:
	  Add trailing newline.
	* doc/gfortran/type-and-enum-abi-documentation.rst:
	  Add trailing newline.

gcc/go/ChangeLog:

	* doc/c-interoperability.rst:
	  Add trailing newline.
	* doc/c-type-interoperability.rst:
	  Add trailing newline.
	* doc/compiler-directives.rst:
	  Add trailing newline.
	* doc/copyright.rst:
	  Add trailing newline.
	* doc/function-names.rst:
	  Add trailing newline.
	* doc/general-public-license-3.rst:
	  Add trailing newline.
	* doc/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/import-and-export.rst:
	  Add trailing newline.
	* doc/index.rst:
	  Add trailing newline.
	* doc/indices-and-tables.rst:
	  Add trailing newline.
	* doc/introduction.rst:
	  Add trailing newline.
	* doc/invoking-gccgo.rst:
	  Add trailing newline.

libgomp/ChangeLog:

	* doc/amd-radeon-gcn.rst:
	  Add trailing newline.
	* doc/copyright.rst:
	  Add trailing newline.
	* doc/cuda-streams-usage.rst:
	  Add trailing newline.
	* doc/enabling-openacc.rst:
	  Add trailing newline.
	* doc/enabling-openmp.rst:
	  Add trailing newline.
	* doc/first-invocation-nvidia-cublas-library-api.rst:
	  Add trailing newline.
	* doc/first-invocation-openacc-library-api.rst:
	  Add trailing newline.
	* doc/funding.rst:
	  Add trailing newline.
	* doc/general-public-license-3.rst:
	  Add trailing newline.
	* doc/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/implementation-status-and-implementation-defined-behavior.rst:
	  Add trailing newline.
	* doc/index.rst:
	  Add trailing newline.
	* doc/indices-and-tables.rst:
	  Add trailing newline.
	* doc/introduction.rst:
	  Add trailing newline.
	* doc/memory-allocation-with-libmemkind.rst:
	  Add trailing newline.
	* doc/nvptx.rst:
	  Add trailing newline.
	* doc/offload-target-specifics.rst:
	  Add trailing newline.
	* doc/openacc-environment-variables.rst:
	  Add trailing newline.
	* doc/openacc-environment-variables/accdevicenum.rst:
	  Add trailing newline.
	* doc/openacc-environment-variables/accdevicetype.rst:
	  Add trailing newline.
	* doc/openacc-environment-variables/accproflib.rst:
	  Add trailing newline.
	* doc/openacc-environment-variables/gccaccnotify.rst:
	  Add trailing newline.
	* doc/openacc-introduction.rst:
	  Add trailing newline.
	* doc/openacc-library-and-environment-variables.rst:
	  Add trailing newline.
	* doc/openacc-library-interoperability.rst:
	  Add trailing newline.
	* doc/openacc-profiling-interface.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accasynctest.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accasynctestall.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accattach.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/acccopyin.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/acccopyout.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/acccreate.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accdelete.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accdetach.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accdeviceptr.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accfree.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accgetcudastream.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accgetcurrentcudacontext.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accgetcurrentcudadevice.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accgetdevicenum.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accgetdevicetype.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accgetnumdevices.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accgetproperty.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/acchostptr.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accinit.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accispresent.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accmalloc.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accmapdata.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accmemcpyfromdevice.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accmemcpytodevice.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accondevice.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accpresentorcopyin.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accpresentorcreate.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accproflookup.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accprofregister.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accprofunregister.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accregisterlibrary.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accsetcudastream.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accsetdevicenum.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accsetdevicetype.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accshutdown.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accunmapdata.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accupdatedevice.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accupdateself.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accwait.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accwaitall.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accwaitallasync.rst:
	  Add trailing newline.
	* doc/openacc-runtime-library-routines/accwaitasync.rst:
	  Add trailing newline.
	* doc/openmp-context-selectors.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/gompcpuaffinity.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/gompdebug.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/gomprtemsthreadpools.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/gompspincount.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/gompstacksize.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompcancellation.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompdefaultdevice.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompdisplayenv.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompdynamic.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompmaxactivelevels.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompmaxtaskpriority.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompnested.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompnumteams.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompnumthreads.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompplaces.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompprocbind.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompschedule.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompstacksize.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/omptargetoffload.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompteamsthreadlimit.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompthreadlimit.rst:
	  Add trailing newline.
	* doc/openmp-environment-variables/ompwaitpolicy.rst:
	  Add trailing newline.
	* doc/openmp-implementation-specifics.rst:
	  Add trailing newline.
	* doc/openmp-implementation-status.rst:
	  Add trailing newline.
	* doc/openmp-implementation-status/openmp-45.rst:
	  Add trailing newline.
	* doc/openmp-implementation-status/openmp-50.rst:
	  Add trailing newline.
	* doc/openmp-implementation-status/openmp-51.rst:
	  Add trailing newline.
	* doc/openmp-implementation-status/openmp-52.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompdestroylock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompdestroynestlock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompfulfillevent.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetactivelevel.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetancestorthreadnum.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetcancellation.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetdefaultdevice.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetdevicenum.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetdynamic.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetinitialdevice.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetlevel.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetmaxactivelevels.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetmaxtaskpriority.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetmaxteams.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetmaxthreads.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetnested.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetnumdevices.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetnumprocs.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetnumteams.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetnumthreads.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetprocbind.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetschedule.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetsupportedactivelevels.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetteamnum.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetteamsize.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetteamsthreadlimit.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetthreadlimit.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetthreadnum.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetwtick.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompgetwtime.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompinfinal.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompinitlock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompinitnestlock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompinparallel.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompisinitialdevice.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetdefaultdevice.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetdynamic.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetlock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetmaxactivelevels.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetnested.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetnestlock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetnumteams.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetnumthreads.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetschedule.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompsetteamsthreadlimit.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/omptestlock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/omptestnestlock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompunsetlock.rst:
	  Add trailing newline.
	* doc/openmp-runtime-library-routines/ompunsetnestlock.rst:
	  Add trailing newline.
	* doc/reporting-bugs.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-atomic-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-barrier-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-critical-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-firstprivate-lastprivate-copyin-and-copyprivate-clauses.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-flush-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-for-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-master-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-openaccs-parallel-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-ordered-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-parallel-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-private-clause.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-reduction-clause.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-sections-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-single-construct.rst:
	  Add trailing newline.
	* doc/the-libgomp-abi/implementing-threadprivate-construct.rst:
	  Add trailing newline.

libiberty/ChangeLog:

	* doc/bsd.rst:
	  Add trailing newline.
	* doc/copyright.rst:
	  Add trailing newline.
	* doc/extensions.rst:
	  Add trailing newline.
	* doc/function-variable-and-macro-listing.rst:
	  Add trailing newline.
	* doc/index.rst:
	  Add trailing newline.
	* doc/indices-and-tables.rst:
	  Add trailing newline.
	* doc/introduction.rst:
	  Add trailing newline.
	* doc/lesser-general-public-license-2.1.rst:
	  Add trailing newline.
	* doc/overview.rst:
	  Add trailing newline.
	* doc/replacement-functions.rst:
	  Add trailing newline.
	* doc/supplemental-functions.rst:
	  Add trailing newline.
	* doc/using.rst:
	  Add trailing newline.

libitm/ChangeLog:

	* doc/c-c++-language-constructs-for-tm.rst:
	  Add trailing newline.
	* doc/copyright.rst:
	  Add trailing newline.
	* doc/enabling-libitm.rst:
	  Add trailing newline.
	* doc/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/index.rst:
	  Add trailing newline.
	* doc/indices-and-tables.rst:
	  Add trailing newline.
	* doc/internals.rst:
	  Add trailing newline.
	* doc/locking-conventions.rst:
	  Add trailing newline.
	* doc/nesting-flat-vs-closed.rst:
	  Add trailing newline.
	* doc/the-libitm-abi.rst:
	  Add trailing newline.
	* doc/the-libitm-abi/function-list.rst:
	  Add trailing newline.
	* doc/the-libitm-abi/future-enhancements-to-the-abi.rst:
	  Add trailing newline.
	* doc/the-libitm-abi/library-design-principles.rst:
	  Add trailing newline.
	* doc/the-libitm-abi/memory-model.rst:
	  Add trailing newline.
	* doc/the-libitm-abi/non-objectives.rst:
	  Add trailing newline.
	* doc/the-libitm-abi/objectives.rst:
	  Add trailing newline.
	* doc/the-libitm-abi/sample-code.rst:
	  Add trailing newline.
	* doc/the-libitm-abi/types-and-macros-list.rst:
	  Add trailing newline.
	* doc/tm-methods-and-method-groups.rst:
	  Add trailing newline.

libquadmath/ChangeLog:

	* doc/copyright.rst:
	  Add trailing newline.
	* doc/gnu-free-documentation-license.rst:
	  Add trailing newline.
	* doc/i-o-library-routines.rst:
	  Add trailing newline.
	* doc/index.rst:
	  Add trailing newline.
	* doc/indices-and-tables.rst:
	  Add trailing newline.
	* doc/introduction.rst:
	  Add trailing newline.
	* doc/math-library-routines.rst:
	  Add trailing newline.
	* doc/quadmathsnprintf.rst:
	  Add trailing newline.
	* doc/reporting-bugs.rst:
	  Add trailing newline.
	* doc/strtoflt128.rst:
	  Add trailing newline.
	* doc/typedef-and-constants.rst:
	  Add trailing newline.
2022-11-09 13:58:08 +01:00