From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qv1-xf32.google.com (mail-qv1-xf32.google.com [IPv6:2607:f8b0:4864:20::f32]) by sourceware.org (Postfix) with ESMTPS id C8C9C385840C for ; Sat, 19 Mar 2022 17:38:22 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org C8C9C385840C Received: by mail-qv1-xf32.google.com with SMTP id f3so3062632qvz.10 for ; Sat, 19 Mar 2022 10:38:22 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=CwBj1sYw3RaAtbMK4m7R++h6Sf6sIJT5t2TA8PmferI=; b=REHBlBYpVjB1MvyXTD1ZdRUuQarAi9VPd/u4GqqvNqlARufm3gvjLSs54tJnw+jgfc ai3/MPuDiRTWHjWEoDOjnhjvqxNThwg1q/DNIMCUkLf/Pz8dGsgvjjrDfSBlLuodqcre 5BS9D6KzxCowz40zMTm92YrOu/dZku6chrRTu+WTcNJ+ZI5DSscm/Bj5Y35CgQ25AAJR o8KscKPLH5idHER+vzbuVtxR24UU/XOyCm54+mtvr7S2r8yjtsw5XCdjd1xx0dNgTi+a XR9QclrR/1k2FqwtKfElc7x+ysvRNZwB4xToWE+zAIXCcnax1qA7dZE+aZH4Mfnfyocj bEPg== X-Gm-Message-State: AOAM53028c30mEXNPNb+duodGQ4R7CYGTvNVxRsu4ZWYCApz/80+GAth svLo/k4Mwlyo6xuVyg/dCWD9m97bQfxyLw== X-Google-Smtp-Source: ABdhPJy8lmGE1RZYwfzEaf1w4PyWd/t4MZCzSM/j/B81eo8KZO0Mln7drUhgKFB8jA9CD7XGRpWEJg== X-Received: by 2002:ad4:4593:0:b0:441:1485:3403 with SMTP id x19-20020ad44593000000b0044114853403mr1536492qvu.107.1647711502076; Sat, 19 Mar 2022 10:38:22 -0700 (PDT) Received: from [172.31.0.204] (c-73-63-24-84.hsd1.ut.comcast.net. [73.63.24.84]) by smtp.gmail.com with ESMTPSA id bm21-20020a05620a199500b0067d5e6c7bd8sm5346817qkb.56.2022.03.19.10.38.20 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Sat, 19 Mar 2022 10:38:21 -0700 (PDT) Message-ID: Date: Sat, 19 Mar 2022 11:38:20 -0600 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: [PATCH] gcc: rename floatformat_ia64_quad_{big, little} to floatformat_ieee_quad_{big, little} Content-Language: en-US To: Tiezhu Yang , gcc-patches@gcc.gnu.org Cc: Tom Tromey , gdb-patches@sourceware.org References: <1647227412-4315-1-git-send-email-yangtiezhu@loongson.cn> From: Jeff Law In-Reply-To: <1647227412-4315-1-git-send-email-yangtiezhu@loongson.cn> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-2.5 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, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 19 Mar 2022 17:38:24 -0000 On 3/13/2022 9:10 PM, Tiezhu Yang wrote: > I submitted a GDB patch [1] to rename floatformats_ia64_quad to > floatformats_ieee_quad to reflect the reality, and then we can > clean up the related code. > > As GDB Global Maintainer Tom Tromey said [2]: > > These files are maintained in gcc and then imported into the > binutils-gdb repository, so any changes to them will have to > be proposed there first. > > this GCC patch is preparation for the GDB patch, no functionality > change. > > [1] https://sourceware.org/pipermail/gdb-patches/2022-March/186452.html > [2] https://sourceware.org/pipermail/gdb-patches/2022-March/186569.html > > Signed-off-by: Tiezhu Yang > --- > > Hi GCC Maintainers, > > I have no write access of gcc.git, if you are OK with this change, > could you please help me to merge this patch to the gcc master? While this isn't a behavior change, it is, an ABI change.  We don't have a strict backwards compatible ABI mandate for libiberty, but it is useful to keep ABI issues in mind when making changes to libraries.  I'm not terribly worried about this one. Also, please make sure to include ChangeLog entries in future submissions. Thanks.  Installed on the trunk. Jeff