http://llvm.org/bugs/show_bug.cgi?id=11034
Nick Lewycky <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED CC| |[email protected] Resolution| |FIXED --- Comment #22 from Nick Lewycky <[email protected]> 2011-10-22 14:58:45 CDT --- Thanks! Committed in r142731. Improved compile time is not surprising; when SCEV fails to fully solve a loop, it will get queries for that loop over and over again (sometimes without SCEV having been preserved in between) and will spend a lot of time trying to resolve it. Solving it once up front is faster. -- Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. _______________________________________________ LLVMbugs mailing list [email protected] http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs
