]> git.sur5r.net Git - cc65/commitdiff
Removed an unused table.
authoruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 24 Oct 2009 19:37:57 +0000 (19:37 +0000)
committeruz <uz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Sat, 24 Oct 2009 19:37:57 +0000 (19:37 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@4389 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/coptcmp.c

index 71dbfc6246da58ba4065259c774a44adc4ebd1df..bdaa929c1ccc94db0359d686584f3176501ba402 100644 (file)
@@ -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
-};
-
 
 
 /*****************************************************************************/