From 94a7312289e4257370b66efc5fc6183bc1749b47 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 7 Sep 1995 16:35:37 +0000 Subject: * read.c (cons_worker): Don't use #elif; old compilers don't support it. --- gas/read.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gas/read.c') diff --git a/gas/read.c b/gas/read.c index cb536d0..3b313eb 100644 --- a/gas/read.c +++ b/gas/read.c @@ -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); -- cgit v1.1