dbxout.h revision 169690
1178476Sjb/* dbxout.h - Various declarations for functions found in dbxout.c
2178476Sjb   Copyright (C) 1998, 1999, 2000, 2003, 2004
3178476Sjb   Free Software Foundation, Inc.
4178476Sjb
5178476SjbThis file is part of GCC.
6178476Sjb
7178476SjbGCC is free software; you can redistribute it and/or modify it under
8178476Sjbthe terms of the GNU General Public License as published by the Free
9178476SjbSoftware Foundation; either version 2, or (at your option) any later
10178476Sjbversion.
11178476Sjb
12178476SjbGCC is distributed in the hope that it will be useful, but WITHOUT ANY
13178476SjbWARRANTY; without even the implied warranty of MERCHANTABILITY or
14178476SjbFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15178476Sjbfor more details.
16178476Sjb
17178476SjbYou should have received a copy of the GNU General Public License
18178476Sjbalong with GCC; see the file COPYING.  If not, write to the Free
19178476SjbSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20178476Sjb02110-1301, USA.  */
21178476Sjb
22178476Sjb#ifndef GCC_DBXOUT_H
23178476Sjb#define GCC_DBXOUT_H
24178476Sjb
25178476Sjbextern int dbxout_symbol (tree, int);
26178476Sjbextern void dbxout_parms (tree);
27178476Sjbextern void dbxout_reg_parms (tree);
28178476Sjbextern int dbxout_syms (tree);
29178476Sjb
30178476Sjb/* Language description for N_SO stabs.  */
31178476Sjb#define N_SO_AS          1
32178476Sjb#define N_SO_C           2
33178476Sjb#define N_SO_ANSI_C      3
34178476Sjb#define N_SO_CC          4 /* c++*/
35178476Sjb#define N_SO_FORTRAN     5
36178476Sjb#define N_SO_PASCAL      6
37178476Sjb#define N_SO_FORTRAN90   7
38178476Sjb#define N_SO_OBJC        50
39178476Sjb#define N_SO_OBJCPLUS    51
40178476Sjb
41178476Sjb#endif /* GCC_DBXOUT_H */
42178476Sjb