From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [195.135.220.28]) by sourceware.org (Postfix) with ESMTPS id A67093858D1E for ; Tue, 14 Feb 2023 22:36:29 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org A67093858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=suse.de Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.de Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by smtp-out1.suse.de (Postfix) with ESMTPS id CFD3121AE0; Tue, 14 Feb 2023 22:36:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1676414188; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=2jD6UL0KDRb+yhq/oNR2t6QAwrpHLN3NNNjudY6Fqsc=; b=LSA8ViZQWJT/ekzrVab0jc2G37iwBAxn4ExFx4gQGr2Uwm2I/hn0zCzy8e0y8CnA6B4L1r pICpXCsAf4jhWhVFOm6Kn1N+oNKqqFJmx9p8loeC7+wLvm/n66DdNFyF028YnZJOlYQYTD PQGo7JMnvivqLwrnvF+cxQkWVMMKnG4= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1676414188; h=from:from:reply-to:date:date:message-id:message-id:to:to:cc: mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=2jD6UL0KDRb+yhq/oNR2t6QAwrpHLN3NNNjudY6Fqsc=; b=aT50hNGczlfQuHQltSv/M0GxdVifB1EYzjsIMeiARMmdz+9D7FuB2DtV3HPi04XAWeYHCN xRL0LXsyKXyY2dDg== Received: from imap2.suse-dmz.suse.de (imap2.suse-dmz.suse.de [192.168.254.74]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (P-521) server-digest SHA512) (No client certificate requested) by imap2.suse-dmz.suse.de (Postfix) with ESMTPS id BC5AC138E3; Tue, 14 Feb 2023 22:36:28 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id ds3RK+wM7GM8GQAAMHmgww (envelope-from ); Tue, 14 Feb 2023 22:36:28 +0000 Message-ID: <9aac3a4f-de36-6dec-d4ea-c4b7c84ac75c@suse.de> Date: Tue, 14 Feb 2023 23:36:29 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.7.1 Subject: Re: [PATCH v2 1/5] [gdb/symtab] Factor out compunit_epilogue_unwind_valid Content-Language: en-US To: Tom Tromey , Tom de Vries via Gdb-patches References: <20230213142309.24366-1-tdevries@suse.de> <20230213142309.24366-2-tdevries@suse.de> <87a61gtf4r.fsf@tromey.com> From: Tom de Vries In-Reply-To: <87a61gtf4r.fsf@tromey.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,KAM_SHORT,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,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: On 2/14/23 16:56, Tom Tromey wrote: >>>>>> "Tom" == Tom de Vries via Gdb-patches writes: > > Tom> Factor out compunit_epilogue_unwind_valid from both > Tom> amd64_stack_frame_destroyed_p and i386_stack_frame_destroyed_p. NFC. > > What does NFC means? > No Functional Changes. I guess I picked this up when working on clang/llvm. Mentioned here: https://llvm.org/docs/Lexicon.html#n . > Tom> Also add a comment in the new function about the assumption that in absence of > Tom> producer information, epilogue unwind info is invalid. > > Thanks. > Approved-By: Tom Tromey > Thanks. - Tom