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 | c5139a9f0c9d4f835e4ab0b51e78d2f74fb488d9 (patch) | |
tree | 68935f2c6ae5cf533779e6a1472968ac2fa69448 /lib/CodeGen | |
parent | f3f6231fb5a86c98aa88eba7dbf2df87cc141e0d (diff) |
Prefer 'and' over '&' in comments.
Post commit code review feedback from Matt Beaumont-Gay on r174248.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@175969 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen')
-rw-r--r-- | lib/CodeGen/CodeGenFunction.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/CodeGen/CodeGenFunction.cpp b/lib/CodeGen/CodeGenFunction.cpp index dd8906ed3d..e2a18d3eb9 100644 --- a/lib/CodeGen/CodeGenFunction.cpp +++ b/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(); |