[llvm-commits] CVS: llvm/include/llvm/Analysis/DataStructure/DSNode.h
Chris Lattner
lattner at cs.uiuc.edu
Sat Jan 29 16:08:49 PST 2005
Changes in directory llvm/include/llvm/Analysis/DataStructure:
DSNode.h updated: 1.47 -> 1.48
---
Log message:
Improve conformance with the Misha spelling benchmark suite
---
Diffs of the changes: (+2 -2)
DSNode.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/include/llvm/Analysis/DataStructure/DSNode.h
diff -u llvm/include/llvm/Analysis/DataStructure/DSNode.h:1.47 llvm/include/llvm/Analysis/DataStructure/DSNode.h:1.48
--- llvm/include/llvm/Analysis/DataStructure/DSNode.h:1.47 Sat Jan 29 12:40:43 2005
+++ llvm/include/llvm/Analysis/DataStructure/DSNode.h Sat Jan 29 18:08:36 2005
@@ -369,8 +369,8 @@
static void setPrev(DSNode *N, DSNode *Prev) { N->Prev = Prev; }
static void setNext(DSNode *N, DSNode *Next) { N->Next = Next; }
- static DSNode *createSentinal() { return new DSNode(0,0); }
- static void destroySentinal(DSNode *N) { delete N; }
+ static DSNode *createSentinel() { return new DSNode(0,0); }
+ static void destroySentinel(DSNode *N) { delete N; }
//static DSNode *createNode(const DSNode &V) { return new DSNode(V); }
More information about the llvm-commits
mailing list