diff options
author | Alan Modra <amodra@gmail.com> | 2009-03-03 23:15:04 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2009-03-03 23:15:04 +0000 |
commit | ed84b57b4d4174562f7266b9bbd523ac2b590eb6 (patch) | |
tree | 0d6cfa94481dbb30c47622cb56b4d211d25b905b /gas/config | |
parent | 3efd345c3b8f1f91a1698023ac736f2648972d81 (diff) | |
download | gdb-ed84b57b4d4174562f7266b9bbd523ac2b590eb6.zip gdb-ed84b57b4d4174562f7266b9bbd523ac2b590eb6.tar.gz gdb-ed84b57b4d4174562f7266b9bbd523ac2b590eb6.tar.bz2 |
* config/tc-ppc.c (md_assemble): APUinfo only for e500.
Diffstat (limited to 'gas/config')
-rw-r--r-- | gas/config/tc-ppc.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index d0340df..c80dd18 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -1,6 +1,6 @@ /* tc-ppc.c -- Assemble for the PowerPC or POWER (RS/6000) Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, - 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. + 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. Written by Ian Lance Taylor, Cygnus Support. This file is part of GAS, the GNU Assembler. @@ -2965,10 +2965,7 @@ md_assemble (char *str) #ifdef OBJ_ELF /* Do we need/want a APUinfo section? */ - if (ppc_cpu & (PPC_OPCODE_SPE - | PPC_OPCODE_ISEL | PPC_OPCODE_EFS - | PPC_OPCODE_BRLOCK | PPC_OPCODE_PMR | PPC_OPCODE_CACHELCK - | PPC_OPCODE_RFMCI)) + if ((ppc_cpu & PPC_OPCODE_E500MC) != 0) { /* These are all version "1". */ if (opcode->flags & PPC_OPCODE_SPE) |