From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id A783938582BC; Wed, 23 Nov 2022 12:51:05 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org A783938582BC DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1669207865; bh=XJrbIaqQbLVpm2pfjXXfEdX/9uvjDHdyzafHuU/gJKQ=; h=From:To:Subject:Date:In-Reply-To:References:From; b=EwlomYsfIdcGdsyJP5fopUTFgMXvDpe124TxJJ2UU3/75sfsL8Kr0xgtifyPuQHAN gdoxJm1zxgBKKSLsPon5QEhXHsf8ETalJUzYKGSNDcRdchol+Ukk8QOsldMy+9zRFw XuSYz0EIS2P+4+dPSWzoc8/8GefX5e1S/wDY7Jtk= From: "jakub at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug fortran/107317] [10/11/12/13 Regression] ICE in emit_redzone_byte, at asan.cc:1508 Date: Wed, 23 Nov 2022 12:51:01 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: fortran X-Bugzilla-Version: 13.0 X-Bugzilla-Keywords: error-recovery, ice-on-invalid-code X-Bugzilla-Severity: normal X-Bugzilla-Who: jakub at gcc dot gnu.org X-Bugzilla-Status: NEW X-Bugzilla-Resolution: X-Bugzilla-Priority: P4 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: 10.5 X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 List-Id: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D107317 --- Comment #4 from Jakub Jelinek --- Corresponding C testcase: -m32 -O2 -fsanitize=3Daddress void bar (float *, float *); void foo (void) { float a[400000000]; float b[200000000]; bar (a, b); }=