[SCCP] Fix unused variable warning in release builds.

llvm-svn: 326429
This commit is contained in:
Benjamin Kramer 2018-03-01 11:31:44 +00:00
parent f5aebc27ad
commit d1cf7ff5ab
1 changed files with 1 additions and 0 deletions

View File

@ -1853,6 +1853,7 @@ static void findReturnsToZap(Function &F,
if (CallInst *CI = BB.getTerminatingMustTailCall()) {
DEBUG(dbgs() << "Can't zap return of the block due to present "
<< "musttail call : " << *CI << "\n");
(void)CI;
return;
}