[cfe-commits] r93922 - in /cfe/trunk: include/clang/Analysis/CFG.h lib/Analysis/CFG.cpp
Mike Stump
mrs at apple.com
Tue Jan 19 14:04:24 PST 2010
On Jan 19, 2010, at 2:00 PM, Mike Stump wrote:
> Add CFG support for the start and end of scopes and infrastructure for
> implicit destructor calls. WIP.
Oh, almost forgot to mention, this also wires up CallExpr to have exceptional edges as necessary. I'd love an audit for Objective-C exceptional edges for CallExprs. In particular, does
void foo();
void other();
void bar() {
foo();
other();
}
have an exception edge from foo to the exit block?
More information about the cfe-commits
mailing list