aboutsummaryrefslogtreecommitdiffstats
path: root/lib/VMCore/Module.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-01-29 18:41:12 +0000
committerChris Lattner <sabre@nondot.org>2005-01-29 18:41:12 +0000
commit3cf8e6857e1e5545048fc6fb6d834d50a7b7cf8e (patch)
tree235c7be41422adfe5d7047fade45386df6eeb31b /lib/VMCore/Module.cpp
parent38653f0ac83b793142cd0f3000ba5b1667b08a80 (diff)
downloadexternal_llvm-3cf8e6857e1e5545048fc6fb6d834d50a7b7cf8e.zip
external_llvm-3cf8e6857e1e5545048fc6fb6d834d50a7b7cf8e.tar.gz
external_llvm-3cf8e6857e1e5545048fc6fb6d834d50a7b7cf8e.tar.bz2
Adjust to ilist changes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19923 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Module.cpp')
-rw-r--r--lib/VMCore/Module.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/VMCore/Module.cpp b/lib/VMCore/Module.cpp
index 3759cfd..a935bf6 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<Function>::createNode() {
+Function *ilist_traits<Function>::createSentinal() {
FunctionType *FTy =
FunctionType::get(Type::VoidTy, std::vector<const Type*>(), false);
Function *Ret = new Function(FTy, GlobalValue::ExternalLinkage);
@@ -36,7 +36,7 @@ Function *ilist_traits<Function>::createNode() {
LeakDetector::removeGarbageObject(Ret);
return Ret;
}
-GlobalVariable *ilist_traits<GlobalVariable>::createNode() {
+GlobalVariable *ilist_traits<GlobalVariable>::createSentinal() {
GlobalVariable *Ret = new GlobalVariable(Type::IntTy, false,
GlobalValue::ExternalLinkage);
// This should not be garbage monitored.