From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp-out1.suse.de (smtp-out1.suse.de [IPv6:2001:67c:2178:6::1c]) by sourceware.org (Postfix) with ESMTPS id 50A073858D28 for ; Thu, 26 Jan 2023 15:48:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 50A073858D28 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 85D9921ADE; Thu, 26 Jan 2023 15:48:32 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_rsa; t=1674748112; 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=jHtCDyXu82eNxWdxmJSo4+kSQnmqNyfPopjyR48mxkM=; b=e/b3qOWENcSSUE0zoRAgS94g2ivjgmtBg9Iaxo91fRmCBD7rdr9gRZLx4s1sOqhHboTofY kq5bTHq2t8sfKU+6DjH30lhD+43tyLEhf063YeGYU1IEMsbJrXQh21UB64zOUqtEvYMtxI lzig48Mh0S/21DJZg7ohhAaJTQVbj/w= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.de; s=susede2_ed25519; t=1674748112; 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=jHtCDyXu82eNxWdxmJSo4+kSQnmqNyfPopjyR48mxkM=; b=ApkyMeog7UTH5hIAIDZv3qqgMlEzNpYkBsu/IcDI0SZFO9c7CGH+dH6cA7/OxLXkzljLie FxL52cStE4hq3NBg== 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 71F47139B3; Thu, 26 Jan 2023 15:48:32 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id YlaLGtCg0mORMAAAMHmgww (envelope-from ); Thu, 26 Jan 2023 15:48:32 +0000 Message-ID: <0e639a56-144c-7d0b-c100-a9a6253d7075@suse.de> Date: Thu, 26 Jan 2023 16:48:32 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.6.1 Subject: Re: [pushed] [gdb/testsuite] Add and use is_x86_64_m64_target Content-Language: en-US From: Tom de Vries To: Tom Tromey , Tom de Vries via Gdb-patches References: <20230125200626.29340-1-tdevries@suse.de> <20230125200626.29340-4-tdevries@suse.de> <87zga6tihb.fsf@tromey.com> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-7.0 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,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 1/26/23 10:17, Tom de Vries wrote: > ./gdb.base/jit-reader.exp: >   require {is_any_target "i?86-*-*" "x86_64-*-*"} is_lp64_target > > ./gdb.arch/amd64-i386-address.exp: >   require {is_any_target "x86_64-*-*" "i?86-*-*"} is_lp64_target And, doesn't is_lp64_target imply that we're not on an "i?86-*-*" ? Am I missing something here? Otherwise, we can just use is_x86_64_m64_target here as well. Thanks, - Tom