1*38fd1498Szrj /* Copyright (C) 2003-2018 Free Software Foundation, Inc. 2*38fd1498Szrj 3*38fd1498Szrj This file is part of GCC. 4*38fd1498Szrj 5*38fd1498Szrj GCC is free software; you can redistribute it and/or modify it under 6*38fd1498Szrj the terms of the GNU General Public License as published by the Free 7*38fd1498Szrj Software Foundation; either version 3, or (at your option) any later 8*38fd1498Szrj version. 9*38fd1498Szrj 10*38fd1498Szrj GCC is distributed in the hope that it will be useful, but WITHOUT ANY 11*38fd1498Szrj WARRANTY; without even the implied warranty of MERCHANTABILITY or 12*38fd1498Szrj FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 13*38fd1498Szrj for more details. 14*38fd1498Szrj 15*38fd1498Szrj You should have received a copy of the GNU General Public License 16*38fd1498Szrj along with GCC; see the file COPYING3. If not see 17*38fd1498Szrj <http://www.gnu.org/licenses/>. */ 18*38fd1498Szrj 19*38fd1498Szrj #ifndef GCC_XCOFF_H 20*38fd1498Szrj #define GCC_XCOFF_H 21*38fd1498Szrj 22*38fd1498Szrj /* Storage classes in XCOFF object file format designed for DBX's use. 23*38fd1498Szrj This info is from the `Files Reference' manual for IBM's AIX version 3 24*38fd1498Szrj for the RS6000. */ 25*38fd1498Szrj 26*38fd1498Szrj #define C_GSYM 0x80 27*38fd1498Szrj #define C_LSYM 0x81 28*38fd1498Szrj #define C_PSYM 0x82 29*38fd1498Szrj #define C_RSYM 0x83 30*38fd1498Szrj #define C_RPSYM 0x84 31*38fd1498Szrj #define C_STSYM 0x85 32*38fd1498Szrj 33*38fd1498Szrj #define C_BCOMM 0x87 34*38fd1498Szrj #define C_ECOML 0x88 35*38fd1498Szrj #define C_ECOMM 0x89 36*38fd1498Szrj #define C_DECL 0x8c 37*38fd1498Szrj #define C_ENTRY 0x8d 38*38fd1498Szrj #define C_FUN 0x8e 39*38fd1498Szrj 40*38fd1498Szrj #endif /* GCC_XCOFF_H */ 41