From patchwork Tue Jul 12 09:18:46 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Tobias Burnus X-Patchwork-Id: 1655259 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=gcc.gnu.org (client-ip=8.43.85.97; helo=sourceware.org; envelope-from=gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by bilbo.ozlabs.org (Postfix) with ESMTPS id 4LhwDX30KFz9sB4 for ; Tue, 12 Jul 2022 19:19:06 +1000 (AEST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 779EB3858295 for ; Tue, 12 Jul 2022 09:19:04 +0000 (GMT) X-Original-To: gcc-patches@gcc.gnu.org Delivered-To: gcc-patches@gcc.gnu.org Received: from esa1.mentor.iphmx.com (esa1.mentor.iphmx.com [68.232.129.153]) by sourceware.org (Postfix) with ESMTPS id D648C3858283 for ; Tue, 12 Jul 2022 09:18:52 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D648C3858283 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=codesourcery.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=mentor.com X-IronPort-AV: E=Sophos;i="5.92,265,1650960000"; d="diff'?scan'208";a="81342484" Received: from orw-gwy-01-in.mentorg.com ([192.94.38.165]) by esa1.mentor.iphmx.com with ESMTP; 12 Jul 2022 01:18:51 -0800 IronPort-SDR: sdAF+niSS+3Y4R2M/9K5Ji/qbvMCKFxOakN2htrV3e4XSG43lPOHamnpMgP+yBylTnkyBH+jQT O0HQSC+jIASt8dQSmeNOOxeSx8n9cH5f16A01ayb++l5IlCyMl8+FjWM7BVn9WC1q3tvQge16v sMh97+6f0ElPoJ64QM5A31lIjvS4sAgmudpRvFPyYTDTkNQM3is7Gf+Ez1baHJ6E06u35YI49Q pd71Y8qvIBOK1jJuvFQDP+f2z+u8esScslJ556hfIVrs7dEjCOad8IIqGH012cUycM8TOD7eZq uCQ= Message-ID: <8aab8a6a-5577-cde1-0278-1279c9ca5078@codesourcery.com> Date: Tue, 12 Jul 2022 11:18:46 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.11.0 Content-Language: en-US To: gcc-patches From: Tobias Burnus Subject: [committed] libgomp: Add tailing \n to gomp_debug X-Originating-IP: [137.202.0.90] X-ClientProxiedBy: SVR-IES-MBX-07.mgc.mentorg.com (139.181.222.7) To svr-ies-mbx-12.mgc.mentorg.com (139.181.222.12) X-Spam-Status: No, score=-11.4 required=5.0 tests=BAYES_00, GIT_PATCH_0, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: gcc-patches-bounces+incoming=patchwork.ozlabs.org@gcc.gnu.org Sender: "Gcc-patches" A recently added gomp_debug (for 'requires') missed a tailing '\n'. I missed to add it, when changing gomp_warning (which always outputs an '\n') to gomp_debug. Committed as r13-1613-g220bef460153a0296e947f16492d35e67b1b5b22 Tobias ----------------- Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955 commit 220bef460153a0296e947f16492d35e67b1b5b22 Author: Tobias Burnus Date: Tue Jul 12 11:10:50 2022 +0200 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. --- libgomp/target.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libgomp/target.c b/libgomp/target.c index 86f9d3050d9..135db1d88ab 100644 --- a/libgomp/target.c +++ b/libgomp/target.c @@ -4212,7 +4212,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); } }