* alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo
authorRichard Henderson <rth@redhat.com>
Fri, 15 Feb 2002 21:00:45 +0000 (21:00 +0000)
committerRichard Henderson <rth@redhat.com>
Fri, 15 Feb 2002 21:00:45 +0000 (21:00 +0000)
        disassembly mask.

opcodes/ChangeLog
opcodes/alpha-opc.c

index f3b48842dfad193ac8236295a390a901749c1285..d2a43cf183f000a3b328a1c9d85fe4b9be2f1bac 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-15  Richard Henderson  <rth@redhat.com>
+
+       * alpha-opc.c (alpha_opcodes): Fix thinko in ret pseudo
+       disassembly mask.
+
 2002-02-15  Richard Henderson  <rth@redhat.com>
 
        * alpha-opc.c (alpha_opcodes): Add simple pseudos for
index 3f45f6c5eada10b52b28df70ce26dc883937e73e..6cf7d4cefccfd1dba06f3401111c4f2bef6f19fb 100644 (file)
@@ -1125,7 +1125,7 @@ const struct alpha_opcode alpha_opcodes[] = {
   { "jmp",             MBR(0x1A,0), BASE, { RA, CPRB, JMPHINT } },
   { "jsr",             MBR(0x1A,1), BASE, { RA, CPRB, JMPHINT } },
   { "ret",             MBR_(0x1A,2) | (31 << 21) | (26 << 16) | 1,/* pseudo */
-                       MBR_MASK, BASE, { 0 } },
+                       0xFFFFFFFF, BASE, { 0 } },
   { "ret",             MBR(0x1A,2), BASE, { RA, CPRB, RETHINT } },
   { "jcr",             MBR(0x1A,3), BASE, { RA, CPRB, RETHINT } }, /* alias */
   { "jsr_coroutine",   MBR(0x1A,3), BASE, { RA, CPRB, RETHINT } },
This page took 0.026331 seconds and 4 git commands to generate.