aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/Support
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2009-03-04 21:54:31 +0000
committerGabor Greif <ggreif@gmail.com>2009-03-04 21:54:31 +0000
commitf3841fcbd587c31aa9842b3f33bd57de40c9f443 (patch)
tree59607392389dfb09f9fb78a20505811abdb0a1df /include/llvm/Support
parent508d338feed773e20e1ca82ed0ff595f75e33e8b (diff)
downloadexternal_llvm-f3841fcbd587c31aa9842b3f33bd57de40c9f443.zip
external_llvm-f3841fcbd587c31aa9842b3f33bd57de40c9f443.tar.gz
external_llvm-f3841fcbd587c31aa9842b3f33bd57de40c9f443.tar.bz2
ooops, forgot to include the pointless-write eliminator in my previous checkin
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66081 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Support')
-rw-r--r--include/llvm/Support/Recycler.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/Support/Recycler.h b/include/llvm/Support/Recycler.h
index 39c992b..2fa0365 100644
--- a/include/llvm/Support/Recycler.h
+++ b/include/llvm/Support/Recycler.h
@@ -48,6 +48,7 @@ struct ilist_traits<RecyclerStruct> : ilist_default_traits<RecyclerStruct> {
RecyclerStruct *provideInitialHead() const { return createSentinel(); }
RecyclerStruct *ensureHead(RecyclerStruct*) const { return createSentinel(); }
+ static void noteHead(RecyclerStruct*, RecyclerStruct*) {}
static void deleteNode(RecyclerStruct *) {
assert(0 && "Recycler's ilist_traits shouldn't see a deleteNode call!");