(do_error): Don't terminate.
authorRichard Kenner <kenner@gcc.gnu.org>
Tue, 19 Apr 1994 23:00:10 +0000 (19:00 -0400)
committerRichard Kenner <kenner@gcc.gnu.org>
Tue, 19 Apr 1994 23:00:10 +0000 (19:00 -0400)
From-SVN: r7080

gcc/cccp.c

index 93835b7e63bb169909435a2d1fb8a612ef405bb2..70a16870c95a70459fb9e262f1a6ce4241002b13 100644 (file)
@@ -6384,8 +6384,8 @@ do_undef (buf, limit, op, keyword)
 }
 \f
 /*
- * 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;
 }