From patchwork Wed Mar 27 15:32:33 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Iyer, Balaji V" X-Patchwork-Id: 231729 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 084652C0089 for ; Thu, 28 Mar 2013 02:33:01 +1100 (EST) DomainKey-Signature: a=rsa-sha1; c=nofws; d=gcc.gnu.org; h=list-id :list-unsubscribe:list-archive:list-post:list-help:sender:from :to:subject:date:message-id:content-type:mime-version; q=dns; s= default; b=ny/i9yixLmu+g/O/k3PDZoDatHAZ5JmP0AuFKG6dsUJy9sGTcevlb V3zSIX8tTB1YNOQC/VZM9GdhoUbrIawS7fBrkmYcWDUFqUfFEcrldYkKQtFUXVMj 3UuwWflJh/0XMEysyKWJWhDrOPzGX2t5kVQdOK7p9In9j7YsuEN6N0= 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:from :to:subject:date:message-id:content-type:mime-version; s= default; bh=mDL/q/DEbwqGWOuKjk3lfUNTMaQ=; b=F2uj9ZVzuCb9AHULy+Pq mkQakTNtfAVNULpxzRSIZFjZnn8OtcXS0MzXQAMYkkZzZ0CI7auF264So5yyzw4Y LrWgmlCVgAVGcz9FPFnt59ILSuCXLU5kkoS7j//hKgGpEuFWuf6P35k5fIGeZ0Eg Z6AyXUV0Yc+p9UGMDiEdQfk= Received: (qmail 21059 invoked by alias); 27 Mar 2013 15:32:45 -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 21039 invoked by uid 89); 27 Mar 2013 15:32:38 -0000 X-Spam-SWARE-Status: No, score=-7.5 required=5.0 tests=AWL, BAYES_00, KHOP_RCVD_UNTRUST, RCVD_IN_DNSWL_HI, RCVD_IN_HOSTKARMA_W, RP_MATCHES_RCVD autolearn=ham version=3.3.1 Received: from mga02.intel.com (HELO mga02.intel.com) (134.134.136.20) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Wed, 27 Mar 2013 15:32:36 +0000 Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga101.jf.intel.com with ESMTP; 27 Mar 2013 08:32:34 -0700 X-ExtLoop1: 1 Received: from fmsmsx106.amr.corp.intel.com ([10.19.9.37]) by orsmga002.jf.intel.com with ESMTP; 27 Mar 2013 08:32:34 -0700 Received: from fmsmsx102.amr.corp.intel.com ([169.254.2.241]) by FMSMSX106.amr.corp.intel.com ([169.254.6.143]) with mapi id 14.01.0355.002; Wed, 27 Mar 2013 08:32:33 -0700 From: "Iyer, Balaji V" To: "gcc-patches@gcc.gnu.org" Subject: [patch][cilkplus-merge] Fix a bug in one of the test cases Date: Wed, 27 Mar 2013 15:32:33 +0000 Message-ID: MIME-Version: 1.0 X-Virus-Found: No Not sure if this went out or not... > -----Original Message----- > From: Iyer, Balaji V > Sent: Wednesday, March 27, 2013 11:25 AM > To: 'GCC Patches (gcc-patches@gcc.gnu.org)' > Subject: [patch][cilkplus-merge] Fix a bug in one of the test cases > > Hello Everyone, > This patch will fix a bug in one of the test cases. Is it OK for pushing? > > Thanks,4 > > Balaji V. Iyer. diff --git gcc/testsuite/gcc.dg/cilk-plus/array_notation/compile/array_test2.c gcc/testsuite/gcc.dg/cilk-plus/array_notation/compile/array_test2.c index 5fb3680..fd128b1 100644 --- gcc/testsuite/gcc.dg/cilk-plus/array_notation/compile/array_test2.c +++ gcc/testsuite/gcc.dg/cilk-plus/array_notation/compile/array_test2.c @@ -26,7 +26,7 @@ int main(int argc, char **argv) array[ii] = 10; array2[ii] = 5000000; } - array2[0:10:2] = array[0:10:2]; + array2[0:5:2] = array[0:5:2]; printf("==============================================\n"); for (ii = 0; ii<10; ii++)