1 fixes build error when compiled with GCC 6.3.0:
2 In file included from ../../gcc/cp/except.c:990:0:
3 cfns.gperf: At top level:
4 cfns.gperf:101:1: error: 'gnu_inline' attribute present on 'libc_name_p'
5 cfns.gperf:26:14: error: but not here
7 --- gcc-4.7.4.org/gcc/cp/cfns.h 2009-04-21 20:03:23.000000000 +0000
8 +++ gcc-4.7.4/gcc/cp/cfns.h 2017-01-29 02:12:54.225436646 +0000
12 static unsigned int hash (const char *, unsigned int);
16 const char * libc_name_p (const char *, unsigned int);
17 /* maximum key range = 391, duplicates = 0 */
20 return hval + asso_values[(unsigned char)str[len - 1]];
25 -#ifdef __GNUC_STDC_INLINE__
26 -__attribute__ ((__gnu_inline__))
30 libc_name_p (register const char *str, register unsigned int len)