diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-02-02 00:36:58 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-02-02 00:36:58 +0000 |
commit | 9ceca75892202e1791fb002be6418c8720d74912 (patch) | |
tree | 2daa6311bea47e77ed4f22c4044b774b7db8f83a /lib/CodeGen/CodeGenFunction.cpp | |
parent | 083b90d654476c3297f85ff844ac2f57bb7f4a21 (diff) |
Sentenc-ify comment added in r174206.
Based on post-commit review by Paul Robinson.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@174248 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index 119b90aa08..50e52c69f8 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/lib/CodeGen/CodeGenFunction.cpp @@ -144,8 +144,8 @@ void CodeGenFunction::EmitReturnBlock() { if (BI && BI->isUnconditional() && BI->getSuccessor(0) == ReturnBlock.getBlock()) { // Reset insertion point, including debug location, and delete the branch. - // this is really subtle & only works because the next change in location - // will hit the caching in CGDebugInfo::EmitLocation & not override this + // This is really subtle & only works because the next change in location + // will hit the caching in CGDebugInfo::EmitLocation & not override this. Builder.SetCurrentDebugLocation(BI->getDebugLoc()); Builder.SetInsertPoint(BI->getParent()); BI->eraseFromParent(); |