* read.c (cons_worker): Don't use #elif; old compilers don't
support it.
This commit is contained in:
parent
dee0c69c27
commit
94a7312289
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Thu Sep 7 12:33:58 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
|
* read.c (cons_worker): Don't use #elif; old compilers don't
|
||||||
|
support it.
|
||||||
|
|
||||||
Wed Sep 6 21:13:06 1995 Ian Lance Taylor <ian@cygnus.com>
|
Wed Sep 6 21:13:06 1995 Ian Lance Taylor <ian@cygnus.com>
|
||||||
|
|
||||||
* app.c (do_scrub_chars): In MRI mode, silently end quoted strings
|
* app.c (do_scrub_chars): In MRI mode, silently end quoted strings
|
||||||
|
|
|
@ -2435,10 +2435,12 @@ cons_worker (nbytes, rva)
|
||||||
|
|
||||||
#ifdef BFD_ASSEMBLER
|
#ifdef BFD_ASSEMBLER
|
||||||
reloc = BFD_RELOC_RVA;
|
reloc = BFD_RELOC_RVA;
|
||||||
#elif defined(TC_RVA_RELOC)
|
#else
|
||||||
|
#ifdef TC_RVA_RELOC
|
||||||
reloc = TC_RVA_RELOC;
|
reloc = TC_RVA_RELOC;
|
||||||
#else
|
#else
|
||||||
abort();
|
abort();
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
fix_new_exp (frag_now, p - frag_now->fr_literal,
|
fix_new_exp (frag_now, p - frag_now->fr_literal,
|
||||||
nbytes, &exp, 0, reloc);
|
nbytes, &exp, 0, reloc);
|
||||||
|
|
Loading…
Add table
Reference in a new issue