diff options
author | Alan Modra <amodra@gmail.com> | 2007-04-30 00:27:57 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2007-04-30 00:27:57 +0000 |
commit | eb42fac1bb1f3b74b2d0b9bff7035a494c0cb9c5 (patch) | |
tree | c2d78962ea1475702e0583f701e5baafc8adacab /opcodes/ppc-opc.c | |
parent | a8bf1262d7cc0ccb3258b375c385a438a4f2336e (diff) | |
download | gdb-eb42fac1bb1f3b74b2d0b9bff7035a494c0cb9c5.zip gdb-eb42fac1bb1f3b74b2d0b9bff7035a494c0cb9c5.tar.gz gdb-eb42fac1bb1f3b74b2d0b9bff7035a494c0cb9c5.tar.bz2 |
opcodes/
PR 4436
* ppc-opc.c (powerpc_operands): Correct bitm for second entry of MBE.
gas/
PR 4436
* config/tc-ppc.c (ppc_insert_operand): Disable range check if
min > max.
Diffstat (limited to 'opcodes/ppc-opc.c')
-rw-r--r-- | opcodes/ppc-opc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/opcodes/ppc-opc.c b/opcodes/ppc-opc.c index 50a33f3..5e2fb28 100644 --- a/opcodes/ppc-opc.c +++ b/opcodes/ppc-opc.c @@ -317,7 +317,7 @@ const struct powerpc_operand powerpc_operands[] = description in opcode/ppc.h for what this means. */ #define MBE ME + 1 { 0x1f, 6, NULL, NULL, PPC_OPERAND_OPTIONAL | PPC_OPERAND_NEXT }, - { 0xff, 0, insert_mbe, extract_mbe, 0 }, + { -1, 0, insert_mbe, extract_mbe, 0 }, /* The MB or ME field in an MD or MDS form instruction. The high bit is wrapped to the low end. */ |