* partial-stab.h (near N_BINCL): Remove redundant code in N_BINCL

case.  Use code in N_SOL.
This commit is contained in:
Stu Grossman 1992-12-31 17:24:06 +00:00
parent 684a832faa
commit 8a1c3e9949
2 changed files with 8 additions and 12 deletions

View File

@ -1,5 +1,8 @@
Thu Dec 31 09:03:02 1992 Stu Grossman (grossman at cygnus.com)
* partial-stab.h (near N_BINCL): Remove redundant code in N_BINCL
case. Use code in N_SOL.
* paread.c: New file that contains all HPPA/HPUX symbol reading
code.
* dbxread.c: Remove almost all HPPA/HPUX symbol reading code.

View File

@ -267,20 +267,11 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
/* Mark down an include file in the current psymtab */
psymtab_include_list[includes_used++] = namestring;
if (includes_used >= includes_allocated)
{
char **orig = psymtab_include_list;
goto record_include_file;
psymtab_include_list = (char **)
alloca ((includes_allocated *= 2) *
sizeof (char *));
memcpy ((PTR)psymtab_include_list, (PTR)orig,
includes_used * sizeof (char *));
}
#endif /* DBXREAD_ONLY */
#else /* DBXREAD_ONLY */
continue;
#endif
case N_SOL:
/* Mark down an include file in the current psymtab */
@ -311,6 +302,8 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
continue;
}
record_include_file:
psymtab_include_list[includes_used++] = namestring;
if (includes_used >= includes_allocated)
{