1
0
mirror of https://github.com/cc65/cc65.git synced 2025-01-28 00:30:12 +00:00

Remove shifts from kcalc

git-svn-id: svn://svn.cc65.org/cc65/trunk@3139 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2004-06-29 20:44:50 +00:00
parent 809d1408ce
commit e354d269f6

View File

@ -239,10 +239,6 @@ static int kcalc (token_t tok, long val1, long val2)
return (val1 ^ val2);
case TOK_AND:
return (val1 & val2);
case TOK_SHR:
return (val1 >> val2);
case TOK_SHL:
return (val1 << val2);
case TOK_STAR:
return (val1 * val2);
case TOK_DIV: