shithub: scc

Download patch

ref: e3681c9739152eb69f934a68b02885eaaaec0aaa
parent: b75c7d2fa8b3f9a8ba96e5a3035efa68b8d8cf85
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Sun Jun 28 15:36:44 EDT 2020

cc1: Remove debug code

Exit was set in error() as a way to help debugging problems,
but it was not intended to be uploaded to the repository.

--- a/src/cmd/cc/cc1/error.c
+++ b/src/cmd/cc/cc1/error.c
@@ -51,7 +51,6 @@
 	va_start(va, fmt);
 	warn_error(-1, fmt, va);
 	va_end(va);
-	exit(1);
 	discard();
 }