diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-09-07 16:35:37 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-09-07 16:35:37 +0000 |
commit | 94a7312289e4257370b66efc5fc6183bc1749b47 (patch) | |
tree | 9cc1b2e92c781c3739bef8a7e3aef8af879033e0 /gas/read.c | |
parent | dee0c69c270296ee0a264102345cb10197169ea8 (diff) | |
download | gdb-94a7312289e4257370b66efc5fc6183bc1749b47.zip gdb-94a7312289e4257370b66efc5fc6183bc1749b47.tar.gz gdb-94a7312289e4257370b66efc5fc6183bc1749b47.tar.bz2 |
* read.c (cons_worker): Don't use #elif; old compilers don't
support it.
Diffstat (limited to 'gas/read.c')
-rw-r--r-- | gas/read.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -2435,11 +2435,13 @@ cons_worker (nbytes, rva) #ifdef BFD_ASSEMBLER reloc = BFD_RELOC_RVA; -#elif defined(TC_RVA_RELOC) +#else +#ifdef TC_RVA_RELOC reloc = TC_RVA_RELOC; #else abort(); #endif +#endif fix_new_exp (frag_now, p - frag_now->fr_literal, nbytes, &exp, 0, reloc); |