From patchwork Sun Feb 8 20:39:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrew Pinski X-Patchwork-Id: 437754 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from sourceware.org (server1.sourceware.org [209.132.180.131]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id AA71C140161 for ; Mon, 9 Feb 2015 07:40:04 +1100 (AEDT) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; q= dns; s=default; b=psbQ+NvbYazYaWXOCM7QwhZayxjMeFlr3lXz4pCF/XjyTR Kn6J9wrVPZjq5tyTgag8lOACObS/YjQAt5f4SItgj6GffpAUCy/MEFR+JJrjKy2j GG2RwqpdRVPsiJXenM12+g9rwN/HBRS5H7bmN882hXhm9G15HLc049MbcorSU= DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :mime-version:date:message-id:subject:from:to:content-type; s= default; bh=fhj4V7S4i91J0x1emQ3CZWvQuzw=; b=Pyq+U3Do5V8vv43bN099 SSvOcin71cJaMuFfK/w9zBvIC6699ktq+/qFd6aogDu6QtCcGvcpy4zrfwv/Do4Q gV8ufYQaevTweB8WZgkVr9NZuonjY4rlWvhTHBtIRSV9ehyT/ph4X9Bs+1TalNWz 7+KwDzX+/LOGCgCtaM8rflg= Received: (qmail 11779 invoked by alias); 8 Feb 2015 20:39:26 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Delivered-To: mailing list gcc-patches@gcc.gnu.org Received: (qmail 11767 invoked by uid 89); 8 Feb 2015 20:39:25 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.4 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-lb0-f174.google.com Received: from mail-lb0-f174.google.com (HELO mail-lb0-f174.google.com) (209.85.217.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Sun, 08 Feb 2015 20:39:24 +0000 Received: by mail-lb0-f174.google.com with SMTP id f15so26348828lbj.5 for ; Sun, 08 Feb 2015 12:39:20 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.152.2.167 with SMTP id 7mr13198109lav.114.1423427960603; Sun, 08 Feb 2015 12:39:20 -0800 (PST) Received: by 10.25.21.3 with HTTP; Sun, 8 Feb 2015 12:39:20 -0800 (PST) Date: Sun, 8 Feb 2015 12:39:20 -0800 Message-ID: Subject: [PATCH/AARCH64] Xfail ssa-dom-cse-2.c From: Andrew Pinski To: GCC Patches X-IsSubscribed: yes Like https://gcc.gnu.org/ml/gcc-patches/2015-01/msg02646.html, we should xfail this testcase for aarch64 too. OK? Bootstrapped and tested on aarch64-linux-gnu. Thanks, Andrew Pinski ChangeLog: * gcc.dg/tree-ssa/ssa-dom-cse-2.c: xfail for AARCH64 also. commit 5ddfd811b7b7a0f6bcbaf78b597ae473bb36bff4 Author: Andrew Pinski Date: Sun Feb 8 12:39:01 2015 +0000 Disable testsuite/gcc.dg/tree-ssa/ssa-dom-cse-2.c for AARCH64 * gcc.dg/tree-ssa/ssa-dom-cse-2.c: Disable for AARCH64. diff --git a/gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-cse-2.c b/gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-cse-2.c index f767a31..1b7369c 100644 --- a/gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-cse-2.c +++ b/gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-cse-2.c @@ -20,5 +20,5 @@ foo () /* See PR63679 and PR64159, if the target forces the initializer to memory then DOM is not able to perform this optimization. */ -/* { dg-final { scan-tree-dump "return 28;" "optimized" { xfail hppa*-*-* powerpc*-*-* sparc*-*-*} } } */ +/* { dg-final { scan-tree-dump "return 28;" "optimized" { xfail hppa*-*-* powerpc*-*-* sparc*-*-* aarch64*-*-* } } } */ /* { dg-final { cleanup-tree-dump "optimized" } } */