mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-25 19:15:59 +08:00
runtime: Call exit rather than _exit.
This fixes --coverage and perhaps other things as well. From-SVN: r184642
This commit is contained in:
parent
fbd3340c7d
commit
5c46e29317
@ -348,7 +348,7 @@ void runtime_panic(Eface);
|
||||
#define runtime_strcmp(s1, s2) __builtin_strcmp((s1), (s2))
|
||||
#define runtime_mcmp(a, b, s) __builtin_memcmp((a), (b), (s))
|
||||
#define runtime_memmove(a, b, s) __builtin_memmove((a), (b), (s))
|
||||
#define runtime_exit(s) _exit(s)
|
||||
#define runtime_exit(s) exit(s)
|
||||
MCache* runtime_allocmcache(void);
|
||||
void free(void *v);
|
||||
struct __go_func_type;
|
||||
|
Loading…
Reference in New Issue
Block a user