Deleted Added
full compact
dbxout.c (119265) dbxout.c (122190)
1/* Output dbx-format symbol table information from GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

--- 510 unchanged lines hidden (view full) ---

519 if (syms)
520 {
521 dbxout_typedefs (TREE_CHAIN (syms));
522 if (TREE_CODE (syms) == TYPE_DECL)
523 {
524 tree type = TREE_TYPE (syms);
525 if (TYPE_NAME (type)
526 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
1/* Output dbx-format symbol table information from GNU compiler.
2 Copyright (C) 1987, 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free

--- 510 unchanged lines hidden (view full) ---

519 if (syms)
520 {
521 dbxout_typedefs (TREE_CHAIN (syms));
522 if (TREE_CODE (syms) == TYPE_DECL)
523 {
524 tree type = TREE_TYPE (syms);
525 if (TYPE_NAME (type)
526 && TREE_CODE (TYPE_NAME (type)) == TYPE_DECL
527 && COMPLETE_TYPE_P (type)
527 && COMPLETE_OR_VOID_TYPE_P (type)
528 && ! TREE_ASM_WRITTEN (TYPE_NAME (type)))
529 dbxout_symbol (TYPE_NAME (type), 0);
530 }
531 }
532}
533
534/* Change to reading from a new source file. Generate a N_BINCL stab. */
535

--- 2471 unchanged lines hidden ---
528 && ! TREE_ASM_WRITTEN (TYPE_NAME (type)))
529 dbxout_symbol (TYPE_NAME (type), 0);
530 }
531 }
532}
533
534/* Change to reading from a new source file. Generate a N_BINCL stab. */
535

--- 2471 unchanged lines hidden ---