Skip to content

Commit 806a936

Browse files
[PowerPC] Fix a warning
This patch fixes: llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp:293:23: error: unused variable 'NewFMAInt' [-Werror,-Wunused-variable]
1 parent f6012a2 commit 806a936

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

llvm/lib/Target/PowerPC/PPCVSXFMAMutate.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,7 @@ namespace {
294294
LIS->createAndComputeVirtRegInterval(KilledProdReg);
295295

296296
LLVM_DEBUG(dbgs() << " extended: " << NewFMAInt << '\n');
297+
(void)NewFMAInt;
297298

298299
// Extend the live interval of the addend source (it might end at the
299300
// copy to be removed, or somewhere in between there and here). This

0 commit comments

Comments
 (0)