Skip to content

Commit d9f6077

Browse files
committed
[X86] Fix ambiguous operator ordering to stop -Wparentheses warning. NFCI.
1 parent 287e9e9 commit d9f6077

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

llvm/lib/Target/X86/X86ISelLowering.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16960,8 +16960,7 @@ static SDValue splitAndLowerShuffle(const SDLoc &DL, MVT VT, SDValue V1,
1696016960
// Because the lowering happens after all combining takes place, we need to
1696116961
// manually combine these blend masks as much as possible so that we create
1696216962
// a minimal number of high-level vector shuffle nodes.
16963-
16964-
assert(!SimpleOnly || (!UseHiV1 && !UseHiV2) && "Shuffle won't be simple");
16963+
assert((!SimpleOnly || (!UseHiV1 && !UseHiV2)) && "Shuffle isn't simple");
1696516964

1696616965
// First try just blending the halves of V1 or V2.
1696716966
if (!UseLoV1 && !UseHiV1 && !UseLoV2 && !UseHiV2)

0 commit comments

Comments
 (0)