diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-30 00:09:23 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-30 00:09:23 +0000 |
commit | f6c93e36c7832e4b831f5c043173a9bb3961b936 (patch) | |
tree | 31fdc37c591c1691152f196ebd941677f083d5c9 /llvm/lib/CodeGen/MachineBasicBlock.cpp | |
parent | 5ca41e2b68fb477c8e7b877c8d0e3da2d6171fda (diff) | |
download | llvm-f6c93e36c7832e4b831f5c043173a9bb3961b936.zip llvm-f6c93e36c7832e4b831f5c043173a9bb3961b936.tar.gz llvm-f6c93e36c7832e4b831f5c043173a9bb3961b936.tar.bz2 |
Improve conformance with the Misha spelling benchmark suite
llvm-svn: 19930
Diffstat (limited to 'llvm/lib/CodeGen/MachineBasicBlock.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineBasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineBasicBlock.cpp b/llvm/lib/CodeGen/MachineBasicBlock.cpp index a69d158..6774dde 100644 --- a/llvm/lib/CodeGen/MachineBasicBlock.cpp +++ b/llvm/lib/CodeGen/MachineBasicBlock.cpp @@ -46,7 +46,7 @@ void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock* N) { } -MachineInstr* ilist_traits<MachineInstr>::createSentinal() { +MachineInstr* ilist_traits<MachineInstr>::createSentinel() { MachineInstr* dummy = new MachineInstr(0, 0); LeakDetector::removeGarbageObject(dummy); return dummy; |