From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-lj1-x22a.google.com (mail-lj1-x22a.google.com [IPv6:2a00:1450:4864:20::22a]) by sourceware.org (Postfix) with ESMTPS id 41E6F3857B98 for ; Wed, 12 Jul 2023 07:15:39 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 41E6F3857B98 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-lj1-x22a.google.com with SMTP id 38308e7fff4ca-2b703caf344so102302561fa.1 for ; Wed, 12 Jul 2023 00:15:39 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1689146138; x=1691738138; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:from:to:cc:subject:date :message-id:reply-to; bh=uIBiuh8fCDsxcOKmMV8CgCT2vefNSB8VixNDxwVlQYI=; b=FpwDEis8BgQ8mjX6YCgFfRxTeUh+u1toiUovCnpv+ZxdbI4yf3gEY9mekwZjueixJE UaEMhyGr2iBFygZlftnXC/EKodQKYr/Kg4jYBRm0VyAWhLVa8dgTWj9yu00WO1yUhVZC 4B3FMvzj929PaK2HVjW1NDRb39LE6uE9mD/AZCdlu0hf7N7NyPGerAHQSiNqI1ETtJat NlIxI5sygEdzyqwpocBdLlfQTnTIINiPPN3qXt6pdt0Rp0t8HZy8A6y6EcgDzjMdU9cI fOdHMdPlpgjlRI0M6TM4qG//UUkG0TIp51JtYbBtTYK2s00Q3fyj7qHr5kZuY+qGbyRc opuw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1689146138; x=1691738138; h=content-transfer-encoding:cc:to:subject:message-id:date:from :in-reply-to:references:mime-version:x-gm-message-state:from:to:cc :subject:date:message-id:reply-to; bh=uIBiuh8fCDsxcOKmMV8CgCT2vefNSB8VixNDxwVlQYI=; b=A9jIKY2MeGJG7ZHUP/zbm8xSi2thLreWvFk6AnJ4lcLw+NNpjTHshz4Z/YVfW7xsyO RihYAMF1HxVS+niLe7C6SZ2IXFHvZn2LAUm/QWIz5PWat9JvTt5td7sOeXOEGDhKc8Vz WDqT1x7hb7V+Mh5jh9CIBEQ7p07O5TPoco3/cBa+B6N5pLiSGD17ROgia/T31rvF5yWb 40/GhfWFJo+FPyEu42ylyNHovC0JlUhPRgOiODg0pJPdDx5qy4I5hz7jXL8jDDQ3lynm 5Oef4x3LC7V5eJFXBHufhNOt+LNZdf+hhqw+AuYGjchPVzDRt7D2UAZN7Als5SosiXxH 4GYw== X-Gm-Message-State: ABy/qLYRAzbm6+FbYK8kJLHSHb1NzW/agVuNheeZ/bPiSMXLbqN/0kIc VVNRZpG/IQaXjUrjfQtL9ZAx2bkfbim1Wqf5+y6An+JM X-Google-Smtp-Source: APBJJlEHNjlVwQ4b3y3xDdHW6y+F+WBQxTGKxrEakbuFt+HweU+Uw41g2a23xirfHpmTJg5aancZJ7qIAF1EbECOPu0= X-Received: by 2002:a2e:b60d:0:b0:2b6:bb08:91c4 with SMTP id r13-20020a2eb60d000000b002b6bb0891c4mr14485280ljn.42.1689146137542; Wed, 12 Jul 2023 00:15:37 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Richard Biener Date: Wed, 12 Jul 2023 09:15:15 +0200 Message-ID: Subject: Re: [PATCH 3/3] testsuite: Require vectors of doubles for pr97428.c To: "Maciej W. Rozycki" Cc: Rainer Orth , Mike Stump , gcc-patches@gcc.gnu.org Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.5 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE 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 Tue, Jul 11, 2023 at 5:01=E2=80=AFPM Maciej W. Rozycki wrote: > > On Fri, 7 Jul 2023, Richard Biener wrote: > > > > The pr97428.c test assumes support for vectors of doubles, but some > > > targets only support vectors of floats, causing this test to fail wit= h > > > such targets. Limit this test to targets that support vectors of > > > doubles then. > > > > OK. > > Applied, thanks. OK to backport to the active branches? Yes. > Maciej