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/VMCore/Function.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/VMCore/Function.cpp')
-rw-r--r-- | llvm/lib/VMCore/Function.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/VMCore/Function.cpp b/llvm/lib/VMCore/Function.cpp index 770715f67da..19f437aeb88 100644 --- a/llvm/lib/VMCore/Function.cpp +++ b/llvm/lib/VMCore/Function.cpp @@ -20,7 +20,7 @@ #include "llvm/ADT/StringExtras.h" using namespace llvm; -BasicBlock *ilist_traits<BasicBlock>::createSentinal() { +BasicBlock *ilist_traits<BasicBlock>::createSentinel() { BasicBlock *Ret = new BasicBlock(); // This should not be garbage monitored. LeakDetector::removeGarbageObject(Ret); @@ -31,7 +31,7 @@ iplist<BasicBlock> &ilist_traits<BasicBlock>::getList(Function *F) { return F->getBasicBlockList(); } -Argument *ilist_traits<Argument>::createSentinal() { +Argument *ilist_traits<Argument>::createSentinel() { Argument *Ret = new Argument(Type::IntTy); // This should not be garbage monitored. LeakDetector::removeGarbageObject(Ret); |