gdb: remove TYPE_UNSIGNED
[deliverable/binutils-gdb.git] / gdb / guile / scm-math.c
index 419f5099bf4300b01d62aeecbecde8f3a965382f..c297c45dacb1dfdc8eb7dd01163c3ab5734aed06 100644 (file)
@@ -527,7 +527,7 @@ vlscm_convert_typed_number (const char *func_name, int obj_arg_pos, SCM obj,
   if (is_integral_type (type)
       || type->code () == TYPE_CODE_PTR)
     {
-      if (TYPE_UNSIGNED (type))
+      if (type->is_unsigned ())
        {
          ULONGEST max;
 
@@ -573,7 +573,7 @@ vlscm_convert_typed_number (const char *func_name, int obj_arg_pos, SCM obj,
 static int
 vlscm_integer_fits_p (SCM obj, struct type *type)
 {
-  if (TYPE_UNSIGNED (type))
+  if (type->is_unsigned ())
     {
       ULONGEST max;
 
This page took 0.025296 seconds and 4 git commands to generate.