xcoff.h 1.1 KB

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