* config/tc-hppa.c (hppa_symbol_chars): New.
* config/tc-hppa.h (tc_symbol_chars): Likewise.
This commit is contained in:
parent
1b1fe8feb3
commit
f0d7d5f9db
3 changed files with 11 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2003-04-28 H.J. Lu <hjl@gnu.org>
|
||||||
|
|
||||||
|
* config/tc-hppa.c (hppa_symbol_chars): New.
|
||||||
|
* config/tc-hppa.h (tc_symbol_chars): Likewise.
|
||||||
|
|
||||||
2003-04-26 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
2003-04-26 Thiemo Seufer <seufer@csv.ica.uni-stuttgart.de>
|
||||||
|
|
||||||
* config/tc-mips.h (TC_FORCE_RELOCATION_SUB_SAME): Define again.
|
* config/tc-mips.h (TC_FORCE_RELOCATION_SUB_SAME): Define again.
|
||||||
|
|
|
@ -622,6 +622,9 @@ static struct call_desc last_call_desc;
|
||||||
/* handle of the OPCODE hash table */
|
/* handle of the OPCODE hash table */
|
||||||
static struct hash_control *op_hash = NULL;
|
static struct hash_control *op_hash = NULL;
|
||||||
|
|
||||||
|
/* Those characters can be suffixes of opcode names. */
|
||||||
|
const char hppa_symbol_chars[] = ",*!?=<>";
|
||||||
|
|
||||||
/* Table of pseudo ops for the PA. FIXME -- how many of these
|
/* Table of pseudo ops for the PA. FIXME -- how many of these
|
||||||
are now redundant with the overall GAS and the object file
|
are now redundant with the overall GAS and the object file
|
||||||
dependent tables? */
|
dependent tables? */
|
||||||
|
|
|
@ -106,6 +106,9 @@ extern void pa_check_eof PARAMS ((void));
|
||||||
|
|
||||||
#define tc_frob_label(sym) pa_define_label (sym)
|
#define tc_frob_label(sym) pa_define_label (sym)
|
||||||
|
|
||||||
|
extern const char hppa_symbol_chars[];
|
||||||
|
#define tc_symbol_chars hppa_symbol_chars
|
||||||
|
|
||||||
/* The PA does not need support for either of these. */
|
/* The PA does not need support for either of these. */
|
||||||
#define tc_crawl_symbol_chain(headers) {;}
|
#define tc_crawl_symbol_chain(headers) {;}
|
||||||
#define tc_headers_hook(headers) {;}
|
#define tc_headers_hook(headers) {;}
|
||||||
|
|
Loading…
Reference in a new issue