diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-30 00:13:34 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-30 00:13:34 +0000 |
commit | bbec41dbaca7ced24f77ec7173f0c1e317aae908 (patch) | |
tree | 43c964e6ac3c4818af484a0a7b8c6801b9b306f5 /include/llvm/CodeGen/MachineBasicBlock.h | |
parent | bca81448ac8e19c588c9a4ad16fc70732b76327c (diff) |
Improve spelling
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19931 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineBasicBlock.h')
-rw-r--r-- | include/llvm/CodeGen/MachineBasicBlock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/CodeGen/MachineBasicBlock.h b/include/llvm/CodeGen/MachineBasicBlock.h index 4cf4b35c66..3f781222c9 100644 --- a/include/llvm/CodeGen/MachineBasicBlock.h +++ b/include/llvm/CodeGen/MachineBasicBlock.h @@ -45,8 +45,8 @@ public: static void setPrev(MachineInstr* N, MachineInstr* prev) { N->prev = prev; } static void setNext(MachineInstr* N, MachineInstr* next) { N->next = next; } - static MachineInstr* createSentinal(); - static void destroySentinal(MachineInstr *MI) { delete MI; } + static MachineInstr* createSentinel(); + static void destroySentinel(MachineInstr *MI) { delete MI; } void addNodeToList(MachineInstr* N); void removeNodeFromList(MachineInstr* N); void transferNodesFromList( |