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/78076] [7 Regression] Conditional jump or move depends on uninitialised value @ tree-vect-loop.c:2307


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=78076

--- Comment #1 from Markus Trippelsdorf <trippels at gcc dot gnu.org> ---
int a, b;
void fn1() {
  for (; a < 0; ++a) {
    b = 0;
    for (; b < a; b++)
      ;
  }
}

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