2003-04-06 Andrew Cagney <cagney@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Sun, 6 Apr 2003 14:50:15 +0000 (14:50 +0000)
committerAndrew Cagney <cagney@redhat.com>
Sun, 6 Apr 2003 14:50:15 +0000 (14:50 +0000)
* valprint.c (val_print_type_code_int): Delete #ifdef
PRINT_TYPELESS_INTEGER code.

gdb/ChangeLog
gdb/valprint.c

index a4c8ed887df3bcbe812a0825cfb572634787719e..86520604bfe38bffecc491da628c55728f997417 100644 (file)
@@ -1,5 +1,8 @@
 2003-04-06  Andrew Cagney  <cagney@redhat.com>
 
+       * valprint.c (val_print_type_code_int): Delete #ifdef
+       PRINT_TYPELESS_INTEGER code.
+
        * gdbarch.sh (DEPRECATED_USE_GENERIC_DUMMY_FRAMES)
        (CALL_DUMMY_LOCATION, DEPRECATED_PC_IN_CALL_DUMMY): Allow partial
        multi-arch definition.
index b1c47a123d46209975e52b0092de9450c9bc3aec..d4b8bf5faf758804ce4f9ee66b4ddf67e15b64d6 100644 (file)
@@ -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
     }
 }