Commit 9b034961 by Richard Kenner

(do_error): Don't terminate.

From-SVN: r7080
parent 6a9e290e
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment