From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13528 invoked by alias); 30 May 2005 16:32:33 -0000 Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org Received: (qmail 13025 invoked by uid 22791); 30 May 2005 16:32:21 -0000 Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.30-dev) with ESMTP; Mon, 30 May 2005 16:32:21 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.12.11/8.12.11) with ESMTP id j4UGWJJn008923; Mon, 30 May 2005 12:32:19 -0400 Received: from pobox.toronto.redhat.com (pobox.toronto.redhat.com [172.16.14.4]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id j4UGWJO23648; Mon, 30 May 2005 12:32:19 -0400 Received: from topo.toronto.redhat.com (vpn50-102.rdu.redhat.com [172.16.50.102]) by pobox.toronto.redhat.com (8.12.8/8.12.8) with ESMTP id j4UGWCMX028663; Mon, 30 May 2005 12:32:13 -0400 Received: from topo.toronto.redhat.com (localhost.localdomain [127.0.0.1]) by topo.toronto.redhat.com (8.13.1/8.12.11) with ESMTP id j4UGW8Qn021504; Mon, 30 May 2005 12:32:09 -0400 Received: (from dnovillo@localhost) by topo.toronto.redhat.com (8.13.1/8.13.1/Submit) id j4UGW2ur021503; Mon, 30 May 2005 12:32:02 -0400 Date: Mon, 30 May 2005 17:34:00 -0000 From: Diego Novillo To: gcc@gcc.gnu.org Cc: Janis Johnson Subject: Problem with scan-tree-dump-times in dg.exp Message-ID: <20050530163202.GA21036@topo.toronto.redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline User-Agent: Mutt/1.4.1i X-SW-Source: 2005-05/txt/msg01627.txt.bz2 I have a new test case where the dump file ought to have 2 occurrences of the pattern "PREDICATE: p.* ne_expr 0B", so I added /* { dg-final { scan-tree-dump-times "PREDICATE: p.* ne_expr 0B" 2 "vrp" } } */ but I'm getting a dump scan failure on that file. I have manually checked the dump file and there are 2 instances of that pattern: $ grep 'PREDICATE: p.* ne_expr 0B' vrp07.c.t23.vrp PREDICATE: p_5 ne_expr 0B PREDICATE: p_5 ne_expr 0B I can't seem to find other test cases with similar patterns. And the verbose flags don't show anything obvious. Thanks. Diego.