From bca81448ac8e19c588c9a4ad16fc70732b76327c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 30 Jan 2005 00:09:23 +0000 Subject: Improve conformance with the Misha spelling benchmark suite git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19930 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/VMCore/Module.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/VMCore/Module.cpp') diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp index a935bf64b0..0c005494e1 100644 --- a/lib/VMCore/Module.cpp +++ b/lib/VMCore/Module.cpp @@ -28,7 +28,7 @@ using namespace llvm; // Methods to implement the globals and functions lists. // -Function *ilist_traits::createSentinal() { +Function *ilist_traits::createSentinel() { FunctionType *FTy = FunctionType::get(Type::VoidTy, std::vector(), false); Function *Ret = new Function(FTy, GlobalValue::ExternalLinkage); @@ -36,7 +36,7 @@ Function *ilist_traits::createSentinal() { LeakDetector::removeGarbageObject(Ret); return Ret; } -GlobalVariable *ilist_traits::createSentinal() { +GlobalVariable *ilist_traits::createSentinel() { GlobalVariable *Ret = new GlobalVariable(Type::IntTy, false, GlobalValue::ExternalLinkage); // This should not be garbage monitored. -- cgit v1.2.3-18-g5258