From: Richard Kenner Date: Tue, 19 Apr 1994 23:00:10 +0000 (-0400) Subject: (do_error): Don't terminate. X-Git-Tag: misc/cutover-egcs-0~6863 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9b03496193b1a19d76da5f129f37126edbf6b914;p=thirdparty%2Fgcc.git (do_error): Don't terminate. From-SVN: r7080 --- diff --git a/gcc/cccp.c b/gcc/cccp.c index 93835b7e63bb..70a16870c95a 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -6384,8 +6384,8 @@ do_undef (buf, limit, op, keyword) } /* - * Report a fatal error detected by the program we are processing. - * Use the text of the line in the error message, then terminate. + * Report an error detected by the program we are processing. + * Use the text of the line in the error message. * (We use error because it prints the filename & line#.) */ @@ -6401,8 +6401,6 @@ do_error (buf, limit, op, keyword) copy[length] = 0; SKIP_WHITE_SPACE (copy); error ("#error %s", copy); - exit (FAILURE_EXIT_CODE); - /* NOTREACHED */ return 0; }