... instead of having arch-specific code in app.c.
#ifdef DOUBLEBAR_PARALLEL
lex['|'] = LEX_IS_DOUBLEBAR_1ST;
#endif
-#ifdef TC_D30V
- /* Must do this is we want VLIW instruction with "->" or "<-". */
- lex['-'] = LEX_IS_SYMBOL_COMPONENT;
-#endif
#ifdef H_TICK_HEX
if (enable_h_tick_hex)
const char comment_chars[] = ";";
const char line_comment_chars[] = "#";
const char line_separator_chars[] = "";
+/* Must do this if we want VLIW instruction with "->" or "<-". */
+const char d30v_symbol_chars[] = "-";
const char md_shortopts[] = "OnNcC";
const char EXP_CHARS[] = "eE";
const char FLT_CHARS[] = "dD";
/* We don't need to handle .word strangely. */
#define WORKING_DOT_WORD
+extern const char d30v_symbol_chars[];
+#define tc_symbol_chars d30v_symbol_chars
+
#define md_number_to_chars number_to_chars_bigendian
int d30v_cleanup (int);