From patchwork Mon Apr 29 16:23:35 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jeff Law X-Patchwork-Id: 240411 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 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "localhost", Issuer "www.qmailtoaster.com" (not verified)) by ozlabs.org (Postfix) with ESMTPS id 66CF92C00CF for ; Tue, 30 Apr 2013 02:23:47 +1000 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender :message-id:date:from:mime-version:to:subject:content-type; q= dns; s=default; b=ZyAnjzccDX+U19vAW3yTGWAsQyEaVqL9qbb1J8ojSCSF4H ES6riQ13NKJ3DNuUfFY0f3osc/1WfZswieOUgY2LWAw5VgVWhKYf0+dabtoKYziM TdB0QBUReblY4i5aT8ss8c7HrgvZlR+81bufh25iYCCjMchLN1CZC9cZtvMDY= 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 :message-id:date:from:mime-version:to:subject:content-type; s= default; bh=mlvmDHkWPJ1wfsIezn4b9Rg/fbM=; b=qQAUFwrbzYSKO41oAeDD VUPMYsWUmnQ9HfT1tXdPqSrKCfWQZ+VI5CgQlOQHuOWE621q9s7rzLoIwv17l0lx N5Ed89SvtN8yBUYuyVyBmUX8sByeMGDYQGH3k0mVa+f7rtEudOKKx13V/pI9ZzyG h5GFk8crjjB+RpdqLKy+Xhc= Received: (qmail 14631 invoked by alias); 29 Apr 2013 16:23:39 -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 14619 invoked by uid 89); 29 Apr 2013 16:23:39 -0000 X-Spam-SWARE-Status: No, score=-8.0 required=5.0 tests=AWL, BAYES_00, RCVD_IN_HOSTKARMA_W, RCVD_IN_HOSTKARMA_WL, RP_MATCHES_RCVD, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.1 Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 29 Apr 2013 16:23:38 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r3TGNajC009930 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 29 Apr 2013 12:23:36 -0400 Received: from stumpy.slc.redhat.com (ovpn-113-32.phx2.redhat.com [10.3.113.32]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r3TGNZBf022184 for ; Mon, 29 Apr 2013 12:23:35 -0400 Message-ID: <517E9E87.4060405@redhat.com> Date: Mon, 29 Apr 2013 10:23:35 -0600 From: Jeff Law User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130402 Thunderbird/17.0.5 MIME-Version: 1.0 To: gcc-patches Subject: Trivial testsuite fix X-Virus-Found: No A private message from Kai to myself include this patch to fix an out of bounds array access in the testsuite. Installed on the trunk for Kai. commit 07373396d21b65f975c2354e7c6ab454200b40af Author: Jeff Law Date: Mon Apr 29 10:22:11 2013 -0600 * gcc.c-torture/execute/pr55875.c diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 3364efc..73eeaf2 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2013-04-29 Kai Tietz + + * gcc.c-torture/execute/pr55875.c + 2013-04-29 Richard Biener PR middle-end/57075 diff --git a/gcc/testsuite/gcc.c-torture/execute/pr55875.c b/gcc/testsuite/gcc.c-torture/execute/pr55875.c index 4a0ce1b..4e56f7c 100644 --- a/gcc/testsuite/gcc.c-torture/execute/pr55875.c +++ b/gcc/testsuite/gcc.c-torture/execute/pr55875.c @@ -1,4 +1,4 @@ -int a[250]; +int a[251]; __attribute__ ((noinline)) t(int i) {