Modified Files:
authorKung Hsu <kung@cygnus>
Mon, 29 Nov 1993 23:40:31 +0000 (23:40 +0000)
committerKung Hsu <kung@cygnus>
Mon, 29 Nov 1993 23:40:31 +0000 (23:40 +0000)
ChangeLog stabsread.c

        * stabsread.c(read_struct_field): Fix the check when getting to
        member functions. (fix pr4000).

gdb/ChangeLog
gdb/stabsread.c

index f79f841ec1ad6eaab88fb40bd74937f3331f78e8..30d7f4fe45ff51a5b369cf39ac6a93a600901fab 100644 (file)
@@ -1,3 +1,8 @@
+Mon Nov 29 15:34:58 1993  Kung Hsu  (kung@cirdan.cygnus.com)
+
+       * stabsread.c(read_struct_field): Fix the check when getting to
+       member functions.
+
 Mon Nov 29 16:48:16 1993  Ian Lance Taylor  (ian@tweedledumb.cygnus.com)
 
        gcc -Wall -O lint:
index f79f35142df43854fa7caec53697acf04288cbd1..4824b718864fbd63ff87a6d266a00cbc0cb75725 100644 (file)
@@ -2343,7 +2343,7 @@ read_struct_fields (fip, pp, type, objfile)
        }
       read_one_struct_field (fip, pp, p, type, objfile);
     }
-  if (p[1] == ':')
+  if (p[0] == ':' && p[1] == ':')
     {
       /* chill the list of fields: the last entry (at the head) is a
         partially constructed entry which we now scrub. */