Mercurial > hg > CbC > GCC_original
diff gcc/gsyms.h @ 16:04ced10e8804
gcc 7
author | kono |
---|---|
date | Fri, 27 Oct 2017 22:46:09 +0900 |
parents | 77e2b8dfacca |
children | 84e7813d76e9 |
line wrap: on
line diff
--- a/gcc/gsyms.h Sun Aug 21 07:07:55 2011 +0900 +++ b/gcc/gsyms.h Fri Oct 27 22:46:09 2017 +0900 @@ -1,4 +1,4 @@ -/* Copyright (C) 1992, 1996, 1997, 1998 Free Software Foundation, Inc. +/* Copyright (C) 1992-2017 Free Software Foundation, Inc. This file is part of GCC. @@ -18,6 +18,8 @@ /* For cross compilation, use the portable definitions from the COFF documentation. */ +#ifndef GCC_GSYMS_H +#define GCC_GSYMS_H #define __GNU_SYMS__ @@ -72,9 +74,6 @@ T_USHORT = 13, T_UINT = 14, T_ULONG = 15 -#ifdef EXTENDED_SDB_BASIC_TYPES - , T_LNGDBL = 16 -#endif }; enum sdb_type_class @@ -87,18 +86,12 @@ enum sdb_masks { -#ifdef EXTENDED_SDB_BASIC_TYPES - N_BTMASK = 0x1f, - N_TMASK = 0x60, - N_TMASK1 = 0x300, - N_TMASK2 = 0x360, - N_BTSHFT = 5, -#else N_BTMASK = 017, N_TMASK = 060, N_TMASK1 = 0300, N_TMASK2 = 0360, N_BTSHFT = 4, -#endif N_TSHIFT = 2 }; + +#endif /* GCC_GSYMS_H */