Skip to content

Commit eeb0d6d

Browse files
committed
Revert "Fix gcc signed/unsigned comparison warning. NFC."
This reverts commit 6c21716. It touches a common file as llvm#133083, which is causing failures
1 parent a285be3 commit eeb0d6d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58959,7 +58959,7 @@ static SDValue combineINSERT_SUBVECTOR(SDNode *N, SelectionDAG &DAG,
5895958959
// If we're splatting the lower half subvector of a full vector load into the
5896058960
// upper half, attempt to create a subvector broadcast.
5896158961
// TODO: Drop hasOneUse checks.
58962-
if ((int)IdxVal == (VecNumElts / 2) &&
58962+
if (IdxVal == (VecNumElts / 2) &&
5896358963
Vec.getValueSizeInBits() == (2 * SubVec.getValueSizeInBits()) &&
5896458964
(Vec.hasOneUse() || SubVec.hasOneUse())) {
5896558965
auto *VecLd = dyn_cast<LoadSDNode>(Vec);

0 commit comments

Comments
 (0)