diff options
| author | Daniel Jasper <djasper@google.com> | 2012-11-16 18:39:22 +0000 |
|---|---|---|
| committer | Daniel Jasper <djasper@google.com> | 2012-11-16 18:39:22 +0000 |
| commit | 94a56856d24e5f8c5c30c4bec2dbca15bd2d6076 (patch) | |
| tree | abe2903e532f927605b029522b5e0b31168bb0ad /clang/lib | |
| parent | 7b8af0ea058f3d2f269ad99db8d14614e3df9ddf (diff) | |
| download | bcm5719-llvm-94a56856d24e5f8c5c30c4bec2dbca15bd2d6076.tar.gz bcm5719-llvm-94a56856d24e5f8c5c30c4bec2dbca15bd2d6076.zip | |
Fix partial-match-bind-behavior with forEachDescendant() matchers.
The problem is that a partial match of an (explicit or implicit) allOf matcher
binds results, i.e.
recordDecl(decl().bind("x"), hasName("A"))
can very well bind a record that is not named "A". With this fix, the common
cases of stumbling over this bug are fixed by the BoundNodesMap overwriting the
results of a partial match. An error can still be created with a weird
combination of anyOf and allOf (see inactive test). We need to decide whether
this is worth fixing, as the fix will have performance impact.
Review: http://llvm-reviews.chandlerc.com/D124
llvm-svn: 168177
Diffstat (limited to 'clang/lib')
| -rw-r--r-- | clang/lib/ASTMatchers/ASTMatchersInternal.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/clang/lib/ASTMatchers/ASTMatchersInternal.cpp b/clang/lib/ASTMatchers/ASTMatchersInternal.cpp index 408195d3690..f1a9ff2e09c 100644 --- a/clang/lib/ASTMatchers/ASTMatchersInternal.cpp +++ b/clang/lib/ASTMatchers/ASTMatchersInternal.cpp @@ -27,8 +27,11 @@ void BoundNodesMap::copyTo(BoundNodesTreeBuilder *Builder) const { } void BoundNodesMap::copyTo(BoundNodesMap *Other) const { - copy(NodeMap.begin(), NodeMap.end(), - inserter(Other->NodeMap, Other->NodeMap.begin())); + for (IDToNodeMap::const_iterator I = NodeMap.begin(), + E = NodeMap.end(); + I != E; ++I) { + Other->NodeMap[I->first] = I->second; + } } BoundNodesTree::BoundNodesTree() {} |

