2003-01-17 Andrew Cagney <ac131313@redhat.com>
authorAndrew Cagney <cagney@redhat.com>
Fri, 17 Jan 2003 19:12:19 +0000 (19:12 +0000)
committerAndrew Cagney <cagney@redhat.com>
Fri, 17 Jan 2003 19:12:19 +0000 (19:12 +0000)
* main.c (captured_main): Don't use PTR.
* cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
* gdbtypes.c (lookup_primitive_typename): Ditto.
(lookup_struct_elt_type): Ditto.
* f-valprint.c (info_common_command): Ditto.
(list_all_visible_commons): Ditto.
* jv-typeprint.c (java_type_print_base): Ditto.

gdb/ChangeLog
gdb/cp-valprint.c
gdb/f-valprint.c
gdb/gdbtypes.c
gdb/jv-typeprint.c
gdb/main.c

index e039015..5ced3eb 100644 (file)
@@ -1,5 +1,13 @@
 2003-01-17  Andrew Cagney  <ac131313@redhat.com>
 
+       * main.c (captured_main): Don't use PTR.
+       * cp-valprint.c (cp_print_class_method): Replace STREQ with strcmp.
+       * gdbtypes.c (lookup_primitive_typename): Ditto.
+       (lookup_struct_elt_type): Ditto.
+       * f-valprint.c (info_common_command): Ditto.
+       (list_all_visible_commons): Ditto.
+       * jv-typeprint.c (java_type_print_base): Ditto.
+
        * config/djgpp/fnchange.lst: Rename mi1-var-block.exp,
        mi1-var-child.exp, mi1-var-cmd.exp and mi1-var-display.exp.
        Rename opcodes/iq2000-desc.c and opcodes/iq2000-dis.c.  Rename
index f362d84..a2ccbdb 100644 (file)
@@ -130,7 +130,8 @@ cp_print_class_method (char *valaddr,
          check_stub_method_group (domain, i);
          for (j = 0; j < len2; j++)
            {
-             if (STREQ (SYMBOL_NAME (sym), TYPE_FN_FIELD_PHYSNAME (f, j)))
+             if (strcmp (SYMBOL_NAME (sym), TYPE_FN_FIELD_PHYSNAME (f, j))
+                 == 0)
                goto common;
            }
        }
index 1be07e7..6b4b36d 100644 (file)
@@ -562,7 +562,7 @@ list_all_visible_commons (char *funname)
 
   while (tmp != NULL)
     {
-      if (STREQ (tmp->owning_function, funname))
+      if (strcmp (tmp->owning_function, funname) == 0)
        printf_filtered ("%s\n", tmp->name);
 
       tmp = tmp->next;
@@ -643,7 +643,7 @@ info_common_command (char *comname, int from_tty)
 
   if (the_common)
     {
-      if (STREQ (comname, BLANK_COMMON_NAME_LOCAL))
+      if (strcmp (comname, BLANK_COMMON_NAME_LOCAL) == 0)
        printf_filtered ("Contents of blank COMMON block:\n");
       else
        printf_filtered ("Contents of F77 COMMON block '%s':\n", comname);
index 7ef423a..679822f 100644 (file)
@@ -1021,7 +1021,7 @@ lookup_primitive_typename (char *name)
 
   for (p = current_language->la_builtin_type_vector; *p != NULL; p++)
     {
-      if (STREQ (TYPE_NAME (**p), name))
+      if (strcmp (TYPE_NAME (**p), name) == 0)
        {
          return (**p);
        }
@@ -1228,7 +1228,7 @@ lookup_struct_elt_type (struct type *type, char *name, int noerr)
     char *typename;
 
     typename = type_name_no_tag (type);
-    if (typename != NULL && STREQ (typename, name))
+    if (typename != NULL && strcmp (typename, name) == 0)
       return type;
   }
 #endif
index 893082c..b6dac57 100644 (file)
@@ -216,7 +216,7 @@ java_type_print_base (struct type *type, struct ui_file *stream, int show,
              n_overloads = TYPE_FN_FIELDLIST_LENGTH (type, i);
              method_name = TYPE_FN_FIELDLIST_NAME (type, i);
              name = type_name_no_tag (type);
-             is_constructor = name && STREQ (method_name, name);
+             is_constructor = name && strcmp (method_name, name) == 0;
 
              for (j = 0; j < n_overloads; j++)
                {
index 503fd5d..fb24be9 100644 (file)
@@ -173,7 +173,7 @@ captured_main (void *data)
 #endif /* MPW */
 
   /* This needs to happen before the first use of malloc.  */
-  init_malloc ((PTR) NULL);
+  init_malloc (NULL);
 
 #if defined (ALIGN_STACK_ON_STARTUP)
   i = (int) &count & 0x3;