Fix VC++ precedence warning.

llvm-svn: 22902
This commit is contained in:
Jeff Cohen 2005-08-19 04:39:48 +00:00
parent ce400dac21
commit d1f22b1282
1 changed files with 1 additions and 1 deletions

View File

@ -1171,7 +1171,7 @@ SDOperand SelectionDAG::getNode(unsigned Opcode, MVT::ValueType VT,
if (Opcode == ISD::SRA) {
// If the sign bit is known to be zero, switch this to a SRL.
if (MaskedValueIsZero(N1,
1ULL << MVT::getSizeInBits(N1.getValueType())-1,
1ULL << (MVT::getSizeInBits(N1.getValueType())-1),
TLI))
return getNode(ISD::SRL, N1.getValueType(), N1, N2);
} else {