delete unused code
This commit is contained in:
parent
676addf333
commit
b9ffe4eeb6
|
@ -1088,12 +1088,6 @@ void ExpressionInfixOperator(struct ParseState *Parser,
|
|||
break;
|
||||
case TokenShiftLeft:
|
||||
ResultInt = BottomInt << TopInt;
|
||||
/*
|
||||
if (BottomValue->Typ->Base == TypeUnsignedInt || BottomValue->Typ->Base == TypeUnsignedLong)
|
||||
ResultInt = (uint64_t) BottomInt >> TopInt;
|
||||
else
|
||||
ResultInt = BottomInt >> TopInt;
|
||||
*/
|
||||
break;
|
||||
case TokenShiftRight:
|
||||
ResultInt = BottomInt >> TopInt;
|
||||
|
|
Loading…
Reference in a new issue