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/MachineFunction.cpp | |
parent | 5ca41e2b68fb477c8e7b877c8d0e3da2d6171fda (diff) | |
download | bcm5719-llvm-f6c93e36c7832e4b831f5c043173a9bb3961b936.tar.gz bcm5719-llvm-f6c93e36c7832e4b831f5c043173a9bb3961b936.zip |
Improve conformance with the Misha spelling benchmark suite
llvm-svn: 19930
Diffstat (limited to 'llvm/lib/CodeGen/MachineFunction.cpp')
-rw-r--r-- | llvm/lib/CodeGen/MachineFunction.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/MachineFunction.cpp b/llvm/lib/CodeGen/MachineFunction.cpp index 903346d9146..d49a1ddb4b1 100644 --- a/llvm/lib/CodeGen/MachineFunction.cpp +++ b/llvm/lib/CodeGen/MachineFunction.cpp @@ -90,7 +90,7 @@ FunctionPass *llvm::createMachineCodeDeleter() { // MachineFunction implementation //===---------------------------------------------------------------------===// -MachineBasicBlock* ilist_traits<MachineBasicBlock>::createSentinal() { +MachineBasicBlock* ilist_traits<MachineBasicBlock>::createSentinel() { MachineBasicBlock* dummy = new MachineBasicBlock(); LeakDetector::removeGarbageObject(dummy); return dummy; |