diff options
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/tc-ppc.c | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 2430f0e..913ded8 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +Sat Jan 13 11:09:08 1996 Michael Meissner <meissner@wogglebug.tiac.net> + + * config/tc-ppc.c (ppc_section*): Wrap these functions inside + #ifdef OBJ_ELF. + Fri Jan 12 15:32:07 1996 Michael Meissner <meissner@tiktok.cygnus.com> * config/obj-elf.c (obj_elf_section): Add hooks so machine diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 3add3bc..820a9f1 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -1730,6 +1730,7 @@ ppc_macro (str, macro) md_assemble (complete); } +#ifdef OBJ_ELF /* For ELF, add support for SHF_EXCLUDE and SHT_ORDERED */ int @@ -1784,6 +1785,7 @@ ppc_section_flags (flags, attr, type) return flags; } +#endif /* OBJ_ELF */ /* Pseudo-op handling. */ |