r175969 - Prefer 'and' over '&' in comments.

David Blaikie dblaikie at gmail.com
Sat Feb 23 11:20:57 PST 2013


Author: dblaikie
Date: Sat Feb 23 13:20:56 2013
New Revision: 175969

URL: http://llvm.org/viewvc/llvm-project?rev=175969&view=rev
Log:
Prefer 'and' over '&' in comments.

Post commit code review feedback from Matt Beaumont-Gay on r174248.

Modified:
    cfe/trunk/lib/CodeGen/CodeGenFunction.cpp

Modified: cfe/trunk/lib/CodeGen/CodeGenFunction.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/CodeGen/CodeGenFunction.cpp?rev=175969&r1=175968&r2=175969&view=diff
==============================================================================
--- cfe/trunk/lib/CodeGen/CodeGenFunction.cpp (original)
+++ cfe/trunk/lib/CodeGen/CodeGenFunction.cpp Sat Feb 23 13:20:56 2013
@@ -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();





More information about the cfe-commits mailing list