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