aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-04-19 19:00:10 -0400
committerRichard Kenner <kenner@gcc.gnu.org>1994-04-19 19:00:10 -0400
commit9b03496193b1a19d76da5f129f37126edbf6b914 (patch)
treef2a5c0cae340f3211848304bfa48bcaaf260c76c /gcc
parent6a9e290eecf0f54caf6e13374428db318cb6f0cd (diff)
downloadgcc-9b03496193b1a19d76da5f129f37126edbf6b914.zip
gcc-9b03496193b1a19d76da5f129f37126edbf6b914.tar.gz
gcc-9b03496193b1a19d76da5f129f37126edbf6b914.tar.bz2
(do_error): Don't terminate.
From-SVN: r7080
Diffstat (limited to 'gcc')
-rw-r--r--gcc/cccp.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/cccp.c b/gcc/cccp.c
index 93835b7..70a1687 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;
}