From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qk1-x72d.google.com (mail-qk1-x72d.google.com [IPv6:2607:f8b0:4864:20::72d]) by sourceware.org (Postfix) with ESMTPS id A68DD3858034 for ; Fri, 16 Apr 2021 14:21:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org A68DD3858034 Received: by mail-qk1-x72d.google.com with SMTP id v7so890451qkj.13 for ; Fri, 16 Apr 2021 07:21:35 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:subject:to:references:from:message-id:date :user-agent:mime-version:in-reply-to:content-language :content-transfer-encoding; bh=LlNvWvixceWG9zGoCpnED+lLkx3a4Zuq4mrNOauC7Cg=; b=pEbsvjDnP6JAXuSHuXnA/CejQm568NXKfa7gaJE0C0RgVZ2k/kLLZBMCa/pupIDf2W pprgnrzWPCqAiy9FgdFDQA6rPJ/qlO6UWX79qULP3IkH/IbMjSpoFeK80oMlaPd3vWcD g/Onupu0b2Qyf1apsf9xiD2ZB+gymjnPGSoQxpT3mmuF8lcaccF2+5cqko+Wp2OWidqX NV9fLw7Gs1Dcxgl269/lgUFRaxl7ETd1Avxv1HFs5lFpkCusk26Zozybl4EYdTkjt+S1 gQCIYszznZchvKn52fH7vC7YMqad+yh4LKb56VcAnPIKQkBTHsPsbI9EpiZX5p81QWlP WFeg== X-Gm-Message-State: AOAM531Wtf5Y1eVPf3ncqsME0lvofOn008ju7zKrV9Iv97fFIwr9OlWH sdgVdWKuFJWkE9LFz0p2N1zRfa5SHGyzWQ== X-Google-Smtp-Source: ABdhPJypcVRRyXMS8W47wp651wCzyEYvLXcq1n72FFw7zAL2aG+zPAz/vQ0f6SKKpg/1llxxKvc1tg== X-Received: by 2002:a05:620a:1093:: with SMTP id g19mr9328137qkk.112.1618582895303; Fri, 16 Apr 2021 07:21:35 -0700 (PDT) Received: from ?IPv6:2804:7f0:4841:2d9e:da5:ffc5:9136:5123? ([2804:7f0:4841:2d9e:da5:ffc5:9136:5123]) by smtp.gmail.com with ESMTPSA id x4sm4147963qkp.78.2021.04.16.07.21.33 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Fri, 16 Apr 2021 07:21:35 -0700 (PDT) Subject: Re: [PATCH] Print bfloat16 DWARF types correctly To: Tom Tromey , Luis Machado via Gdb-patches References: <20210414143528.1845401-1-luis.machado@linaro.org> <87tuo7fqu1.fsf@tromey.com> <87czuvfp7l.fsf@tromey.com> From: Luis Machado Message-ID: Date: Fri, 16 Apr 2021 11:21:32 -0300 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.7.1 MIME-Version: 1.0 In-Reply-To: <87czuvfp7l.fsf@tromey.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-6.0 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) 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: Fri, 16 Apr 2021 14:21:46 -0000 On 4/15/21 2:10 PM, Tom Tromey wrote: > Luis> I didn't find anything in the DWARF spec that differentiates float > Luis> types through a different encoding field. That would've been the best > Luis> choice I think. > > Yeah. We could add an extension of course, assuming the compilers are > changeable. However then we'd probably still want to support existing > executables. I've pushed this now. Thanks.