[llvm] r189513 - Period.

David Blaikie dblaikie at gmail.com
Wed Aug 28 13:45:45 PDT 2013


Author: dblaikie
Date: Wed Aug 28 15:45:45 2013
New Revision: 189513

URL: http://llvm.org/viewvc/llvm-project?rev=189513&view=rev
Log:
Period.

Modified:
    llvm/trunk/lib/IR/DebugInfo.cpp

Modified: llvm/trunk/lib/IR/DebugInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/IR/DebugInfo.cpp?rev=189513&r1=189512&r2=189513&view=diff
==============================================================================
--- llvm/trunk/lib/IR/DebugInfo.cpp (original)
+++ llvm/trunk/lib/IR/DebugInfo.cpp Wed Aug 28 15:45:45 2013
@@ -652,7 +652,7 @@ MDString *DICompositeType::getIdentifier
 #ifndef NDEBUG
 static void VerifySubsetOf(const MDNode *LHS, const MDNode *RHS) {
   for (unsigned i = 0; i != LHS->getNumOperands(); ++i) {
-    // Skip the 'empty' list (that's a single i32 0, rather than truly empty)
+    // Skip the 'empty' list (that's a single i32 0, rather than truly empty).
     if (i == 0 && isa<ConstantInt>(LHS->getOperand(i)))
       continue;
     const MDNode *E = cast<MDNode>(LHS->getOperand(i));
@@ -672,7 +672,7 @@ void DICompositeType::setTypeArray(DIArr
   TrackingVH<MDNode> N(*this);
   if (Elements) {
 #ifndef NDEBUG
-    // Check that the new list of members contains all the old members as well
+    // Check that the new list of members contains all the old members as well.
     if (const MDNode *El = cast_or_null<MDNode>(N->getOperand(10)))
       VerifySubsetOf(El, Elements);
 #endif





More information about the llvm-commits mailing list