From: uz Date: Sat, 24 Oct 2009 19:37:57 +0000 (+0000) Subject: Removed an unused table. X-Git-Tag: V2.13.1~139 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f4b4a812edd2396e0ab009b84d5c65aaf3d951c0;p=cc65 Removed an unused table. git-svn-id: svn://svn.cc65.org/cc65/trunk@4389 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/coptcmp.c b/src/cc65/coptcmp.c index 71dbfc624..bdaa929c1 100644 --- a/src/cc65/coptcmp.c +++ b/src/cc65/coptcmp.c @@ -56,11 +56,6 @@ static const unsigned char CmpInvertTab [] = { CMP_ULE, CMP_ULT, CMP_UGE, CMP_UGT }; -/* Table to show which compares are signed (use the N flag) */ -static const char CmpSignedTab [] = { - 0, 0, 1, 1, 1, 1, 0, 0, 0, 0 -}; - /*****************************************************************************/