From patchwork Wed Dec 5 20:44:18 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Uros Bizjak X-Patchwork-Id: 1008450 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-491736-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=gmail.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="DdyEj87C"; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b="MyX5FWQZ"; dkim-atps=neutral Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4399hW5CQwz9s3q for ; Thu, 6 Dec 2018 07:44:43 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; q= dns; s=default; b=Y3a/Dp2Ln4I6FyAJyG0yF1YatsO+Nf46FE0zZf2XAY51Ch mDH0PtQSTxvo1XjoChQYOjBCxzE34dJ01+tdQgpA61Di0wRpcPj+nz/msvIIgyd0 dBynw9EAKyM7djYEGD55kWy+Racl0ejx2KobqIPaQNxsQjF0CTK2t5f0sl2qc= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:from:date:message-id:subject:to:content-type; s= default; bh=Vn9IPMbQn1UJ0RXXB08b2Rv/TMI=; b=DdyEj87CMXCwavv/ytlK G6duB390Sl57cl71J0HiVW2GifXlURrEM5UICaLpUKSE1ej90yHmz94DgxHb5Zku 3kI2U+oKUnofTT04KIKkOs8l2lEIW/WeR4xdZPOBUF4c0IWkVYuCBKxZGFRdmt6R EQjYbh12bdaUGjHyWfZBaRg= Received: (qmail 93046 invoked by alias); 5 Dec 2018 20:44:34 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 92885 invoked by uid 89); 5 Dec 2018 20:44:33 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-11.9 required=5.0 tests=BAYES_00, FREEMAIL_FROM, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.2 spammy=uros, 266788, Uros, 4206 X-HELO: mail-io1-f54.google.com Received: from mail-io1-f54.google.com (HELO mail-io1-f54.google.com) (209.85.166.54) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 05 Dec 2018 20:44:32 +0000 Received: by mail-io1-f54.google.com with SMTP id x6so17803199ioa.9 for ; Wed, 05 Dec 2018 12:44:31 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:from:date:message-id:subject:to; bh=eSBEMOG+IKlRingrScRok0nkkjuDtIGUPA9emJBsftE=; b=MyX5FWQZ/zmA1fKnHgujFzc+jx7wSMaZDAUzUOjZkFDVisB6OEGO3RvXQsKPzXI/58 deGYzdJK2HH1qv3GxdrBl+Sq43i95zN1juJDXsiZ0cp2qNyCBllbT69q0vX/1MVBPUuO dFqUzsCSUj3/BQOuwlCF9HKP618dLvpQE+NNgc9PU4eiGNLHWWwSDXfJNKST3kWCU4/x psCQWbF/0JZwKlmJsZfW7dICTy+KuZcs2ixM1Qj9A9cerhh0s6qAHAm4hayrqhgsRGpN vBCEdgBGJqW+PhFqb+Kr3bNXXLi1SLdSVhUMn1LjaEMbwhWTs1PCKYWsnGH3//PR53PG Ht4w== MIME-Version: 1.0 From: Uros Bizjak Date: Wed, 5 Dec 2018 21:44:18 +0100 Message-ID: Subject: [PATCH, i386]: Remove two obsolete/superfluous defines from cygming.h To: "gcc-patches@gcc.gnu.org" GROUP_BITFIELDS_BY_ALIGN was long gone, PCC_BITFIELD_TYPE_MATTERS defaults to 1 in i386.h for all x86 targets. 2018-12-05 Uros Bizjak * config/i386/cygming.h (PCC_BITFIELD_TYPE_MATTERS): Remove. (GROUP_BITFIELDS_BY_ALIGN): Ditto. Tested by building crosscompiler to x86_64-w64-mingw32. Committed to mainline SVN as obvious. Uros. Index: config/i386/cygming.h =================================================================== --- config/i386/cygming.h (revision 266788) +++ config/i386/cygming.h (working copy) @@ -420,11 +420,6 @@ #define BIGGEST_FIELD_ALIGNMENT 64 #endif -/* A bit-field declared as `int' forces `int' alignment for the struct. */ -#undef PCC_BITFIELD_TYPE_MATTERS -#define PCC_BITFIELD_TYPE_MATTERS 1 -#define GROUP_BITFIELDS_BY_ALIGN TYPE_NATIVE(rec) - /* Enable alias attribute support. */ #ifndef SET_ASM_OP #define SET_ASM_OP "\t.set\t"