[PATCH] Implement variable-sized alloca instrumentation.
Yury Gribov
tetra2005 at gmail.com
Wed Dec 3 10:10:00 PST 2014
Actually exit domination wouldn't save the day. E.g.
void f() {
char *p;
...
do {
p = alloca(100);
g(p);
} while(whatever);
...
}
http://reviews.llvm.org/D6055
More information about the llvm-commits
mailing list