aboutsummaryrefslogtreecommitdiff
path: root/gdb/valprint.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-04-06 14:50:15 +0000
committerAndrew Cagney <cagney@redhat.com>2003-04-06 14:50:15 +0000
commit996179eebb352d0242007cecc12d41c67d4982ba (patch)
tree7b0b6c76af9c3900d433a9de849052356fbd35a0 /gdb/valprint.c
parent55e1d7e7f45a806b592581dee06491fbae895a0d (diff)
downloadfsf-binutils-gdb-996179eebb352d0242007cecc12d41c67d4982ba.zip
fsf-binutils-gdb-996179eebb352d0242007cecc12d41c67d4982ba.tar.gz
fsf-binutils-gdb-996179eebb352d0242007cecc12d41c67d4982ba.tar.bz2
2003-04-06 Andrew Cagney <cagney@redhat.com>
* valprint.c (val_print_type_code_int): Delete #ifdef PRINT_TYPELESS_INTEGER code.
Diffstat (limited to 'gdb/valprint.c')
-rw-r--r--gdb/valprint.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/valprint.c b/gdb/valprint.c
index b1c47a1..d4b8bf5 100644
--- a/gdb/valprint.c
+++ b/gdb/valprint.c
@@ -205,12 +205,8 @@ val_print_type_code_int (struct type *type, char *valaddr,
}
else
{
-#ifdef PRINT_TYPELESS_INTEGER
- PRINT_TYPELESS_INTEGER (stream, type, unpack_long (type, valaddr));
-#else
print_longest (stream, TYPE_UNSIGNED (type) ? 'u' : 'd', 0,
unpack_long (type, valaddr));
-#endif
}
}