]> git.sur5r.net Git - cc65/commitdiff
Fixed a bug
authorcuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 20 Apr 2005 10:37:57 +0000 (10:37 +0000)
committercuz <cuz@b7a2c559-68d2-44c3-8de9-860c34a00d81>
Wed, 20 Apr 2005 10:37:57 +0000 (10:37 +0000)
git-svn-id: svn://svn.cc65.org/cc65/trunk@3476 b7a2c559-68d2-44c3-8de9-860c34a00d81

src/cc65/coptstop.c

index 6eab4affe489094eeba79f7065799d242d7b96e0..f0751198d2221ae90e1fdd5f3ca4b32f2954a7f0 100644 (file)
@@ -719,13 +719,13 @@ struct OptFuncDesc {
 };
 
 static const OptFuncDesc FuncTable[] = {
-    { "__bzero",    Opt___bzero,   STOP_X_ZERO   },
-    { "staspidx",   Opt_staspidx,  STOP_NONE     },
-    { "staxspidx",  Opt_staxspidx, STOP_A_UNUSED },
-    { "tosaddax",   Opt_tosaddax,  STOP_NONE     },
-    { "tosandax",   Opt_tosandax,  STOP_NONE     },
-    { "tosorax",    Opt_tosorax,   STOP_NONE     },
-    { "tosxorax",   Opt_tosxorax,  STOP_NONE     },
+    { "__bzero",    Opt___bzero,   STOP_X_ZERO | STOP_A_KNOWN   },
+    { "staspidx",   Opt_staspidx,  STOP_NONE                    },
+    { "staxspidx",  Opt_staxspidx, STOP_A_UNUSED                },
+    { "tosaddax",   Opt_tosaddax,  STOP_NONE                    },
+    { "tosandax",   Opt_tosandax,  STOP_NONE                    },
+    { "tosorax",    Opt_tosorax,   STOP_NONE                    },
+    { "tosxorax",   Opt_tosxorax,  STOP_NONE                    },
 };
 #define FUNC_COUNT (sizeof(FuncTable) / sizeof(FuncTable[0]))