https://llvm.org/bugs/show_bug.cgi?id=28363

Ehsan Amiri <ameh...@ca.ibm.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |REOPENED
         Resolution|FIXED                       |---

--- Comment #6 from Ehsan Amiri <ameh...@ca.ibm.com> ---
The problem still exists for some simple loops such as this:

      for( i = 0 ; i < n ; i++ )
      {
         a[i] += b[i] + d[i];;
      }
(all array data types float)

again SCEV is unable to compute the iteration count of the loop: (from debug
output):

Exit Count for Loop at depth 1 containing: %vector.body<header><latch><exiting>
 from block vector.body: ***COULDNOTCOMPUTE***

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to