From f4b4a812edd2396e0ab009b84d5c65aaf3d951c0 Mon Sep 17 00:00:00 2001 From: uz Date: Sat, 24 Oct 2009 19:37:57 +0000 Subject: [PATCH] Removed an unused table. git-svn-id: svn://svn.cc65.org/cc65/trunk@4389 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- src/cc65/coptcmp.c | 5 ----- 1 file changed, 5 deletions(-) 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 -}; - /*****************************************************************************/