diff options
Diffstat (limited to 'gcc/genpeep.c')
-rwxr-xr-x | gcc/genpeep.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/genpeep.c b/gcc/genpeep.c index dfba042..91acc75 100755 --- a/gcc/genpeep.c +++ b/gcc/genpeep.c @@ -428,7 +428,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. @@ -460,7 +460,7 @@ main (argc, argv) if (infile == 0) { perror (argv[1]); - exit (FATAL_EXIT_CODE); + exit (EXIT_FAILURE); } init_rtl (); @@ -520,7 +520,7 @@ from the machine description file `md'. */\n\n"); printf ("rtx peep_operand[%d];\n", max_opno + 1); fflush (stdout); - exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE); + exit (ferror (stdout) != 0 ? EXIT_FAILURE : EXIT_SUCCESS); /* NOTREACHED */ return 0; } |