delete unused code

This commit is contained in:
Joseph Poirier 2018-01-17 01:49:48 -06:00
parent 676addf333
commit b9ffe4eeb6
No known key found for this signature in database
GPG key ID: 65858A2540EBDA40

View file

@ -1088,12 +1088,6 @@ void ExpressionInfixOperator(struct ParseState *Parser,
break; break;
case TokenShiftLeft: case TokenShiftLeft:
ResultInt = BottomInt << TopInt; ResultInt = BottomInt << TopInt;
/*
if (BottomValue->Typ->Base == TypeUnsignedInt || BottomValue->Typ->Base == TypeUnsignedLong)
ResultInt = (uint64_t) BottomInt >> TopInt;
else
ResultInt = BottomInt >> TopInt;
*/
break; break;
case TokenShiftRight: case TokenShiftRight:
ResultInt = BottomInt >> TopInt; ResultInt = BottomInt >> TopInt;