From 97f89e5b92aee5687b2bd0d2fdc25ca75076c5d5 Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Thu, 6 Aug 2015 12:49:40 +0000 Subject: [PATCH] Fix minor typos. NFC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244211 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/CodeGen/MachineBasicBlock.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 7be5cb234ed..72776aa84b7 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -71,7 +71,7 @@ class MachineBasicBlock : public ilist_node { MachineFunction *xParent; - /// Keep track of the predecessor / successor basicblocks. + /// Keep track of the predecessor / successor basic blocks. std::vector Predecessors; std::vector 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 { @@ -742,7 +742,7 @@ template <> struct GraphTraits { }; // 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. -- 2.34.1