diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-10-16 11:23:34 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-10-16 11:23:34 +0000 |
commit | 17e2f77408857ed7e059699bebf2d2b59a68248d (patch) | |
tree | a318391d74473172ed1f524b4a753c77ac747476 /gas | |
parent | 9f2c8daa27b043d9c41d5146fb44deff1c9678a3 (diff) | |
download | gdb-17e2f77408857ed7e059699bebf2d2b59a68248d.zip gdb-17e2f77408857ed7e059699bebf2d2b59a68248d.tar.gz gdb-17e2f77408857ed7e059699bebf2d2b59a68248d.tar.bz2 |
Fix last fixes
Diffstat (limited to 'gas')
-rw-r--r-- | gas/config/tc-ppc.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/gas/config/tc-ppc.c b/gas/config/tc-ppc.c index c9f87fc..60ee2f7 100644 --- a/gas/config/tc-ppc.c +++ b/gas/config/tc-ppc.c @@ -761,12 +761,15 @@ md_begin () || (((ppc_cpu & PPC_OPCODE_601) == 0 || strcmp (op->name, "mfdec") != 0) && (((ppc_cpu & ~PPC_OPCODE_POWER2) - == (PPC_OPCODE_POWER | PPC_OPCODE_PPC)) + != (PPC_OPCODE_POWER | PPC_OPCODE_PPC)) || (strcmp (op->name, "cmpli") != 0 && strcmp (op->name, "cmpi") != 0 && strcmp (op->name, "cmp") != 0 && strcmp (op->name, "cmpl") != 0)))) - as_fatal ("Internal assembler error for instruction %s", op->name); + { + as_bad ("Internal assembler error for instruction %s", op->name); + abort (); + } } } } |