mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-03 18:32:50 +00:00
Fix VC++ precedence warnings
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23169 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
49296f1f48
commit
7383ce4127
@ -632,13 +632,13 @@ SDOperand SelectionDAG::SimplifySetCC(MVT::ValueType VT, SDOperand N1,
|
||||
// compare equal. In other words, they have to be all ones or all
|
||||
// zeros.
|
||||
uint64_t ExtBits =
|
||||
(~0ULL >> 64-ExtSrcTyBits) & (~0ULL << (ExtDstTyBits-1));
|
||||
(~0ULL >> (64-ExtSrcTyBits)) & (~0ULL << (ExtDstTyBits-1));
|
||||
if ((C2 & ExtBits) != 0 && (C2 & ExtBits) != ExtBits)
|
||||
return getConstant(Cond == ISD::SETNE, VT);
|
||||
|
||||
// Otherwise, make this a use of a zext.
|
||||
return getSetCC(VT, getZeroExtendInReg(N1.getOperand(0), ExtSrcTy),
|
||||
getConstant(C2 & (~0ULL >> 64-ExtSrcTyBits), ExtDstTy),
|
||||
getConstant(C2 & (~0ULL>>(64-ExtSrcTyBits)), ExtDstTy),
|
||||
Cond);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user