diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-12 14:05:22 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-10-12 14:05:22 +0000 |
commit | 78934ba843ef5112d122f82e1801a4888eedcb04 (patch) | |
tree | 5f68fe0c6955705c05b49a36b2ad87018b913fee /gdb | |
parent | 9902404797153b548894cf20588b30af65e05cca (diff) | |
download | gdb-78934ba843ef5112d122f82e1801a4888eedcb04.zip gdb-78934ba843ef5112d122f82e1801a4888eedcb04.tar.gz gdb-78934ba843ef5112d122f82e1801a4888eedcb04.tar.bz2 |
* stabsread.c: Fix comment about gcc 2.3.3 stab for long long int.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/stabsread.c | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 9d88f1f..405eee1 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +Tue Oct 12 08:59:15 1993 Jim Kingdon (kingdon@lioth.cygnus.com) + + * stabsread.c: Fix comment about gcc 2.3.3 stab for long long int. + Mon Oct 11 14:27:25 1993 Jim Kingdon (kingdon@lioth.cygnus.com) * m3-nat.c, config/nm-m3.h: Add a target_ops struct and other diff --git a/gdb/stabsread.c b/gdb/stabsread.c index 6a019d8..5731e69 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -3274,8 +3274,8 @@ read_range_type (pp, typenums, objfile) else if (n2 == 0 && n3 == -1) { /* It is unsigned int or unsigned long. */ - /* GCC sometimes uses this for long long too. We could - distinguish it by the name, but we don't. */ + /* GCC 2.3.3 uses this for long long too, but that is just a GDB 3.5 + compatibility hack. */ return init_type (TYPE_CODE_INT, TARGET_INT_BIT / TARGET_CHAR_BIT, TYPE_FLAG_UNSIGNED, NULL, objfile); } |