Improve spelling

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19931 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2005-01-30 00:13:34 +00:00
parent bca81448ac
commit bbec41dbac
2 changed files with 4 additions and 4 deletions

View File

@ -45,8 +45,8 @@ public:
static void setPrev(MachineInstr* N, MachineInstr* prev) { N->prev = prev; } static void setPrev(MachineInstr* N, MachineInstr* prev) { N->prev = prev; }
static void setNext(MachineInstr* N, MachineInstr* next) { N->next = next; } static void setNext(MachineInstr* N, MachineInstr* next) { N->next = next; }
static MachineInstr* createSentinal(); static MachineInstr* createSentinel();
static void destroySentinal(MachineInstr *MI) { delete MI; } static void destroySentinel(MachineInstr *MI) { delete MI; }
void addNodeToList(MachineInstr* N); void addNodeToList(MachineInstr* N);
void removeNodeFromList(MachineInstr* N); void removeNodeFromList(MachineInstr* N);
void transferNodesFromList( void transferNodesFromList(

View File

@ -55,8 +55,8 @@ public:
N->Next = next; N->Next = next;
} }
static MachineBasicBlock* createSentinal(); static MachineBasicBlock* createSentinel();
static void destroySentinal(MachineBasicBlock *MBB) { delete MBB; } static void destroySentinel(MachineBasicBlock *MBB) { delete MBB; }
void addNodeToList(MachineBasicBlock* N); void addNodeToList(MachineBasicBlock* N);
void removeNodeFromList(MachineBasicBlock* N); void removeNodeFromList(MachineBasicBlock* N);
void transferNodesFromList(iplist<MachineBasicBlock, void transferNodesFromList(iplist<MachineBasicBlock,