Skip to content

Commit

Permalink
delete unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoirier committed Jan 17, 2018
1 parent 676addf commit b9ffe4e
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions expression.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b9ffe4e

Please sign in to comment.