gstab.h 977 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* Copyright (C) 1997-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_GSTAB_H
  15. #define GCC_GSTAB_H
  16. #define __define_stab(NAME, CODE, STRING) NAME=CODE,
  17. enum
  18. {
  19. #include "stab.def"
  20. LAST_UNUSED_STAB_CODE
  21. };
  22. /* stabs debug codes really are integers with expressive names. */
  23. typedef int stab_code_type;
  24. #undef __define_stab
  25. #endif /* ! GCC_GSTAB_H */