diff options
author | John McCall <rjmccall@apple.com> | 2011-06-15 22:51:16 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2011-06-15 22:51:16 +0000 |
commit | ce45f88e451387c46bfd6b53c75c7fa72b730ba1 (patch) | |
tree | 5c65ee86b724ca981633f0453074d6b4ad4fc22f /clang/lib | |
parent | 5a0bee7c5f06333b68740fce3311b1a164ef93ea (diff) | |
download | bcm5719-llvm-ce45f88e451387c46bfd6b53c75c7fa72b730ba1.tar.gz bcm5719-llvm-ce45f88e451387c46bfd6b53c75c7fa72b730ba1.zip |
Introduce a utility routine for checking whether a block's captures
include a specific variable.
llvm-svn: 133102
Diffstat (limited to 'clang/lib')
-rw-r--r-- | clang/lib/AST/Decl.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/lib/AST/Decl.cpp b/clang/lib/AST/Decl.cpp index 12357c07a79..8661e7405fb 100644 --- a/clang/lib/AST/Decl.cpp +++ b/clang/lib/AST/Decl.cpp @@ -2376,6 +2376,16 @@ void BlockDecl::setCaptures(ASTContext &Context, Captures = static_cast<Capture*>(buffer); } +bool BlockDecl::capturesVariable(const VarDecl *variable) const { + for (capture_const_iterator + i = capture_begin(), e = capture_end(); i != e; ++i) + // Only auto vars can be captured, so no redeclaration worries. + if (i->getVariable() == variable) + return true; + + return false; +} + SourceRange BlockDecl::getSourceRange() const { return SourceRange(getLocation(), Body? Body->getLocEnd() : getLocation()); } |