mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-14 15:25:25 +00:00
Improve conformance with the Misha spelling benchmark suite
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19930 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -84,12 +84,12 @@ struct ilist_traits<Use> {
|
||||
static void setPrev(Use *N, Use *Prev) { N->UseLinks.Prev = Prev; }
|
||||
static void setNext(Use *N, Use *Next) { N->UseLinks.Next = Next; }
|
||||
|
||||
/// createSentinal - this is used to create the end marker for the use list.
|
||||
/// createSentinel - this is used to create the end marker for the use list.
|
||||
/// Note that we only allocate a UseLinks structure, which is just enough to
|
||||
/// hold the next/prev pointers. This saves us 8 bytes of memory for every
|
||||
/// Value allocated.
|
||||
static Use *createSentinal() { return (Use*)new Use::NextPrevPtrs(); }
|
||||
static void destroySentinal(Use *S) { delete (Use::NextPrevPtrs*)S; }
|
||||
static Use *createSentinel() { return (Use*)new Use::NextPrevPtrs(); }
|
||||
static void destroySentinel(Use *S) { delete (Use::NextPrevPtrs*)S; }
|
||||
|
||||
void addNodeToList(Use *NTy) {}
|
||||
void removeNodeFromList(Use *NTy) {}
|
||||
|
Reference in New Issue
Block a user