From: Tobias Burnus Date: Wed, 13 Jul 2022 09:06:28 +0000 (+0200) Subject: libgomp: Add tailing \n to gomp_debug X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=89dd8390cdf18b02317b18edd4419b7b321b7040;p=thirdparty%2Fgcc.git libgomp: Add tailing \n to gomp_debug Contrary to gomp_{error,warning,fatal}, no tailing '\n' is added with gomp_debug; only affected was a 'requires'-related output. libgomp/ChangeLog: * target.c (gomp_target_init): Added tailing '\n' to gomp_debug. (cherry picked from commit 220bef460153a0296e947f16492d35e67b1b5b22) --- diff --git a/libgomp/ChangeLog.omp b/libgomp/ChangeLog.omp index fcd910989747..ef977cab3d38 100644 --- a/libgomp/ChangeLog.omp +++ b/libgomp/ChangeLog.omp @@ -1,3 +1,10 @@ +2022-07-13 Tobias Burnus + + Backport from mainline: + 2022-07-12 Tobias Burnus + + * target.c (gomp_target_init): Added tailing '\n' to gomp_debug. + 2022-07-08 Tobias Burnus Backport from mainline: diff --git a/libgomp/target.c b/libgomp/target.c index 436547b97e74..997b2aa2f800 100644 --- a/libgomp/target.c +++ b/libgomp/target.c @@ -4498,7 +4498,7 @@ gomp_target_init (void) name[cur_len] = '\0'; gomp_debug (1, "%s devices present but 'omp requires %s' " - "cannot be fulfilled", name, buf); + "cannot be fulfilled\n", name, buf); free (name); } }