diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-09-22 01:19:53 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-09-22 01:19:53 +0000 |
commit | 4493af6636143ae412cda95eb400d6a6dd95c5f0 (patch) | |
tree | 68b5f9a3fda5afe48e33863960413fad17dfab0a /gas | |
parent | 8b89f5aa47cd4abcd7f40714cdc10f6b6f8c42d1 (diff) | |
download | gdb-4493af6636143ae412cda95eb400d6a6dd95c5f0.zip gdb-4493af6636143ae412cda95eb400d6a6dd95c5f0.tar.gz gdb-4493af6636143ae412cda95eb400d6a6dd95c5f0.tar.bz2 |
do not set EF_PPC_RELOCATABLE for -mrelocatable-lib
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-ppc.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index e43a831..ac95858 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Thu Sep 21 21:10:17 1995 Michael Meissner <meissner@cygnus.com> + + * 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 <ian@cygnus.com> * 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 5c2b1a6..01f152f 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 */ |