aboutsummaryrefslogtreecommitdiff
path: root/opcodes/fr30-dis.c
diff options
context:
space:
mode:
authorDoug Evans <dje@google.com>1998-11-10 19:11:04 +0000
committerDoug Evans <dje@google.com>1998-11-10 19:11:04 +0000
commit1c8f439ec6f8f43fa3a6e1987fb5ea23ebd910f8 (patch)
treeb143242fc2138714d5178c04cd452ff1a675a286 /opcodes/fr30-dis.c
parenta3606134a2986d6b28f7c0dd86b35d8be775765f (diff)
downloadgdb-1c8f439ec6f8f43fa3a6e1987fb5ea23ebd910f8.zip
gdb-1c8f439ec6f8f43fa3a6e1987fb5ea23ebd910f8.tar.gz
gdb-1c8f439ec6f8f43fa3a6e1987fb5ea23ebd910f8.tar.bz2
* cgen-dis.in (print_normal): CGEN_OPERAND_FAKE renamed to
CGEN_OPERAND_SEM_ONLY. * m32r-dis.c,m32r-opc.c,m32r-opc.h: Rebuild. * fr30-dis.c,fr30-opc.c,fr30-opc.h: Rebuild.
Diffstat (limited to 'opcodes/fr30-dis.c')
-rw-r--r--opcodes/fr30-dis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/opcodes/fr30-dis.c b/opcodes/fr30-dis.c
index 4ab7d39..d2cbab3 100644
--- a/opcodes/fr30-dis.c
+++ b/opcodes/fr30-dis.c
@@ -366,7 +366,7 @@ print_normal (od, dis_info, value, attrs, pc, length)
#endif
/* Print the operand as directed by the attributes. */
- if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_FAKE))
+ if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SEM_ONLY))
; /* nothing to do */
else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_UNSIGNED))
(*info->fprintf_func) (info->stream, "0x%lx", value);
@@ -392,7 +392,7 @@ print_address (od, dis_info, value, attrs, pc, length)
#endif
/* Print the operand as directed by the attributes. */
- if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_FAKE))
+ if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_SEM_ONLY))
; /* nothing to do */
else if (CGEN_BOOL_ATTR (attrs, CGEN_OPERAND_PCREL_ADDR))
(*info->print_address_func) (value, info);