diff options
author | Eric Botcazou <ebotcazou@libertysurf.fr> | 2013-08-05 17:04:08 +0000 |
---|---|---|
committer | Eric Botcazou <ebotcazou@libertysurf.fr> | 2013-08-05 17:04:08 +0000 |
commit | fb49eea0b528d882a390815be1dbe7c6b8f3463a (patch) | |
tree | c869a99630efd17f2a06372072924c79a27ee416 /opcodes | |
parent | 12070676a9aa85a35b0f3e0f5f4a968e1d13e594 (diff) | |
download | gdb-fb49eea0b528d882a390815be1dbe7c6b8f3463a.zip gdb-fb49eea0b528d882a390815be1dbe7c6b8f3463a.tar.gz gdb-fb49eea0b528d882a390815be1dbe7c6b8f3463a.tar.bz2 |
* sparc-opc.c (v9andleon): Fix thinko.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/sparc-opc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/sparc-opc.c b/opcodes/sparc-opc.c index 11f866d..5102c1d 100644 --- a/opcodes/sparc-opc.c +++ b/opcodes/sparc-opc.c @@ -63,10 +63,10 @@ #define letandleon (MASK_SPARCLET | MASK_LEON) #define sparclite (MASK_SPARCLITE) #define v9 (MASK_V9 | MASK_V9A | MASK_V9B) +/* v9 insns supported by leon. */ +#define v9andleon (MASK_V9 | MASK_V9A | MASK_V9B | MASK_LEON) #define v9a (MASK_V9A | MASK_V9B) #define v9b (MASK_V9B) -/* v9 insns supported by leon. */ -#define v9andleon (MASK_V9 | MASK_LEON) /* v6 insns not supported by v9. */ #define v6notv9 (MASK_V6 | MASK_V7 | MASK_V8 | MASK_LEON \ | MASK_SPARCLET | MASK_SPARCLITE) |