Silence a warning in -assert builds.

llvm-svn: 165867
This commit is contained in:
Chandler Carruth 2012-10-13 05:09:27 +00:00
parent 690c063b73
commit 0fb8a7787e
1 changed files with 1 additions and 0 deletions

View File

@ -2490,6 +2490,7 @@ private:
Value *NewV = convertValue(IRB, SI.getValueOperand(), NewAllocaTy);
StoreInst *NewSI = IRB.CreateAlignedStore(NewV, &NewAI, NewAI.getAlignment(),
SI.isVolatile());
(void)NewSI;
Pass.DeadInsts.push_back(&SI);
DEBUG(dbgs() << " to: " << *NewSI << "\n");