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 8F998385829A for ; Tue, 25 Oct 2022 04:23:55 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 8F998385829A Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=suse.cz Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=suse.cz 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 45CDB21F77 for ; Tue, 25 Oct 2022 04:23:54 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_rsa; t=1666671834; 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=ucikMQs3i0hogOkkszF1ly/+JLkwSEHVWCx6xke5bfY=; b=N/22JHMl3vSqHpf7hBmXukuFoGPsNecMWuIh9FeOgQG2GJAUOtvGu20vpwUdgMjWfe1Ndi TlIu3mpJWDjlWYow22n8UT7bvANx8fB2cOWS+Lut/pxPiwfqPIZdGDvU39+GHOOVXO3Qrn 3z4we2STh6Q5B0R+S5qOF5e8FngAJAw= DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=suse.cz; s=susede2_ed25519; t=1666671834; 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=ucikMQs3i0hogOkkszF1ly/+JLkwSEHVWCx6xke5bfY=; b=354gAK1se241rAfbmc6FTFPp8nO1w9Fruq7cev+y2WxZa7yoUh9Bx7K4T7SsEnq8NhWN4p zsDK7w3Y5zENRPBg== 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 360F1134CA for ; Tue, 25 Oct 2022 04:23:54 +0000 (UTC) Received: from dovecot-director2.suse.de ([192.168.254.65]) by imap2.suse-dmz.suse.de with ESMTPSA id 4LslDNpkV2P7LgAAMHmgww (envelope-from ) for ; Tue, 25 Oct 2022 04:23:54 +0000 Message-ID: <766301d1-6219-c5ac-796b-a3c507912cdd@suse.cz> Date: Tue, 25 Oct 2022 06:23:53 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.0 From: =?UTF-8?Q?Martin_Li=c5=a1ka?= Subject: [PATCH][pushed] i386: fix pedantic warning To: gcc-patches@gcc.gnu.org References: <202210250339.29P3drd42145348@shliclel314.sh.intel.com> Content-Language: en-US In-Reply-To: <202210250339.29P3drd42145348@shliclel314.sh.intel.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-11.9 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,GIT_PATCH_0,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: Pushed. Sorry for the stupid error, I noticed the test became UNRESOLVED, but I forgot to investigate that. Cheers, Martin PR target/107364 gcc/ChangeLog: * common/config/i386/i386-cpuinfo.h (enum processor_vendor): Fix pedantic warning. --- gcc/common/config/i386/i386-cpuinfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/common/config/i386/i386-cpuinfo.h b/gcc/common/config/i386/i386-cpuinfo.h index 586a1a2d0f6..761af2715f0 100644 --- a/gcc/common/config/i386/i386-cpuinfo.h +++ b/gcc/common/config/i386/i386-cpuinfo.h @@ -37,7 +37,7 @@ enum processor_vendor /* Maximum values must be at the end of this enum. */ VENDOR_MAX, - BUILTIN_VENDOR_MAX = VENDOR_OTHER, + BUILTIN_VENDOR_MAX = VENDOR_OTHER }; /* Any new types or subtypes have to be inserted at the end. */ -- 2.38.0