Hello<br><br>I think I found a bug in clang/include/clang/Analysis/ProgramPoint.h:224.<br><br>static bool classof(const ProgramPoint *location) {<br>    unsigned k = location->getKind();<br>    return k == PreLoadKind || PreStoreKind;<br>
  }<br><br>Shouldn't it be "return (k == PreLoadKind) || (k == PreStoreKind);"?<br>Or is this intended?<br><br>-- Marius Wachtler<br><br><br><br>