diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-05-16 00:20:29 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-05-16 00:20:29 +0000 |
commit | 5f1b9e689fa5c101512aef99225f2afea1673449 (patch) | |
tree | dcdf4626e7de56f930b8f9fb1b47b6a91e997ef3 /lib/Frontend/PCHReaderStmt.cpp | |
parent | dbb26db1d426fb6caaaf1b4fa47b46d1947c12c9 (diff) |
Template instantiation for IndirectGotoStmt. Now my life is complete.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71917 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PCHReaderStmt.cpp')
-rw-r--r-- | lib/Frontend/PCHReaderStmt.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Frontend/PCHReaderStmt.cpp b/lib/Frontend/PCHReaderStmt.cpp index a729003a99..d4ff6adda0 100644 --- a/lib/Frontend/PCHReaderStmt.cpp +++ b/lib/Frontend/PCHReaderStmt.cpp @@ -236,6 +236,7 @@ unsigned PCHStmtReader::VisitGotoStmt(GotoStmt *S) { unsigned PCHStmtReader::VisitIndirectGotoStmt(IndirectGotoStmt *S) { VisitStmt(S); S->setGotoLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); + S->setStarLoc(SourceLocation::getFromRawEncoding(Record[Idx++])); S->setTarget(cast_or_null<Expr>(StmtStack.back())); return 1; } |