From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 48039 invoked by alias); 20 Dec 2018 16:59:14 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 48006 invoked by uid 89); 20 Dec 2018 16:59:14 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=no version=3.3.2 spammy= X-HELO: mail-qk1-f180.google.com Received: from mail-qk1-f180.google.com (HELO mail-qk1-f180.google.com) (209.85.222.180) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 20 Dec 2018 16:59:13 +0000 Received: by mail-qk1-f180.google.com with SMTP id r71so1384898qkr.10 for ; Thu, 20 Dec 2018 08:59:12 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=to:from:subject:message-id:date:user-agent:mime-version :content-language:content-transfer-encoding; bh=ultRLDnrW7fvsEFoQ9xXf60QAIUjt06tAZ0+Ap6kew4=; b=KwJchWBk6MgvmG+M/eRCv2p/nVh/rX8cb9Oo1EEGQfwU7Pred+U/EA0WPYVtEEQMYQ 4UE7tjw8AFoU1w6kOx31cBAKzVj+43XG9BwkwmyUdGlW89aFGTP0FvYG2AqvXOLaSLXI eYH1fn9HqWDPYPsXM73gMheDPg/OpJ2aPU/w5/MimWP2XTNT7pEB87Dxu8DmJJyC26V/ IEU55+6Dk1nEHexLdlZa2/FsOclk393DpdyV4bzz25g8md1w3ZcsQh4Le7MvcPw/QJ+n Z7ct/+GbhwiN79ttkKYr6lvnw9lvhik4mQZggG07uAfxDOkJEI+R6pdnI80cOZubwJWE 86uA== Return-Path: Received: from [192.168.0.106] (97-118-99-160.hlrn.qwest.net. [97.118.99.160]) by smtp.gmail.com with ESMTPSA id o25sm4879202qtj.10.2018.12.20.08.59.09 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 20 Dec 2018 08:59:09 -0800 (PST) To: gcc-patches@gcc.gnu.org From: Martin Sebor Subject: [committed] new test for PR84053 Message-ID: <4e5caea0-5715-7836-f48f-4aa62fcbff37@gmail.com> Date: Thu, 20 Dec 2018 17:40:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.3.1 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2018-12/txt/msg01482.txt.bz2 PR84053 - [7/8/9 Regression] missing -Warray-bounds accessing a local array across inlined function boundaries, started to pass with r262893 (a fix for a couple of different -Warray-bounds bugs) but a test case for it was never added. After putting one together I noticed that although it passes in LP64 it still fails in ILP32. I added the test in r267302 to prevent regressions in LP64 and xfailed it for ILP32. I also reopened the bug to make sure it doesn't get forgotten. Martin