diff options
author | Alexander Kornienko <alexfh@google.com> | 2012-07-09 10:04:07 +0000 |
---|---|---|
committer | Alexander Kornienko <alexfh@google.com> | 2012-07-09 10:04:07 +0000 |
commit | 20f6fc6220d7b6ddef7103bac1c31a9a18e559b2 (patch) | |
tree | 664ae3458ef8e4454b6c87c6bbf73720a072d2cb /clang/lib/Sema/TreeTransform.h | |
parent | 75b9cfd1f091ab0597127567885bda154394f422 (diff) | |
download | bcm5719-llvm-20f6fc6220d7b6ddef7103bac1c31a9a18e559b2.tar.gz bcm5719-llvm-20f6fc6220d7b6ddef7103bac1c31a9a18e559b2.zip |
Inline storage of attributes in AttributedStmt.
llvm-svn: 159925
Diffstat (limited to 'clang/lib/Sema/TreeTransform.h')
-rw-r--r-- | clang/lib/Sema/TreeTransform.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang/lib/Sema/TreeTransform.h b/clang/lib/Sema/TreeTransform.h index 3b41f758d9d..b03f86bb0ed 100644 --- a/clang/lib/Sema/TreeTransform.h +++ b/clang/lib/Sema/TreeTransform.h @@ -1050,7 +1050,8 @@ public: /// /// By default, performs semantic analysis to build the new statement. /// Subclasses may override this routine to provide different behavior. - StmtResult RebuildAttributedStmt(SourceLocation AttrLoc, const AttrVec &Attrs, + StmtResult RebuildAttributedStmt(SourceLocation AttrLoc, + ArrayRef<const Attr*> Attrs, Stmt *SubStmt) { return SemaRef.ActOnAttributedStmt(AttrLoc, Attrs, SubStmt); } |