commit | ef482764777252110a1095e7f5b7a300ccb26d4e | [log] [tgz] |
---|---|---|
author | Douglas Gregor <doug.gregor@gmail.com> | Fri May 15 21:56:04 2009 +0000 |
committer | Douglas Gregor <doug.gregor@gmail.com> | Fri May 15 21:56:04 2009 +0000 |
tree | 8ba11394ed186fda639bea1f3f03482c94e86b99 | |
parent | 57d4e11f6a967e56144094f3fbf770ff7897361b [diff] [blame] |
Template instantiation for do-while statements. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71899 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Frontend/PCHWriterStmt.cpp b/lib/Frontend/PCHWriterStmt.cpp index af5d563..827676a 100644 --- a/lib/Frontend/PCHWriterStmt.cpp +++ b/lib/Frontend/PCHWriterStmt.cpp
@@ -193,6 +193,7 @@ Writer.WriteSubStmt(S->getCond()); Writer.WriteSubStmt(S->getBody()); Writer.AddSourceLocation(S->getDoLoc(), Record); + Writer.AddSourceLocation(S->getWhileLoc(), Record); Code = pch::STMT_DO; }