150397Sobrien/* dbxout.h - Various declarations for functions found in dbxout.c
2169689Skan   Copyright (C) 1998, 1999, 2000, 2003, 2004
3132718Skan   Free Software Foundation, Inc.
450397Sobrien
590075SobrienThis file is part of GCC.
650397Sobrien
790075SobrienGCC is free software; you can redistribute it and/or modify it under
890075Sobrienthe terms of the GNU General Public License as published by the Free
990075SobrienSoftware Foundation; either version 2, or (at your option) any later
1090075Sobrienversion.
1150397Sobrien
1290075SobrienGCC is distributed in the hope that it will be useful, but WITHOUT ANY
1390075SobrienWARRANTY; without even the implied warranty of MERCHANTABILITY or
1490075SobrienFITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1590075Sobrienfor more details.
1650397Sobrien
1750397SobrienYou should have received a copy of the GNU General Public License
1890075Sobrienalong with GCC; see the file COPYING.  If not, write to the Free
19169689SkanSoftware Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
20169689Skan02110-1301, USA.  */
2150397Sobrien
22169689Skan#ifndef GCC_DBXOUT_H
23169689Skan#define GCC_DBXOUT_H
24169689Skan
25132718Skanextern int dbxout_symbol (tree, int);
26132718Skanextern void dbxout_parms (tree);
27132718Skanextern void dbxout_reg_parms (tree);
28132718Skanextern int dbxout_syms (tree);
29169689Skan
30169689Skan/* Language description for N_SO stabs.  */
31169689Skan#define N_SO_AS          1
32169689Skan#define N_SO_C           2
33169689Skan#define N_SO_ANSI_C      3
34169689Skan#define N_SO_CC          4 /* c++*/
35169689Skan#define N_SO_FORTRAN     5
36169689Skan#define N_SO_PASCAL      6
37169689Skan#define N_SO_FORTRAN90   7
38169689Skan#define N_SO_OBJC        50
39169689Skan#define N_SO_OBJCPLUS    51
40169689Skan
41169689Skan#endif /* GCC_DBXOUT_H */
42