From 8fb99170f1f32f510a61a2e1853022c93a4b1263 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Tue, 5 Jul 1994 01:18:23 +0000 Subject: [PATCH] Fix thinko in last change --- gas/config/tc-hppa.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/gas/config/tc-hppa.c b/gas/config/tc-hppa.c index caaad7c4726..c6780adba96 100644 --- a/gas/config/tc-hppa.c +++ b/gas/config/tc-hppa.c @@ -1257,12 +1257,11 @@ cons_fix_new_hppa (frag, where, size, exp) { unsigned int rel_type; - /* Get a base relocation type. We use NONE for complex as it should - always be reducable to a constant in the cases we generate. */ + /* Get a base relocation type. */ if (is_DP_relative (*exp)) rel_type = R_HPPA_GOTOFF; else if (is_complex (*exp)) - rel_type = R_HPPA_NONE; + rel_type = R_HPPA_COMPLEX; else rel_type = R_HPPA; -- 2.30.2