From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pj1-x1030.google.com (mail-pj1-x1030.google.com [IPv6:2607:f8b0:4864:20::1030]) by sourceware.org (Postfix) with ESMTPS id 461B73858D1E for ; Sat, 11 Mar 2023 15:35:57 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 461B73858D1E Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-pj1-x1030.google.com with SMTP id y2so8045273pjg.3 for ; Sat, 11 Mar 2023 07:35:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; t=1678548956; h=content-transfer-encoding:in-reply-to:from:references:cc:to :content-language:subject:user-agent:mime-version:date:message-id :from:to:cc:subject:date:message-id:reply-to; bh=/vyRkcciMSJSkR8RN8miX5LE1LhxmJwiKTOraUuQ9z4=; b=oe4M243x665m1Fj3nN6YLORQN2OkNqtxHki5Wx8mqynqGtODN7LUh5bD7x8WFH1VSL BsXVDYWnoB06ev96m7J6gcqqUHGxQMVO6lhLMc+UM9iUHt/Ig4yjXcsp0EEaSl4DohUd ojxbI1DTUYuENL6ioap68yjigMeSRFSEiQx8N1x43bjYOBKX2ooOYRzvYhpSkwZAdX6R 43PE+kF/IF8+H5NgxZwqJrNj/jUb08r+i7K3cH5N1jZ9pjrGxoFgRnKNGnk2+GLvjiRl 5lST8YTv5ztITbC5K0f45DPI8B+NAAjYEWvlK1GiB4+oJo23Bzc15VIyZMAHjkdE7LlF NjWw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; t=1678548956; h=content-transfer-encoding:in-reply-to:from:references:cc:to :content-language:subject:user-agent:mime-version:date:message-id :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=/vyRkcciMSJSkR8RN8miX5LE1LhxmJwiKTOraUuQ9z4=; b=P/urZDg7N614zmjRi7232DJezOJ9dVYj+k1YEljb72I8SFFB5ubExnctP344lAAIre sAJkwcV484prWPVM41DWq9d/zs44VapTr6jJ3GCqMtUMAyF+c/R2ad5q9TKF62O4v3Te 4QLplFwQCtWclSS4cBMlGOjh1qvg+g3vTYUgJ+qD5Un5PkqSRSsR/AyIlzLgHuBFI9q9 bGIe47G3jnM19F1hP9e6PE/UFjKsi2o23keDBCOZ2tjZkWWs/32N1FupUs48YD2ILaK6 xF++xxu9LLj7ZsPysEL2rieiC0UDvRr3OaLNmG78Ks10Os5T8madkbOhrjZwluchzAVX E/mQ== X-Gm-Message-State: AO0yUKWDdgwtqoPqZ066UmprXk+IgxAMMT17nz2h1JehHH1lvbZO3y0J 33tsabTOvZXjgJYTmwyulCM= X-Google-Smtp-Source: AK7set8Eyi5KO2TtMvNuprxB5rWxm8oL9AGMs6q8ftshjF2Csn6t+ytuHiveXE6gznTgMbm2JyXBZQ== X-Received: by 2002:a17:902:f548:b0:19e:29bd:8411 with SMTP id h8-20020a170902f54800b0019e29bd8411mr35190567plf.30.1678548955410; Sat, 11 Mar 2023 07:35:55 -0800 (PST) Received: from ?IPV6:2601:681:8600:13d0::f0a? ([2601:681:8600:13d0::f0a]) by smtp.gmail.com with ESMTPSA id q6-20020a170902788600b0019c2cf1554csm1741357pll.13.2023.03.11.07.35.54 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sat, 11 Mar 2023 07:35:54 -0800 (PST) Message-ID: <06495ef5-7cb5-867f-bf00-588989f0b08c@gmail.com> Date: Sat, 11 Mar 2023 08:35:53 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.8.0 Subject: Re: [PATCH v2] Print padding size when aligning struct member Content-Language: en-US To: =?UTF-8?Q?V=c3=adt_Kabele?= , gcc-patches@gcc.gnu.org Cc: vit@kabele.me References: <20230224072835.12177-1-vit.kabele@sysgo.com> From: Jeff Law In-Reply-To: <20230224072835.12177-1-vit.kabele@sysgo.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-2.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,NICE_REPLY_A,RCVD_IN_DNSWL_NONE,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 2/24/23 00:28, Vít Kabele wrote: > Hello, > > I changed the tested pattern to match even on targets with different > alignment. So this needs to wait for stage1 development to open -- we're in regression bugfixing phase only right now. I would expect that to happen in April/May. You might consider changing the other similar message you added last year to finalize_record_size to use the same format as this message for the sake of consistency. Jeff