Avoid unused parameter warning.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@65670 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Evan Cheng 2009-02-28 01:10:24 +00:00
parent 7cbb95fa69
commit 9a5c4e09f5

View File

@ -29,7 +29,7 @@ template<> struct ilist_traits<Instruction>
Instruction *createSentinel() const {
return const_cast<Instruction*>(static_cast<const Instruction*>(&Sentinel));
}
static void destroySentinel(Instruction *I) { }
static void destroySentinel(Instruction *I) { I = I; }
static iplist<Instruction> &getList(BasicBlock *BB);
static ValueSymbolTable *getSymTab(BasicBlock *ItemParent);
static int getListOffset();