Home | History | Annotate | Download | only in config

Lines Matching refs:token_table

1197 token_table[] =
1342 #define NUM_TOKENS (sizeof (token_table) / sizeof (token_table[0]))
1426 if (strcasecmp (rl78_lex_start, token_table[i].string) == 0
1427 && !(token_table[i].val == IS_OPCODE && rl78_last_token != 0)
1428 && !(token_table[i].token == FLAG && !need_flag))
1430 rl78_lval.regno = token_table[i].val;
1433 rl78_last_token = token_table[i].token;
1434 return token_table[i].token;