diff options
author | David Blaikie <dblaikie@gmail.com> | 2013-02-23 19:20:56 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@gmail.com> | 2013-02-23 19:20:56 +0000 |
commit | 1d969f42a02b25d9e255b6fee355199d6f49a480 (patch) | |
tree | a755a652408037ea053069fea1a6bdd96cded6c4 /clang/lib/CodeGen/CodeGenFunction.cpp | |
parent | 2b0013e93bc4b2fb3ed5f44aa116e34af0d85679 (diff) | |
download | bcm5719-llvm-1d969f42a02b25d9e255b6fee355199d6f49a480.tar.gz bcm5719-llvm-1d969f42a02b25d9e255b6fee355199d6f49a480.zip |
Prefer 'and' over '&' in comments.
Post commit code review feedback from Matt Beaumont-Gay on r174248.
llvm-svn: 175969
Diffstat (limited to 'clang/lib/CodeGen/CodeGenFunction.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenFunction.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/clang/lib/CodeGen/CodeGenFunction.cpp b/clang/lib/CodeGen/CodeGenFunction.cpp index dd8906ed3d0..e2a18d3eb91 100644 --- a/clang/lib/CodeGen/CodeGenFunction.cpp +++ b/clang/lib/CodeGen/CodeGenFunction.cpp @@ -144,9 +144,10 @@ void CodeGenFunction::EmitReturnBlock() { dyn_cast<llvm::BranchInst>(*ReturnBlock.getBlock()->use_begin()); 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. + // Reset insertion point, including debug location, and delete the + // branch. This is really subtle and only works because the next change + // in location will hit the caching in CGDebugInfo::EmitLocation and not + // override this. Builder.SetCurrentDebugLocation(BI->getDebugLoc()); Builder.SetInsertPoint(BI->getParent()); BI->eraseFromParent(); |