diff options
author | Fariborz Jahanian <fjahanian@apple.com> | 2010-06-04 19:06:53 +0000 |
---|---|---|
committer | Fariborz Jahanian <fjahanian@apple.com> | 2010-06-04 19:06:53 +0000 |
commit | 89f9d3a7651d1225f3f56ae3387c83b98a26da00 (patch) | |
tree | 14da82887f160245b293c572a1a4d7b3ff712a8c /lib/Frontend/PCHWriterStmt.cpp | |
parent | c71a4915ca216847599d03cab4ed1c5086b0eb43 (diff) |
Added a field to BlockDeclRefExpr for future use.
No functionality change yet.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@105479 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHWriterStmt.cpp')
-rw-r--r-- | lib/Frontend/PCHWriterStmt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Frontend/PCHWriterStmt.cpp b/lib/Frontend/PCHWriterStmt.cpp index a9ee43527c..b3501d0984 100644 --- a/lib/Frontend/PCHWriterStmt.cpp +++ b/lib/Frontend/PCHWriterStmt.cpp @@ -688,6 +688,7 @@ void PCHStmtWriter::VisitBlockDeclRefExpr(BlockDeclRefExpr *E) { Writer.AddSourceLocation(E->getLocation(), Record); Record.push_back(E->isByRef()); Record.push_back(E->isConstQualAdded()); + Writer.WriteSubStmt(E->getCopyConstructorExpr()); Code = pch::EXPR_BLOCK_DECL_REF; } |