delete unused code
This commit is contained in:
parent
676addf333
commit
b9ffe4eeb6
|
@ -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;
|
||||||
|
|
Loading…
Reference in a new issue