diff options
author | Alan Modra <amodra@gmail.com> | 2003-08-19 15:48:53 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-08-19 15:48:53 +0000 |
commit | 55257f50c04c255a2fa57a09ba2a66ae9cb7c1f0 (patch) | |
tree | 0c4a4315fa292d8142c8bdd0e6a41916fc147982 /gas | |
parent | f02232aaa38100b38435f4bdbc9e0b22c868734c (diff) | |
download | gdb-55257f50c04c255a2fa57a09ba2a66ae9cb7c1f0.zip gdb-55257f50c04c255a2fa57a09ba2a66ae9cb7c1f0.tar.gz gdb-55257f50c04c255a2fa57a09ba2a66ae9cb7c1f0.tar.bz2 |
* config/tc-ppc.c (md_parse_option): Add PPC_OPCODE_ISEL and
PPC_OPCODE_RFMCI to -m440 selected ppc_cpu.
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 b6662d4..bc9f00f 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2003-08-20 Alan Modra <amodra@bigpond.net.au> + + * config/tc-ppc.c (md_parse_option): Add PPC_OPCODE_ISEL and + PPC_OPCODE_RFMCI to -m440 selected ppc_cpu. + 2003-08-19 Nick Clifton <nickc@redhat.com> * config/tc-arm.c (cp_address_required_here): Add code to handle diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index 5f5aaea..30aa2fd 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -912,7 +912,7 @@ md_parse_option (c, arg) | PPC_OPCODE_403 | PPC_OPCODE_32); else if (strcmp (arg, "440") == 0) ppc_cpu = (PPC_OPCODE_PPC | PPC_OPCODE_BOOKE | PPC_OPCODE_32 - | PPC_OPCODE_440); + | PPC_OPCODE_440 | PPC_OPCODE_ISEL | PPC_OPCODE_RFMCI); else if (strcmp (arg, "7400") == 0 || strcmp (arg, "7410") == 0 || strcmp (arg, "7450") == 0 |