[llvm] r244211 - Fix minor typos. NFC.

Chad Rosier via llvm-commits llvm-commits at lists.llvm.org
Thu Aug 6 05:49:41 PDT 2015


Author: mcrosier
Date: Thu Aug  6 07:49:40 2015
New Revision: 244211

URL: http://llvm.org/viewvc/llvm-project?rev=244211&view=rev
Log:
Fix minor typos. NFC.

Modified:
    llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h

Modified: llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h?rev=244211&r1=244210&r2=244211&view=diff
==============================================================================
--- llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h (original)
+++ llvm/trunk/include/llvm/CodeGen/MachineBasicBlock.h Thu Aug  6 07:49:40 2015
@@ -71,7 +71,7 @@ class MachineBasicBlock : public ilist_n
 
   MachineFunction *xParent;
 
-  /// Keep track of the predecessor / successor basicblocks.
+  /// Keep track of the predecessor / successor basic blocks.
   std::vector<MachineBasicBlock *> Predecessors;
   std::vector<MachineBasicBlock *> Successors;
 
@@ -712,7 +712,7 @@ struct MBB2NumberFunctor :
 //===--------------------------------------------------------------------===//
 
 // Provide specializations of GraphTraits to be able to treat a
-// MachineFunction as a graph of MachineBasicBlocks...
+// MachineFunction as a graph of MachineBasicBlocks.
 //
 
 template <> struct GraphTraits<MachineBasicBlock *> {
@@ -742,7 +742,7 @@ template <> struct GraphTraits<const Mac
 };
 
 // Provide specializations of GraphTraits to be able to treat a
-// MachineFunction as a graph of MachineBasicBlocks... and to walk it
+// MachineFunction as a graph of MachineBasicBlocks and to walk it
 // in inverse order.  Inverse order for a function is considered
 // to be when traversing the predecessor edges of a MBB
 // instead of the successor edges.




More information about the llvm-commits mailing list