1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-21 20:12:56 +02:00

Avoid unused parameter warning.

llvm-svn: 65670
This commit is contained in:
Evan Cheng 2009-02-28 01:10:24 +00:00
parent 2df75807ab
commit c26c11bbd0

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();