From ee6378488b6ef2654dcbffaaf1319c415c552f27 Mon Sep 17 00:00:00 2001 From: YamaArashi Date: Sun, 14 Feb 2016 16:49:50 -0800 Subject: fix md --- gcc/gencodes.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gcc/gencodes.c') diff --git a/gcc/gencodes.c b/gcc/gencodes.c index 8c043d2..4976e1a 100755 --- a/gcc/gencodes.c +++ b/gcc/gencodes.c @@ -100,7 +100,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. @@ -130,7 +130,7 @@ main (argc, argv) if (infile == 0) { perror (argv[1]); - exit (FATAL_EXIT_CODE); + exit (EXIT_FAILURE); } init_rtl (); @@ -172,7 +172,7 @@ from the machine description file `md'. */\n\n"); printf ("#endif /* MAX_INSN_CODE */\n"); fflush (stdout); - exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE); + exit (ferror (stdout) != 0 ? EXIT_FAILURE : EXIT_SUCCESS); /* NOTREACHED */ return 0; } -- cgit v1.2.3