From dbb6088f89fe3cc22845097dc17f9f6a06682be1 Mon Sep 17 00:00:00 2001 From: Olivier Hainque Date: Wed, 20 May 2009 12:44:44 +0000 Subject: 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 --- gcc/gstab.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'gcc/gstab.h') 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 */ -- cgit v1.1