From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1851) id F0A313857BAE; Tue, 25 Oct 2022 04:24:21 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org F0A313857BAE DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1666671861; bh=jWGUUz1Sxa9hHzRvf5BP1Z2tZtbs9TpqNHR7o9172Mc=; h=From:To:Subject:Date:From; b=h7CaIReX3nkZI/ie2zL8XsjkGaCTqTBYoenARCxXL/Etql/9S+8vELGB+sb8rsfJn YX1HIeeHp5iOzOOxKcvHdsNIcj1ZXHpf3Gur+yBRJIVp297vRuPsDYX/OuaEadSIZz vY5GlcYZLBUyfx/l6KLM//SA6IjobygevFh1gfSc= MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" From: Martin Liska To: gcc-cvs@gcc.gnu.org Subject: [gcc r13-3472] i386: fix pedantic warning X-Act-Checkin: gcc X-Git-Author: Martin Liska X-Git-Refname: refs/heads/master X-Git-Oldrev: 4e939ae1cfa9ce80c15bc01f3906fd2314dd6296 X-Git-Newrev: f3f000b7689ce9eb6364808072025672af1e4e1b Message-Id: <20221025042421.F0A313857BAE@sourceware.org> Date: Tue, 25 Oct 2022 04:24:21 +0000 (GMT) List-Id: https://gcc.gnu.org/g:f3f000b7689ce9eb6364808072025672af1e4e1b commit r13-3472-gf3f000b7689ce9eb6364808072025672af1e4e1b Author: Martin Liska Date: Tue Oct 25 06:16:03 2022 +0200 i386: fix pedantic warning PR target/107364 gcc/ChangeLog: * common/config/i386/i386-cpuinfo.h (enum processor_vendor): Fix pedantic warning. Diff: --- 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. */