Skip to content

Commit 749dc51

Browse files
committed
[SystemZ] Remember to cast value to void to disable warning.
Hopefully fixes buildbot problems. llvm-svn: 353898
1 parent 8567ff0 commit 749dc51

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

llvm/lib/Target/SystemZ/SystemZISelDAGToDAG.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1549,8 +1549,8 @@ void SystemZDAGToDAGISel::Select(SDNode *Node) {
15491549
EVT VT = Node->getValueType(0);
15501550
unsigned Start, End;
15511551
unsigned BitWidth = VT.getSizeInBits();
1552-
bool Success = SystemZTargetLowering::analyzeFPImm(Imm, BitWidth,
1553-
Start, End, static_cast<const SystemZInstrInfo *>(TII));
1552+
bool Success = SystemZTargetLowering::analyzeFPImm(Imm, BitWidth, Start,
1553+
End, static_cast<const SystemZInstrInfo *>(TII)); (void)Success;
15541554
assert(Success && "Expected legal FP immediate");
15551555
SDLoc DL(Node);
15561556
unsigned Opcode = (BitWidth == 32 ? SystemZ::VGMF : SystemZ::VGMG);

0 commit comments

Comments
 (0)