diff options
Diffstat (limited to 'gcc/system.h')
-rw-r--r-- | gcc/system.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/system.h b/gcc/system.h index 0cbf60a..b091794 100644 --- a/gcc/system.h +++ b/gcc/system.h @@ -722,7 +722,8 @@ extern int vsnprintf (char *, size_t, const char *, va_list); /* Redefine abort to report an internal error w/o coredump, and reporting the location of the error in the source file. */ -extern void fancy_abort (const char *, int, const char *) ATTRIBUTE_NORETURN; +extern void fancy_abort (const char *, int, const char *) + ATTRIBUTE_NORETURN ATTRIBUTE_COLD; #define abort() fancy_abort (__FILE__, __LINE__, __FUNCTION__) /* Use gcc_assert(EXPR) to test invariants. */ |