OSDN Git Service

Fix minor typos. NFC.
authorChad Rosier <mcrosier@codeaurora.org>
Thu, 6 Aug 2015 12:49:40 +0000 (12:49 +0000)
committerChad Rosier <mcrosier@codeaurora.org>
Thu, 6 Aug 2015 12:49:40 +0000 (12:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244211 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/CodeGen/MachineBasicBlock.h

index 7be5cb2..72776aa 100644 (file)
@@ -71,7 +71,7 @@ class MachineBasicBlock : public ilist_node<MachineBasicBlock> {
 
   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 MachineBasicBlock *> {
 };
 
 // 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.