Adjust to ilist changes.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19923 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner
2005-01-29 18:41:12 +00:00
parent 38653f0ac8
commit 3cf8e6857e
6 changed files with 11 additions and 8 deletions

View File

@ -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.