From: cuz Date: Sat, 2 Aug 2003 09:55:54 +0000 (+0000) Subject: Fixed a bug X-Git-Tag: V2.12.0~1483 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=f7dfcbcc3daf8426770842b5e6ed3634e0d50c82;p=cc65 Fixed a bug git-svn-id: svn://svn.cc65.org/cc65/trunk@2239 b7a2c559-68d2-44c3-8de9-860c34a00d81 --- diff --git a/src/cc65/scanner.c b/src/cc65/scanner.c index 05ececed3..89ac5a41a 100644 --- a/src/cc65/scanner.c +++ b/src/cc65/scanner.c @@ -81,9 +81,9 @@ static const struct Keyword { unsigned char Type; /* Token type */ } Keywords [] = { { "_Pragma", TOK_PRAGMA, TT_C }, - { "__A__", TOK_A, TT_C }, { "__AX__", TOK_AX, TT_C }, { "__EAX__", TOK_EAX, TT_C }, + { "__A__", TOK_A, TT_C }, { "__X__", TOK_X, TT_C }, { "__Y__", TOK_Y, TT_C }, { "__asm__", TOK_ASM, TT_C }, @@ -128,7 +128,7 @@ static const struct Keyword { { "void", TOK_VOID, TT_C }, { "volatile", TOK_VOLATILE, TT_C }, { "while", TOK_WHILE, TT_C }, -}; +}; #define KEY_COUNT (sizeof (Keywords) / sizeof (Keywords [0]))