[llvm-commits] CVS: llvm/lib/VMCore/BasicBlock.cpp Function.cpp Module.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sat Jan 29 16:09:03 PST 2005
Changes in directory llvm/lib/VMCore:
BasicBlock.cpp updated: 1.53 -> 1.54
Function.cpp updated: 1.86 -> 1.87
Module.cpp updated: 1.58 -> 1.59
---
Log message:
Improve conformance with the Misha spelling benchmark suite
---
Diffs of the changes: (+5 -5)
BasicBlock.cpp | 2 +-
Function.cpp | 4 ++--
Module.cpp | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
Index: llvm/lib/VMCore/BasicBlock.cpp
diff -u llvm/lib/VMCore/BasicBlock.cpp:1.53 llvm/lib/VMCore/BasicBlock.cpp:1.54
--- llvm/lib/VMCore/BasicBlock.cpp:1.53 Sat Jan 29 12:41:12 2005
+++ llvm/lib/VMCore/BasicBlock.cpp Sat Jan 29 18:08:49 2005
@@ -48,7 +48,7 @@
};
}
-Instruction *ilist_traits<Instruction>::createSentinal() {
+Instruction *ilist_traits<Instruction>::createSentinel() {
return new DummyInst();
}
iplist<Instruction> &ilist_traits<Instruction>::getList(BasicBlock *BB) {
Index: llvm/lib/VMCore/Function.cpp
diff -u llvm/lib/VMCore/Function.cpp:1.86 llvm/lib/VMCore/Function.cpp:1.87
--- llvm/lib/VMCore/Function.cpp:1.86 Sat Jan 29 12:41:12 2005
+++ llvm/lib/VMCore/Function.cpp Sat Jan 29 18:08:49 2005
@@ -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 @@
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);
Index: llvm/lib/VMCore/Module.cpp
diff -u llvm/lib/VMCore/Module.cpp:1.58 llvm/lib/VMCore/Module.cpp:1.59
--- llvm/lib/VMCore/Module.cpp:1.58 Sat Jan 29 12:41:12 2005
+++ llvm/lib/VMCore/Module.cpp Sat Jan 29 18:08:49 2005
@@ -28,7 +28,7 @@
// 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 @@
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.
More information about the llvm-commits
mailing list