From 4493af6636143ae412cda95eb400d6a6dd95c5f0 Mon Sep 17 00:00:00 2001 From: Michael Meissner Date: Fri, 22 Sep 1995 01:19:53 +0000 Subject: [PATCH] do not set EF_PPC_RELOCATABLE for -mrelocatable-lib --- gas/ChangeLog | 5 +++++ gas/config/tc-ppc.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gas/ChangeLog b/gas/ChangeLog index e43a831b13e..ac958583fdd 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 21 21:10:17 1995 Michael Meissner + + * config/tc-ppc.c (md_parse_option): -mrelocatable-lib now only + sets EF_PPC_RELOCATABLE_LIB and not also EF_PPC_RELOCATABLE. + Thu Sep 21 16:30:56 1995 Ian Lance Taylor * subsegs.c (subseg_set): Permit SEG_ABSOLUTE in know expression. diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 5c2b1a654b6..01f152fc64d 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -281,7 +281,7 @@ md_parse_option (c, arg) else if (strcmp (arg, "relocatable-lib") == 0) { mrelocatable = true; - ppc_flags |= EF_PPC_RELOCATABLE | EF_PPC_RELOCATABLE_LIB; + ppc_flags |= EF_PPC_RELOCATABLE_LIB; } /* -memb, set embedded bit */ -- 2.30.2