diff options
Diffstat (limited to 'gcc/genattr.c')
-rwxr-xr-x | gcc/genattr.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/genattr.c b/gcc/genattr.c index 7686492..d50cab5 100755 --- a/gcc/genattr.c +++ b/gcc/genattr.c @@ -242,7 +242,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. @@ -286,7 +286,7 @@ main (argc, argv) if (infile == 0) { perror (argv[1]); - exit (FATAL_EXIT_CODE); + exit (EXIT_FAILURE); } init_rtl (); @@ -440,7 +440,7 @@ from the machine description file `md'. */\n\n"); printf("#define ATTR_FLAG_very_unlikely\t0x20\n"); fflush (stdout); - exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE); + exit (ferror (stdout) != 0 ? EXIT_FAILURE : EXIT_SUCCESS); /* NOTREACHED */ return 0; } |