forked from OSchip/llvm-project
[SCCP] Fix unused variable warning in release builds.
llvm-svn: 326429
This commit is contained in:
parent
f5aebc27ad
commit
d1cf7ff5ab
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue