Modified Files:
authorKung Hsu <kung@cygnus>
Wed, 29 Sep 1993 20:18:00 +0000 (20:18 +0000)
committerKung Hsu <kung@cygnus>
Wed, 29 Sep 1993 20:18:00 +0000 (20:18 +0000)
cp-valprint.c
Log Messages:
        * cp-valprint.c: change vtble field name to __vtbl (pr2695)

gdb/cp-valprint.c

index fdda85f9a5752b597134472822c340d9b5ce8026..d43eb52f18ddc7888e65b67b98f3a0aef5a90b4c 100644 (file)
@@ -167,8 +167,12 @@ cp_is_vtbl_ptr_type(type)
      struct type *type;
 {
   char *typename = type_name_no_tag (type);
+/* WAS this and from 4.10, it changed to __vtbl_ptr_type **
   static const char vtbl_ptr_name[] =
     { CPLUS_MARKER,'v','t','b','l','_','p','t','r','_','t','y','p','e', 0 };
+*/
+  static const char vtbl_ptr_name[] =
+    { '_','_','v','t','b','l','_','p','t','r','_','t','y','p','e', 0 };
 
   return (typename != NULL && STREQ(typename, vtbl_ptr_name));
 }