OSDN Git Service

* eval.c (evaluate_struct_tuple): Use strcmp instead of
authorMark Kettenis <kettenis@gnu.org>
Tue, 28 Jun 2005 20:48:14 +0000 (20:48 +0000)
committerMark Kettenis <kettenis@gnu.org>
Tue, 28 Jun 2005 20:48:14 +0000 (20:48 +0000)
DEPRECATED_STREQ.

gdb/ChangeLog
gdb/eval.c

index 2d16d8f..9688a0f 100644 (file)
@@ -1,3 +1,8 @@
+2005-06-28  Mark Kettenis  <kettenis@gnu.org>
+
+       * eval.c (evaluate_struct_tuple): Use strcmp instead of
+       DEPRECATED_STREQ.
+
 2005-06-27  Michael Snyder  <msnyder@redhat.com>
 
        * config/mn10300/linux.mt: New file.
index 20df063..29622ce 100644 (file)
@@ -225,7 +225,7 @@ evaluate_struct_tuple (struct value *struct_val,
                   fieldno++)
                {
                  char *field_name = TYPE_FIELD_NAME (struct_type, fieldno);
-                 if (field_name != NULL && DEPRECATED_STREQ (field_name, label))
+                 if (field_name != NULL && strcmp (field_name, label) == 0)
                    {
                      variantno = -1;
                      subfieldno = fieldno;
@@ -253,9 +253,9 @@ evaluate_struct_tuple (struct value *struct_val,
                                 subfieldno < TYPE_NFIELDS (substruct_type);
                                   subfieldno++)
                                {
-                                 if (DEPRECATED_STREQ (TYPE_FIELD_NAME (substruct_type,
+                                 if (strcmp(TYPE_FIELD_NAME (substruct_type,
                                                              subfieldno),
-                                            label))
+                                            label) == 0)
                                    {
                                      goto found;
                                    }