From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ed1-x52d.google.com (mail-ed1-x52d.google.com [IPv6:2a00:1450:4864:20::52d]) by sourceware.org (Postfix) with ESMTPS id 6A86C388E83F for ; Fri, 16 Apr 2021 09:29:35 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 6A86C388E83F Received: by mail-ed1-x52d.google.com with SMTP id w18so31521251edc.0 for ; Fri, 16 Apr 2021 02:29: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:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=ZZ12gBKP4NhpLcp2QMdrIIqUnUsE+X8GGKZvxrRB+Bo=; b=FTJNXIILzq6VEaX5dTLB+IwsnN4Bi89QchkGtPzxwVaHk2zTuRbHueFdfa6u3ynkAu hVcsHnKem2jn+f4hPZJQ2HxFj1jXyQqnMAOwKD3FeYj5oY1Xfu98HHsVcWDQwCMuQy/N Km7eXAfGLeOT33a0YHOMGKR2AJ8PbdGdDsvoL9anp3l/haghnz2FnFKV60al7KP72hPj 6p5p4I2G7TMVPK64p+4yG6L3ZHpR4lLKZfUXsf5e030vHachKCMYiVMv750TLT9J0vck kYkNWgZPdefGg7VQcV72blMEx93jd1i2JfvCt+IvPvZilATW2b47oKFGt8QGezQzgO1X Lbrg== X-Gm-Message-State: AOAM533ZdIiOlQJUD4z/2EmRyFbx8jSK0zeNvVY5vscKystmAmJsqT5m xGWTRHN+MOwuQeAi1v20zzzFIj1bTpRvBaq4IWk= X-Google-Smtp-Source: ABdhPJwb7t1rDPC/KKP9rp4yPVP9x9njsCY57G8+xbRCBRkttN1myqOYtksA7oifMELvdpDvIddVOxwYLnpbk5pMScQ= X-Received: by 2002:a05:6402:393:: with SMTP id o19mr8943092edv.274.1618565374576; Fri, 16 Apr 2021 02:29:34 -0700 (PDT) MIME-Version: 1.0 References: <495cec56-f914-d114-3882-fa9642d9ffce@linux.ibm.com> <1e6af3a1-329f-905e-1282-08ddd9a75e21@linux.ibm.com> In-Reply-To: <1e6af3a1-329f-905e-1282-08ddd9a75e21@linux.ibm.com> From: Richard Biener Date: Fri, 16 Apr 2021 11:29:23 +0200 Message-ID: Subject: Re: [PATCH] testsuite: Move gimplefe40.c and gimplefe41.c To: Robin Dapp Cc: GCC Patches Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-2.6 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 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: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2021 09:29:37 -0000 On Fri, Apr 16, 2021 at 9:02 AM Robin Dapp wrote: > > > Do the testcases currently fail? How? In principle moving to vect/ > > is OK but then having the gimplefe testcases in one place is nice ... > > yes, they ICE on targets that do not have vector capabilities: > > gimplefe-40.c:7:1: internal compiler error: in emit_move_insn, at > expr.c:3821 > > Normally we run vector tests with a higher arch level (when going > through lib/target-supports.exp via vect.exp > check_vect_support_and_set_flags). > > [..] > } elseif [check_effective_target_s390_vx] { > lappend DEFAULT_VECTCFLAGS "-march=z13" "-mzarch" > set dg-do-what-default run > [..] > > I suppose the same happens on powerpc, hence the dg-additional-options, > but I haven't checked. OK, so the move to gcc.dg/vect/ is fine then. Thanks, Richard. > Regards > Robin