diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/CodeGen/MachineBasicBlock.cpp | 2 | ||||
-rw-r--r-- | lib/CodeGen/MachineFunction.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/BasicBlock.cpp | 2 | ||||
-rw-r--r-- | lib/VMCore/Function.cpp | 4 | ||||
-rw-r--r-- | lib/VMCore/Module.cpp | 4 |
5 files changed, 7 insertions, 7 deletions
diff --git a/lib/CodeGen/MachineBasicBlock.cpp b/lib/CodeGen/MachineBasicBlock.cpp index a69d1580a3..6774dde9ab 100644 --- a/lib/CodeGen/MachineBasicBlock.cpp +++ b/lib/CodeGen/MachineBasicBlock.cpp @@ -46,7 +46,7 @@ void ilist_traits<MachineBasicBlock>::removeNodeFromList(MachineBasicBlock* N) { } -MachineInstr* ilist_traits<MachineInstr>::createSentinal() { +MachineInstr* ilist_traits<MachineInstr>::createSentinel() { MachineInstr* dummy = new MachineInstr(0, 0); LeakDetector::removeGarbageObject(dummy); return dummy; diff --git a/lib/CodeGen/MachineFunction.cpp b/lib/CodeGen/MachineFunction.cpp index 903346d914..d49a1ddb4b 100644 --- a/lib/CodeGen/MachineFunction.cpp +++ b/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; diff --git a/lib/VMCore/BasicBlock.cpp b/lib/VMCore/BasicBlock.cpp index 78753a5236..87b9ddd380 100644 --- a/lib/VMCore/BasicBlock.cpp +++ b/lib/VMCore/BasicBlock.cpp @@ -48,7 +48,7 @@ namespace { }; } -Instruction *ilist_traits<Instruction>::createSentinal() { +Instruction *ilist_traits<Instruction>::createSentinel() { return new DummyInst(); } iplist<Instruction> &ilist_traits<Instruction>::getList(BasicBlock *BB) { diff --git a/lib/VMCore/Function.cpp b/lib/VMCore/Function.cpp index 770715f67d..19f437aeb8 100644 --- a/lib/VMCore/Function.cpp +++ b/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); 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<Function>::createSentinal() { +Function *ilist_traits<Function>::createSentinel() { 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>::createSentinal() { LeakDetector::removeGarbageObject(Ret); return Ret; } -GlobalVariable *ilist_traits<GlobalVariable>::createSentinal() { +GlobalVariable *ilist_traits<GlobalVariable>::createSentinel() { GlobalVariable *Ret = new GlobalVariable(Type::IntTy, false, GlobalValue::ExternalLinkage); // This should not be garbage monitored. |