aboutsummaryrefslogtreecommitdiff
path: root/gdb/stabsread.c
diff options
context:
space:
mode:
authorJim Kingdon <jkingdon@engr.sgi.com>1993-10-12 14:05:22 +0000
committerJim Kingdon <jkingdon@engr.sgi.com>1993-10-12 14:05:22 +0000
commit78934ba843ef5112d122f82e1801a4888eedcb04 (patch)
tree5f68fe0c6955705c05b49a36b2ad87018b913fee /gdb/stabsread.c
parent9902404797153b548894cf20588b30af65e05cca (diff)
downloadgdb-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/stabsread.c')
-rw-r--r--gdb/stabsread.c4
1 files changed, 2 insertions, 2 deletions
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);
}