]> git.sur5r.net Git - cc65/blobdiff - src/cc65/coptcmp.c
Fixed two compiler warnings.
[cc65] / 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
-};
-
 
 
 /*****************************************************************************/