From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-il1-x12b.google.com (mail-il1-x12b.google.com [IPv6:2607:f8b0:4864:20::12b]) by sourceware.org (Postfix) with ESMTPS id D5A3E3857C4E for ; Fri, 15 Apr 2022 15:30:44 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org D5A3E3857C4E Received: by mail-il1-x12b.google.com with SMTP id b5so5043954ile.0 for ; Fri, 15 Apr 2022 08:30:44 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=pYh4IFiUE7E724ox6thsjGrL2dXNpsvlu+OsBdI7dBc=; b=sdGsZ8UEXui73o8QjzTKuFoZR1pz8o4Wc9MeQCFjUHWORfQj7eAlS35WqWgKQmWa4q wMA/JPQyTVqAHni3D9rGHkUUx++IW4X9dFkfpGG6tlpRFCdkKpofmDkoVfbuNv58wWvx EbgTIiwNA7Ly5buUSUF0dBUGBsL1hR0pbU283gEQS8Pszr8O4hORcMsXs07nMbqv1VHb YdbNqHCZXtLBaFUsuhj9NHzeU33NzkcC7y+VxHogG96yiLjI+rL1IEWfH3sgcdkh9mMw Q439c+j5dWaicBXcZY0MUiuRSt3KR+rnShIYplozGlUnjBURBDSxKHTZyNW/JVgdEkvU Nm4g== X-Gm-Message-State: AOAM533kkk2yeYTkslQG3F1p7dMLht6txMZ9PB/N96Yc7QaMEE3HquYH rXd44GZAs/xlmfESS12LF8RZwQ== X-Google-Smtp-Source: ABdhPJy+tHN3KBkP4004OVt+mIvfgiYW13/6Wf4K3Wi/oJOW7/DqXfh53C3QhSdIZAk7DhjZZjaqkA== X-Received: by 2002:a92:7f11:0:b0:2ca:50f9:63d6 with SMTP id a17-20020a927f11000000b002ca50f963d6mr3540473ild.150.1650036644128; Fri, 15 Apr 2022 08:30:44 -0700 (PDT) Received: from murgatroyd (71-211-154-204.hlrn.qwest.net. [71.211.154.204]) by smtp.gmail.com with ESMTPSA id f4-20020a056e0204c400b002caa9f3cc3fsm2779242ils.56.2022.04.15.08.30.42 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Fri, 15 Apr 2022 08:30:43 -0700 (PDT) From: Tom Tromey To: Tom de Vries via Gdb-patches Cc: Tom de Vries , Tom Tromey Subject: Re: [PATCH][gdb/testsuite] Fix gdb.ada/float-bits.exp with -m32 References: <20220414131412.GA9234@delia> X-Attribution: Tom Date: Fri, 15 Apr 2022 09:30:42 -0600 In-Reply-To: <20220414131412.GA9234@delia> (Tom de Vries via Gdb-patches's message of "Thu, 14 Apr 2022 15:14:14 +0200") Message-ID: <87r15y1hzx.fsf@tromey.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Status: No, score=-4.7 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, KAM_NUMSUBJECT, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=no 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: Fri, 15 Apr 2022 15:30:46 -0000 Tom> Fix this by testing whether 16llf is supported by doing ptype long_long_float Tom> which gets us either: Tom> ... Tom> type = <16-byte float>^M Tom> ... Tom> or: Tom> ... Tom> type = <12-byte float>^M Tom> ... Looks reasonable to me. Thank you for doing this. Tom