* stabsread.c: Fix comment about gcc 2.3.3 stab for long long int.

This commit is contained in:
Jim Kingdon 1993-10-12 14:05:22 +00:00
parent 9902404797
commit 78934ba843
2 changed files with 6 additions and 2 deletions

View File

@ -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

View File

@ -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);
}