summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-30 00:13:34 +0000
committerChris Lattner <sabre@nondot.org>2005-01-30 00:13:34 +0000
commit79a85fada1cb9d1e8f25aac1eb99348032b2fd22 (patch)
tree67f8fa10aa22a25f46de6c17bf0d5b7e9b977ec6
parentf6c93e36c7832e4b831f5c043173a9bb3961b936 (diff)
downloadbcm5719-llvm-79a85fada1cb9d1e8f25aac1eb99348032b2fd22.tar.gz
bcm5719-llvm-79a85fada1cb9d1e8f25aac1eb99348032b2fd22.zip
Improve spelling
llvm-svn: 19931
-rw-r--r--llvm/include/llvm/CodeGen/MachineBasicBlock.h4
-rw-r--r--llvm/include/llvm/CodeGen/MachineFunction.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/llvm/include/llvm/CodeGen/MachineBasicBlock.h b/llvm/include/llvm/CodeGen/MachineBasicBlock.h
index 4cf4b35c660..3f781222c96 100644
--- a/llvm/include/llvm/CodeGen/MachineBasicBlock.h
+++ b/llvm/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(
diff --git a/llvm/include/llvm/CodeGen/MachineFunction.h b/llvm/include/llvm/CodeGen/MachineFunction.h
index ffd941d1112..fee690a7b90 100644
--- a/llvm/include/llvm/CodeGen/MachineFunction.h
+++ b/llvm/include/llvm/CodeGen/MachineFunction.h
@@ -55,8 +55,8 @@ public:
N->Next = next;
}
- static MachineBasicBlock* createSentinal();
- static void destroySentinal(MachineBasicBlock *MBB) { delete MBB; }
+ static MachineBasicBlock* createSentinel();
+ static void destroySentinel(MachineBasicBlock *MBB) { delete MBB; }
void addNodeToList(MachineBasicBlock* N);
void removeNodeFromList(MachineBasicBlock* N);
void transferNodesFromList(iplist<MachineBasicBlock,
OpenPOWER on IntegriCloud