From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 62099 invoked by alias); 12 Feb 2020 17:19:14 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 62091 invoked by uid 89); 12 Feb 2020 17:19:14 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy=H*i:sk:3bc597b, H*f:sk:3bc597b, H*RU:209.85.167.193, HX-Spam-Relays-External:209.85.167.193 X-HELO: mail-oi1-f193.google.com Received: from mail-oi1-f193.google.com (HELO mail-oi1-f193.google.com) (209.85.167.193) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 12 Feb 2020 17:19:12 +0000 Received: by mail-oi1-f193.google.com with SMTP id l9so2753890oii.5 for ; Wed, 12 Feb 2020 09:19:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=gSY4logg9CQZxtICh5i0k0AvMSXGRD1WrSKFF4jzBCw=; b=hkTLPBZvkRxhYf27CfAhIiInSkP07O5p2DYSd48KYzcDM3iEFiV0PqKr9aj96HRY6u wbf5WmqkDISF+q5ojuVleFMRl2Op8kQs0lkTGqR7CQwKcwoNRCPoMHjb8tkE+28WBGhY a/mNGAqmkIdm3/7jxFLhtERHBQhW3108OTrTLH3n0P/DY4+CSa4pQdFVZpZDJfPC3OL/ pbSiNrWoBB9LVMUzJvH2JMtkNkUErd+PSg3yrxIFkY33WrX92Bu107+xofHTjZB4Zw+3 Ta7BfnSY9DkIGI2XZOlQlWSpMhN1dK8dnv1Av+s/TSnA1DQBz3DDqaxY3P3wjwi9jVyM BXug== MIME-Version: 1.0 References: <3bc597bb-10f9-80f9-8e00-f28aeb2eea77@suse.com> In-Reply-To: <3bc597bb-10f9-80f9-8e00-f28aeb2eea77@suse.com> From: "H.J. Lu" Date: Wed, 12 Feb 2020 17:19:00 -0000 Message-ID: Subject: Re: [PATCH] x86: fix SSE4a dependencies of ".arch .nosse*" To: Jan Beulich Cc: "binutils@sourceware.org" Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2020-02/txt/msg00228.txt.bz2 On Wed, Feb 12, 2020 at 9:08 AM Jan Beulich wrote: > > Since ".arch sse4a" enables SSE3 and earlier, disabling SSE3 should also > disable SSE4a. And as per its name, ".arch .nosse4" should also do so. > > gas/ > 2020-02-XX Jan Beulich > > * config/tc-i386.c (cpu_noarch): Use CPU_ANY_SSE4_FLAGS in > "nosse4" entry. > > opcodes/ > 2020-02-XX Jan Beulich > > * i386-gen.c (cpu_flag_init): Move CpuSSE4a from > CPU_ANY_SSE_FLAGS entry to CPU_ANY_SSE3_FLAGS one. Add > CPU_ANY_SSE4_FLAGS entry. > * i386-init.h: Re-generate. > OK. Thanks. -- H.J.