From patchwork Thu Aug 9 17:13:32 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Law X-Patchwork-Id: 955735 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (mailfrom) smtp.mailfrom=gcc.gnu.org (client-ip=209.132.180.131; helo=sourceware.org; envelope-from=gcc-patches-return-483471-incoming=patchwork.ozlabs.org@gcc.gnu.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=gcc.gnu.org header.i=@gcc.gnu.org header.b="nEFe6/rw"; dkim-atps=neutral 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 41mZbY0kfXz9s0n for ; Fri, 10 Aug 2018 03:13:44 +1000 (AEST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:to :from:subject:message-id:date:mime-version:content-type; q=dns; s=default; b=R4skv6y46YGTzovVlbrcBLvOdr2Ch8qhY5h9rJUJcYyK0KLhkz Vy3DIZV4g889M5I3BXgGe7lwKj5Xr+IgM+o4/SAj9xPeSU3xp4vQ1r8hO7iYGr0i 9BLvY3SfOxzSYa1s15ZLnFYRGVZ5455Zph6HESjF+Z0qCeiVSCoBDDqik= 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:to :from:subject:message-id:date:mime-version:content-type; s= default; bh=fDYftJfV+SEDy1IJ0xzKMo/UR/o=; b=nEFe6/rwFayIPEpBC6Zr SUh2lvD6lskDqm7yPJ71+9HT7V7lgClpXrbibIvIyyQmNENoty2X1GdIlz+RCH8e VluFpIx4HDYMns1SGyefw+AQniVHFmJFpxlgCGLZa2OORwx2QjHskQYucddoe1WL S1IgCKHlO+QVfS5nA89XA9g= Received: (qmail 46393 invoked by alias); 9 Aug 2018 17:13:37 -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 46379 invoked by uid 89); 9 Aug 2018 17:13:36 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-25.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_PASS autolearn=ham version=3.3.2 spammy=compromised, Wno-error, wnoerror, wno-error X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 09 Aug 2018 17:13:35 +0000 Received: from smtp.corp.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.27]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id AF94F4E4E6 for ; Thu, 9 Aug 2018 17:13:33 +0000 (UTC) Received: from localhost.localdomain (ovpn-112-6.rdu2.redhat.com [10.10.112.6]) by smtp.corp.redhat.com (Postfix) with ESMTP id 23753A4B7A for ; Thu, 9 Aug 2018 17:13:32 +0000 (UTC) To: gcc-patches From: Jeff Law Subject: [committed][PR middle-end/86897] Disable DOM in test compromised by DOM Openpgp: preference=signencrypt Message-ID: Date: Thu, 9 Aug 2018 11:13:32 -0600 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 X-IsSubscribed: yes This should have been committed with the most recent DOM change. DOM compromises this test now that it uses the EVRP range data to discover more constants. The fix is trivial, disable DOM for this test. Committed to the trunk. Jeff commit 08482a36034ea41b202c26589fa0907f8c25ff90 Author: law Date: Thu Aug 9 17:11:45 2018 +0000 PR middle-end/86897 * gcc.dg/uninit-suppress_2.c: Disable DOM. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@263454 138bc75d-0d04-0410-961f-82ee72b054a4 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 8ea8530243d..1e915bc1a0a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2018-08-09 Jeff Law + + PR middle-end/86897 + * gcc.dg/uninit-suppress_2.c: Disable DOM. + 2018-08-09 Richard Sandiford * gcc.target/aarch64/sve/reduc_8.c: New test. diff --git a/gcc/testsuite/gcc.dg/uninit-suppress_2.c b/gcc/testsuite/gcc.dg/uninit-suppress_2.c index af0f192f0c0..b617609f5e1 100644 --- a/gcc/testsuite/gcc.dg/uninit-suppress_2.c +++ b/gcc/testsuite/gcc.dg/uninit-suppress_2.c @@ -1,5 +1,5 @@ /* { dg-do compile } */ -/* { dg-options "-fno-tree-ccp -fno-tree-vrp -fno-tree-fre -fno-tree-pre -fno-code-hoisting -O2 -Wuninitialized -Werror=uninitialized -Wno-error=maybe-uninitialized" } */ +/* { dg-options "-fno-tree-dominator-opts -fno-tree-ccp -fno-tree-vrp -fno-tree-fre -fno-tree-pre -fno-code-hoisting -O2 -Wuninitialized -Werror=uninitialized -Wno-error=maybe-uninitialized" } */ void blah(); void bar (int); int gflag;