* s390-tdep.c (s390_address_class_type_flags): Use
authorTom Tromey <tromey@redhat.com>
Sun, 24 Aug 2008 20:33:33 +0000 (20:33 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 24 Aug 2008 20:33:33 +0000 (20:33 +0000)
TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1.
(s390_address_class_type_flags_to_name): Likewise.
(s390_address_class_name_to_type_flags): Likewise.

gdb/ChangeLog
gdb/s390-tdep.c

index 1812d91dec922f1762ffeaf7d18021a64a13ee37..d9340d5573457e00b4974ae4f663e05e4a189385 100644 (file)
@@ -1,3 +1,10 @@
+2008-08-24  Tom Tromey  <tromey@redhat.com>
+
+       * s390-tdep.c (s390_address_class_type_flags): Use
+       TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1.
+       (s390_address_class_type_flags_to_name): Likewise.
+       (s390_address_class_name_to_type_flags): Likewise.
+
 2008-08-24  Tom Tromey  <tromey@redhat.com>
 
        * rs6000-tdep.c (rs6000_builtin_type_vec128): Don't use
index db1891fb5baae1857471549dd14a79d4a75760e8..ae7f332846e2aa37a7deb4fd42091cc9edc89f05 100644 (file)
@@ -2278,7 +2278,7 @@ static int
 s390_address_class_type_flags (int byte_size, int dwarf2_addr_class)
 {
   if (byte_size == 4)
-    return TYPE_FLAG_ADDRESS_CLASS_1;
+    return TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
   else
     return 0;
 }
@@ -2286,7 +2286,7 @@ s390_address_class_type_flags (int byte_size, int dwarf2_addr_class)
 static const char *
 s390_address_class_type_flags_to_name (struct gdbarch *gdbarch, int type_flags)
 {
-  if (type_flags & TYPE_FLAG_ADDRESS_CLASS_1)
+  if (type_flags & TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1)
     return "mode32";
   else
     return NULL;
@@ -2298,7 +2298,7 @@ s390_address_class_name_to_type_flags (struct gdbarch *gdbarch, const char *name
 {
   if (strcmp (name, "mode32") == 0)
     {
-      *type_flags_ptr = TYPE_FLAG_ADDRESS_CLASS_1;
+      *type_flags_ptr = TYPE_INSTANCE_FLAG_ADDRESS_CLASS_1;
       return 1;
     }
   else