Skip to content

Commit f56672c

Browse files
committed
Remove accidently changed form
1 parent 442e3ff commit f56672c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/SystemZ/SystemZOperands.td

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def NEGLH16 : SDNodeXForm<imm, [{
214214
}]>;
215215

216216
def NEGLF32 : SDNodeXForm<imm, [{
217-
uint64_t Value = -N->getSExtValue() & 0x00000000FFFFFFFFULL;
217+
uint64_t Value = -N->getZExtValue() & 0x00000000FFFFFFFFULL;
218218
return CurDAG->getTargetConstant(Value, SDLoc(N), MVT::i64);
219219
}]>;
220220

0 commit comments

Comments
 (0)