From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1386) id AB5C93DDA655; Mon, 19 Dec 2022 08:36:42 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org AB5C93DDA655 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jan Beulich To: bfd-cvs@sourceware.org, gdb-cvs@sourceware.org Subject: [binutils-gdb] gprofng/testsuite: correct line continuation in endcases.c X-Act-Checkin: binutils-gdb X-Git-Author: Jan Beulich X-Git-Refname: refs/heads/master X-Git-Oldrev: 6cafa8782485310b99b5f9963ec5e030b0e18bad X-Git-Newrev: 08b50e1e03b27950730f3136eb311962d0deec14 Message-Id: <20221219083642.AB5C93DDA655@sourceware.org> Date: Mon, 19 Dec 2022 08:36:42 +0000 (GMT) X-BeenThere: binutils-cvs@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Binutils-cvs mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Dec 2022 10:32:26 -0000 https://sourceware.org/git/gitweb.cgi?p=3Dbinutils-gdb.git;h=3D08b50e1e03b2= 7950730f3136eb311962d0deec14 commit 08b50e1e03b27950730f3136eb311962d0deec14 Author: Jan Beulich Date: Mon Dec 19 09:35:37 2022 +0100 gprofng/testsuite: correct line continuation in endcases.c =20 A backslash used to indicate line continuation (in a macro definition here) is not supposed to be followed by blanks or other white space; the end-of-line indicator is to follow immediately. Diff: --- gprofng/testsuite/gprofng.display/synprog/endcases.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gprofng/testsuite/gprofng.display/synprog/endcases.c b/gprofng= /testsuite/gprofng.display/synprog/endcases.c index 5f9fb434d18..68482e3d172 100644 --- a/gprofng/testsuite/gprofng.display/synprog/endcases.c +++ b/gprofng/testsuite/gprofng.display/synprog/endcases.c @@ -52,7 +52,7 @@ int x2M =3D 2000000; int x8M =3D 8000000; =20 /* define a macro that burns CPU time */ -#define burncpu(nn) \=20 +#define burncpu(nn) \ x =3D 0; \ for (j =3D 0; j < (nn * x8M); j++) { \ x =3D x + 1; \