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 | cbf40d22bf98fb0d30b2c6a9e8a69aa601de2a1a (patch) | |
tree | a662e4fcab4abe436c37c9ba6445cc61fb10432f /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | f85744235bd6dda8d337196a870f9876b4233c40 (diff) | |
download | bcm5719-llvm-cbf40d22bf98fb0d30b2c6a9e8a69aa601de2a1a.tar.gz bcm5719-llvm-cbf40d22bf98fb0d30b2c6a9e8a69aa601de2a1a.zip |
Sentenc-ify comment added in r174206.
Based on post-commit review by Paul Robinson.
llvm-svn: 174248
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index 119b90aa081..50e52c69f80 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/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(); |