4c14fd7ee2
2012-01-11 Bruce Korb <bkorb@gnu.org> Steven G. Kargl <kargl@gcc.gnu.org> Andreas Tobler <andreast@fgznet.ch> PR bootstrap/57105 PR preprocessor/51776 * inclhack.def (cdef_cplusplus): Add a replacement for [[noreturn]]. * fixincl.x: Regenerate. * tests/base/sys/cdefs.h: Update. * genfixes: Remove the 'Ver.' from the version check. Co-Authored-By: Andreas Tobler <andreast@fgznet.ch> Co-Authored-By: Steven G. Kargl <kargl@gcc.gnu.org> From-SVN: r183096
30 lines
732 B
C
30 lines
732 B
C
/* DO NOT EDIT THIS FILE.
|
|
|
|
It has been auto-edited by fixincludes from:
|
|
|
|
"fixinc/tests/inc/sys/cdefs.h"
|
|
|
|
This had to be done to correct non-standard usages in the
|
|
original, manufacturer supplied header file. */
|
|
|
|
|
|
|
|
#if defined( CDEF_CPLUSPLUS_CHECK )
|
|
#define _Noreturn __attribute__((__noreturn__))
|
|
#endif /* CDEF_CPLUSPLUS_CHECK */
|
|
|
|
|
|
#if defined( FREEBSD_GCC3_BREAKAGE_CHECK )
|
|
#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7
|
|
#endif /* FREEBSD_GCC3_BREAKAGE_CHECK */
|
|
|
|
|
|
#if defined( FREEBSD_GCC4_BREAKAGE_CHECK )
|
|
#if __GNUC__ == 2 && __GNUC_MINOR__ >= 7 || __GNUC__ >= 3
|
|
#endif /* FREEBSD_GCC4_BREAKAGE_CHECK */
|
|
|
|
|
|
#if defined( NETBSD_EXTRA_SEMICOLON_CHECK )
|
|
#define __END_DECLS }
|
|
#endif /* NETBSD_EXTRA_SEMICOLON_CHECK */
|