diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-05-15 21:56:04 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-05-15 21:56:04 +0000 |
commit | 9f3ca2a7747bd47f14d7693f333103fac29a24d2 (patch) | |
tree | 8ba11394ed186fda639bea1f3f03482c94e86b99 /lib/Frontend/PCHWriterStmt.cpp | |
parent | 463b87687346d3990a9854382abfb41810f0678a (diff) |
Template instantiation for do-while statements.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71899 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 af5d563587..827676ad30 100644 --- a/lib/Frontend/PCHWriterStmt.cpp +++ b/lib/Frontend/PCHWriterStmt.cpp @@ -193,6 +193,7 @@ void PCHStmtWriter::VisitDoStmt(DoStmt *S) { Writer.WriteSubStmt(S->getCond()); Writer.WriteSubStmt(S->getBody()); Writer.AddSourceLocation(S->getDoLoc(), Record); + Writer.AddSourceLocation(S->getWhileLoc(), Record); Code = pch::STMT_DO; } |