This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/20994] [4.1 regression] ICE with -ftree-vectorize


------- Additional Comments From reichelt at gcc dot gnu dot org  2005-04-13 16:09 -------
The ICE was introduced with a merge from the tree-cleanup-branch:
http://gcc.gnu.org/ml/gcc-cvs/2005-04/msg00501.html

BTW, here's a C testcase:

===============================
int foo(double* p, double* q)
{
    int i=0;

    for (; q!=p; ++q)
        if (*q)
            ++i;

    return i;
}
===============================


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20994


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]