njames93 added a comment.

May not be one for this patch, but how does this check handle volatile loop 
variables and cases where modification isn't visible in the context e.g.

  extern void mutate(bool &);
  volatile bool* LoopCond;
  
  void foo() {
    for (bool Cond = true; Cond; mutate(Cond)) { wait(0); }
    for (*LoopCond = true; *LoopCond;) { wait(0); }
  }


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D73270/new/

https://reviews.llvm.org/D73270



_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to