aboutsummaryrefslogtreecommitdiff
path: root/gcc/gstab.h
diff options
context:
space:
mode:
authorOlivier Hainque <hainque@adacore.com>2009-05-20 12:44:44 +0000
committerOlivier Hainque <hainque@gcc.gnu.org>2009-05-20 12:44:44 +0000
commitdbb6088f89fe3cc22845097dc17f9f6a06682be1 (patch)
treef1aa85cae9c808d63e36ad9a6513afc74266aab3 /gcc/gstab.h
parent7ec492570b77735583dceb28b091b4fa71ea1320 (diff)
downloadgcc-dbb6088f89fe3cc22845097dc17f9f6a06682be1.zip
gcc-dbb6088f89fe3cc22845097dc17f9f6a06682be1.tar.gz
gcc-dbb6088f89fe3cc22845097dc17f9f6a06682be1.tar.bz2
gstab.h (stab_code_type): Define, to be used instead of the __stab_debug_code enum, made anonymous.
* gstab.h (stab_code_type): Define, to be used instead of the __stab_debug_code enum, made anonymous. Add 2009 to the copyright notice. * dbxout.c (STAB_CODE_TYPE): Remove #define and replace use occurrences by stab_code_type. * mips-tfile.c (STAB_CODE_TYPE): Remove #define, unused. From-SVN: r147734
Diffstat (limited to 'gcc/gstab.h')
-rw-r--r--gcc/gstab.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/gcc/gstab.h b/gcc/gstab.h
index 7f82b55..fccb296 100644
--- a/gcc/gstab.h
+++ b/gcc/gstab.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 1997, 1998, 2001 Free Software Foundation, Inc.
+/* Copyright (C) 1997, 1998, 2001, 2009 Free Software Foundation, Inc.
This file is part of GCC.
@@ -21,12 +21,15 @@ along with GCC; see the file COPYING3. If not see
#define __define_stab(NAME, CODE, STRING) NAME=CODE,
-enum __stab_debug_code
+enum
{
#include "stab.def"
LAST_UNUSED_STAB_CODE
};
+/* stabs debug codes really are integers with expressive names. */
+typedef int stab_code_type;
+
#undef __define_stab
#endif /* ! GCC_GSTAB_H */