From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15356 invoked by alias); 31 Jul 2014 18:09:15 -0000 Mailing-List: contact gcc-bugs-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-bugs-owner@gcc.gnu.org Received: (qmail 14890 invoked by uid 48); 31 Jul 2014 18:09:08 -0000 From: "olegendo at gcc dot gnu.org" To: gcc-bugs@gcc.gnu.org Subject: [Bug tree-optimization/58122] loops are not evaluated at compile time if loop count > 17 Date: Thu, 31 Jul 2014 18:09:00 -0000 X-Bugzilla-Reason: CC X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: gcc X-Bugzilla-Component: tree-optimization X-Bugzilla-Version: 4.9.0 X-Bugzilla-Keywords: X-Bugzilla-Severity: normal X-Bugzilla-Who: olegendo at gcc dot gnu.org X-Bugzilla-Status: UNCONFIRMED 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: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit X-Bugzilla-URL: http://gcc.gnu.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-SW-Source: 2014-07/txt/msg02079.txt.bz2 https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58122 --- Comment #4 from Oleg Endo --- (In reply to Oleg Endo from comment #0) > > I've also briefly checked with trunk rev 201282 and the problem seems to be > still there. Here is a reduced test case: > > int test (void) > { > int sum = 0; > for (int x = 0; x < 100; x++) > sum += x; > > return sum; > } > As of r213381 the reduced test case seems to work OK with at least loop counts up to 40000.