From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by sourceware.org (Postfix) with ESMTPS id 315A43858D1E for ; Wed, 21 Dec 2022 17:41:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 315A43858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=marvell.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=marvell.com Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.17.1.19/8.17.1.19) with ESMTP id 2BLEp8S3023860 for ; Wed, 21 Dec 2022 09:41:55 -0800 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-transfer-encoding : content-type; s=pfpt0220; bh=v4/2x3VAMexUQzWCEXX5CJiE9Gvg1hoz0cXHs7Bez2Y=; b=UYpaaRtGUVwc+qCa9jCLjv+5Z9XCRtEMeLxFqRcb4J8ptjGEf48zDPaQ3v17wk+iNJ0N k+urI8STTJHLGPqczJ7x6SYPkxuj4RPNZM7I9KEtfmsxMW60yjvv+vxUqeu2ag2vgn/3 xAGYW0uOpi+XhXhtiX7RbDWKkH0C5fMemjmX+2gP220v7t198wJs/Q5LZTeKxdPHlqGj 7SPBpAAqG+rnzST/kOj1r4SOpzgYy9tbEWtJHjcK9QNzgPvYwoYINc0KQPt1NLADONvl 6yGHBA3o8u/AMUkdLcOaWhHa6Dg/qVYzMFDiw3+2KLBTLeRNfRvCqWW23rXBS/TQQeZg pQ== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com (PPS) with ESMTPS id 3mksuxbm3b-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Wed, 21 Dec 2022 09:41:55 -0800 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.42; Wed, 21 Dec 2022 09:41:53 -0800 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.42 via Frontend Transport; Wed, 21 Dec 2022 09:41:53 -0800 Received: from vpnclient.wrightpinski.org.com (unknown [10.69.242.42]) by maili.marvell.com (Postfix) with ESMTP id 52B103F7070; Wed, 21 Dec 2022 09:41:53 -0800 (PST) From: Andrew Pinski To: CC: Andrew Pinski Subject: [PATCH] Fix compiling of top.c Date: Wed, 21 Dec 2022 09:41:43 -0800 Message-ID: <20221221174143.503105-1-apinski@marvell.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-GUID: 1ODEOtEltPKIfprEssUOG44iqFG9iCDV X-Proofpoint-ORIG-GUID: 1ODEOtEltPKIfprEssUOG44iqFG9iCDV X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.205,Aquarius:18.0.923,Hydra:6.0.545,FMLib:17.11.122.1 definitions=2022-12-21_10,2022-12-21_01,2022-06-22_01 X-Spam-Status: No, score=-14.5 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE,SPF_NONE,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: When I moved my last patch forward, somehow I missed removing the #endif for the HAVE_LIBMPFR case. Committed as obvious after a quick build. gdb/ChangeLog: * top.c: Remove the extra #endif which was missed. --- gdb/top.c | 1 - 1 file changed, 1 deletion(-) diff --git a/gdb/top.c b/gdb/top.c index 26e10c7271f..565b455a020 100644 --- a/gdb/top.c +++ b/gdb/top.c @@ -1581,7 +1581,6 @@ This GDB was configured as follows:\n\ ")); #endif -#endif #if HAVE_LIBXXHASH gdb_printf (stream, _("\ --with-xxhash\n\ -- 2.31.1