From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mailout2.rbg.tum.de (mailout2.rbg.tum.de [131.159.0.202]) by sourceware.org (Postfix) with ESMTPS id 14FA33858C54 for ; Fri, 12 May 2023 15:19:50 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 14FA33858C54 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=in.tum.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=in.tum.de Received: from mailrelay1.rbg.tum.de (mailrelay1.in.tum.de [IPv6:2a09:80c0:254::14]) by mailout2.rbg.tum.de (Postfix) with ESMTPS id C15444C034F for ; Fri, 12 May 2023 17:19:48 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=in.tum.de; s=20220209; t=1683904788; bh=alUO4Zp1qmdzAF2BZ+3f2c5n5MQRwPdis6yC6YS/5EU=; h=Date:From:Subject:To:From; b=Si2ZfFPmxVOu3I1P/mCW+j76YH5nARAVgUZ+Z2LbIPwzHj7HkkM56lZhGqSsGtxxc wr2oi9qDZYR0R2jN8iyoUgo1tgEuqhx9Icxg5YxokDK5/7bF9kwkietqd/N6WI+7xg 7PE27opOPvlHrlV71ogfWMcqrSd7R9gcUr9MZ4jq4avDImiGC9n1T7cNQMW50w4H4S jYGjRgqpDrDNUg/a2p+nvI6pM1B7AX6aWeaS4JNjvZ/AeQl6yf/LD8Qzp61izvDSg+ cQRqG/w1E1g5wxWCwsjAV8KI3CsRmpwOwqlCP9Y2eywbUY9KiPlI3Znq3iB1H7uw75 vkobbcH97C4Dw== Received: by mailrelay1.rbg.tum.de (Postfix, from userid 112) id BCAE819E; Fri, 12 May 2023 17:19:48 +0200 (CEST) Received: from mailrelay1.rbg.tum.de (localhost [127.0.0.1]) by mailrelay1.rbg.tum.de (Postfix) with ESMTP id 61D93CD for ; Fri, 12 May 2023 17:19:48 +0200 (CEST) Received: from mail.in.tum.de (vmrbg426.in.tum.de [131.159.0.73]) by mailrelay1.rbg.tum.de (Postfix) with ESMTPS id 5E8FA24 for ; Fri, 12 May 2023 17:19:48 +0200 (CEST) Received: by mail.in.tum.de (Postfix, from userid 112) id 58E8A4A02F1; Fri, 12 May 2023 17:19:48 +0200 (CEST) Received: (Authenticated sender: neumann) by mail.in.tum.de (Postfix) with ESMTPSA id CE1F04A01F3 for ; Fri, 12 May 2023 17:19:47 +0200 (CEST) (Extended-Queue-bit xtech_op@fff.in.tum.de) Message-ID: <13233832-d564-6007-f890-53e7e6df2ca6@in.tum.de> Date: Fri, 12 May 2023 17:19:47 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0 From: Thomas Neumann Subject: PING: [PATCH] release the sorted FDE array when deregistering a frame [PR109685] To: gcc-patches@gcc.gnu.org Content-Language: en-US Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.9 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,KAM_SHORT,SPF_HELO_NONE,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 List-Id: Summary: The old linear scan logic called free while searching the list of frames. The atomic fast path finds the frame quickly, but forgot the free call. This patches adds the missing free. Bugzilla #109685. See: https://gcc.gnu.org/pipermail/gcc-patches/2023-May/617245.html Best Thomas