Skip to content
Snippets Groups Projects
Commit 0674b813 authored by Jordan Rose's avatar Jordan Rose
Browse files

[analyzer] Don't create new PostStmt nodes if we don't have to.

Doing this caused us to mistakenly think we'd seen a particular state before
when we actually hadn't, which resulted in false negatives. Credit to
Rafael Auler for discovering this issue!

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@211209 91177308-0d34-0410-b5e6-96231b3b80d8
parent 48727629
No related branches found
No related tags found
No related merge requests found
......@@ -541,7 +541,7 @@ void CoreEngine::enqueueStmtNode(ExplodedNode *N,
CFGStmt CS = (*Block)[Idx].castAs<CFGStmt>();
PostStmt Loc(CS.getStmt(), N->getLocationContext());
if (Loc == N->getLocation()) {
if (Loc == N->getLocation().withTag(nullptr)) {
// Note: 'N' should be a fresh node because otherwise it shouldn't be
// a member of Deferred.
WList->enqueue(N, Block, Idx+1);
......
// RUN: %clang_cc1 -analyze %s -analyzer-checker=core,osx.cocoa.RetainCount -fblocks -verify
// This test is checking behavior when a single checker runs only with the core
// checkers, testing that the traversal order in the CFG does not affect the
// reporting of an error.
#import "Inputs/system-header-simulator-objc.h"
void testDoubleRelease(BOOL z) {
id x = [[NSObject alloc] init];
if (z) {
[x release];
} else {
;
}
[x release]; // expected-warning {{Reference-counted object is used after it is released}}
}
void testDoubleRelease2(BOOL z) {
id x = [[NSObject alloc] init];
if (z) {
;
} else {
[x release];
}
[x release]; // expected-warning {{Reference-counted object is used after it is released}}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment