]> granicus.if.org Git - clang/commitdiff
Prefer 'and' over '&' in comments.
authorDavid Blaikie <dblaikie@gmail.com>
Sat, 23 Feb 2013 19:20:56 +0000 (19:20 +0000)
committerDavid Blaikie <dblaikie@gmail.com>
Sat, 23 Feb 2013 19:20:56 +0000 (19:20 +0000)
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

lib/CodeGen/CodeGenFunction.cpp

index dd8906ed3d088983aad77117c266120c15a13882..e2a18d3eb91ff40c032247809c3b71c3d312ea26 100644 (file)
@@ -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();