From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-f54.google.com (mail-wm1-f54.google.com [209.85.128.54]) by sourceware.org (Postfix) with ESMTPS id 7F84E3856DD1 for ; Mon, 27 Jun 2022 18:17:28 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 7F84E3856DD1 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=palves.net Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-wm1-f54.google.com with SMTP id h14-20020a1ccc0e000000b0039eff745c53so6134830wmb.5 for ; Mon, 27 Jun 2022 11:17:28 -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=BCfBkBXay3V+s0DH2Td/gdxg+/kZir3GxuDGb9xioNg=; b=sdw8juzRsJrc5euiWuWskZyh0Vd4BExKBS+tlyesQIQESd+DJynUui6yXxILm68U08 qZRPzEP4d1OShJHNI5ivoJyxSzcD1PUnuHGYeBZeAFUY6FQSeITuLh1RUQtn1ihC4wEb fvrVM1d0fVm+w3qnACHTlzdH3+B4RtghwD0r7qIGEE7Re0z8HhIaC8YuzV4uNgo8yvUW pZ2TWuIVUIdA0RMSjK8jvROptXDNuA6yP1g7D1zoK/3gpTj0wB0jLZcYG48rUpqhdYEP bknI2mnM8iMVA8Xlosuw+WoHjYUXtE87mlOv3h253hZ93K1+g6ch1JY4c/gga9laAPDe pUQw== X-Gm-Message-State: AJIora/iN5lHngCGSACU98maC5FyePXYPbUhojIJjXz1pYNDMk1Y/QRE 4B5w3QnTk7fKj95L+PiKfhNYX/R/aO4= X-Google-Smtp-Source: AGRyM1vbTxeqd5Q9hzClHkHJccjsjezVLjOaBRpQhlQPYO9MtLggbPWQUHjf0rc3euAemHue1+Iu0Q== X-Received: by 2002:a05:600c:1797:b0:3a0:38a7:8675 with SMTP id x23-20020a05600c179700b003a038a78675mr21730001wmo.120.1656353847417; Mon, 27 Jun 2022 11:17:27 -0700 (PDT) Received: from ?IPV6:2001:8a0:f924:2600:5b14:8ad0:780f:bdda? ([2001:8a0:f924:2600:5b14:8ad0:780f:bdda]) by smtp.gmail.com with ESMTPSA id m2-20020adffa02000000b0021d163daeb0sm2366181wrr.108.2022.06.27.11.17.26 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Mon, 27 Jun 2022 11:17:26 -0700 (PDT) Message-ID: <6387c1cc-d8d3-8f91-5c54-a0e72a0d611f@palves.net> Date: Mon, 27 Jun 2022 19:17:25 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.10.0 Subject: Re: [PATCH 1/4] gdb: define int512 and uint512 as built-in types. Content-Language: en-US To: Felix Willgerodt , gdb-patches@sourceware.org Cc: Aleksandar Paunovic References: <20220506121226.137608-1-felix.willgerodt@intel.com> <20220506121226.137608-2-felix.willgerodt@intel.com> From: Pedro Alves In-Reply-To: <20220506121226.137608-2-felix.willgerodt@intel.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00, FREEMAIL_FORGED_FROMDOMAIN, FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS, KAM_DMARC_STATUS, NICE_REPLY_A, RCVD_IN_DNSWL_NONE, RCVD_IN_MSPIKE_H2, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) 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: Mon, 27 Jun 2022 18:17:29 -0000 On 2022-05-06 13:12, Felix Willgerodt via Gdb-patches wrote: > From: Aleksandar Paunovic > > Allow using int512 and uint512 as built-in types, particularly > for the target descriptions. This is OK.