1*38fd1498Szrj /* Copyright (C) 1997-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_GSTAB_H 20*38fd1498Szrj #define GCC_GSTAB_H 21*38fd1498Szrj 22*38fd1498Szrj #define __define_stab(NAME, CODE, STRING) NAME=CODE, 23*38fd1498Szrj 24*38fd1498Szrj enum 25*38fd1498Szrj { 26*38fd1498Szrj #include "stab.def" 27*38fd1498Szrj LAST_UNUSED_STAB_CODE 28*38fd1498Szrj }; 29*38fd1498Szrj 30*38fd1498Szrj /* stabs debug codes really are integers with expressive names. */ 31*38fd1498Szrj typedef int stab_code_type; 32*38fd1498Szrj 33*38fd1498Szrj #undef __define_stab 34*38fd1498Szrj 35*38fd1498Szrj #endif /* ! GCC_GSTAB_H */ 36