* config/tc-ppc.c (md_assemble): Do not generate APUinfo sections
for 64-bit output.
This commit is contained in:
parent
a87d9ac49a
commit
4faf939afe
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2013-01-24 Joseph Myers <joseph@codesourcery.com>
|
||||
|
||||
* config/tc-ppc.c (md_assemble): Do not generate APUinfo sections
|
||||
for 64-bit output.
|
||||
|
||||
2013-01-24 Nick Clifton <nickc@redhat.com>
|
||||
|
||||
* config/tc-v850.c: Add support for e3v5 architecture.
|
||||
|
|
|
@ -3249,7 +3249,8 @@ md_assemble (char *str)
|
|||
|
||||
#ifdef OBJ_ELF
|
||||
/* Do we need/want an APUinfo section? */
|
||||
if ((ppc_cpu & (PPC_OPCODE_E500 | PPC_OPCODE_E500MC | PPC_OPCODE_VLE)) != 0)
|
||||
if ((ppc_cpu & (PPC_OPCODE_E500 | PPC_OPCODE_E500MC | PPC_OPCODE_VLE)) != 0
|
||||
&& !ppc_obj64)
|
||||
{
|
||||
/* These are all version "1". */
|
||||
if (opcode->flags & PPC_OPCODE_SPE)
|
||||
|
|
Loading…
Reference in a new issue