From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 48) id 911BD3938C35; Fri, 1 May 2020 21:04:06 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 911BD3938C35 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1588367046; bh=OuwTWHN8M2Vx26jbslp+0+nKBFUWO3nJX0aqA+eozco=; h=From:To:Subject:Date:From; b=ZdfdNuuDyATt6/tKoBA92wIANCxtHXWmW9LnKCh07neI7YwwF3fkkQMa6jfu5kNmu h5twDfWptns5icfHIPYLbNXF3vis+ZkMlwmrE7ZlhDqGfZ6f1v1uQbbXEC+YjxBKpj BvKCJtLQ+0z60HegbDQHW7GKzGJcEZIju1qJ+0wc= From: "gabravier at gmail dot com" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/94911] New: Failure to optimize comparisons of VLA sizes Date: Fri, 01 May 2020 21:04:06 +0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: new X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 10.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: gabravier at gmail dot com X-Bugzilla-Status: UNCONFIRMED X-Bugzilla-Resolution: X-Bugzilla-Priority: P3 X-Bugzilla-Assigned-To: unassigned at gcc dot gnu.org X-Bugzilla-Target-Milestone: --- X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: bug_id short_desc product version bug_status bug_severity priority component assigned_to reporter target_milestone Message-ID: 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 X-BeenThere: gcc-bugs@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-bugs mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 May 2020 21:04:06 -0000 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=3D94911 Bug ID: 94911 Summary: Failure to optimize comparisons of VLA sizes Product: gcc Version: 10.0 Status: UNCONFIRMED Severity: normal Priority: P3 Component: tree-optimization Assignee: unassigned at gcc dot gnu.org Reporter: gabravier at gmail dot com Target Milestone: --- inline void assume(_Bool b) { if (!b) __builtin_unreachable(); } _Bool f(int n) { assume(n >=3D 1); typedef int A[n]; ++n; A a; int b[n]; n -=3D 2; typedef int C[n]; C c; return (sizeof(a) < sizeof(b)) && (sizeof(a) > sizeof(c)); } This C code (this will have different results in C++ with GCC) should always `return true`. LLVM makes this transformation, but GCC does not. Also, extra question, is the fact that this always returns `false` when compiled as C++ normal ? Clang has it return `true` if compiled as C++.=