diff options
author | YamaArashi <shadow962@live.com> | 2016-02-14 16:49:50 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-14 16:49:50 -0800 |
commit | ee6378488b6ef2654dcbffaaf1319c415c552f27 (patch) | |
tree | 41b529246b852d42c7f4ba57670525f0680a670f /gcc/genconfig.c | |
parent | 30da3665d6f93871e0c6d362d2f6cd3246c79b0a (diff) |
fix md
Diffstat (limited to 'gcc/genconfig.c')
-rwxr-xr-x | gcc/genconfig.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/genconfig.c b/gcc/genconfig.c index faf394b..8da0cb2 100755 --- a/gcc/genconfig.c +++ b/gcc/genconfig.c @@ -313,7 +313,7 @@ fatal VPROTO ((const char *format, ...)) vfprintf (stderr, format, ap); va_end (ap); fprintf (stderr, "\n"); - exit (FATAL_EXIT_CODE); + exit (EXIT_FAILURE); } /* More 'friendly' abort that prints the line and file. @@ -343,7 +343,7 @@ main (argc, argv) if (infile == 0) { perror (argv[1]); - exit (FATAL_EXIT_CODE); + exit (EXIT_FAILURE); } init_rtl (); @@ -402,7 +402,7 @@ from the machine description file `md'. */\n\n"); printf ("#define HAVE_lo_sum\n"); fflush (stdout); - exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE); + exit (ferror (stdout) != 0 ? EXIT_FAILURE : EXIT_SUCCESS); /* NOTREACHED */ return 0; } |